/* =========================================================
   Card Cove Collectors — stylesheet
   Palette pulled from the brand logo (sunset over the cove)
   ========================================================= */

:root {
  --sky: #4fd3ef;
  --sky-deep: #2fb9d8;
  --sun-yellow: #fbc02d;
  --sun-orange: #f0932e;
  --sun-red: #e0602c;
  --ocean: #157a9c;
  --ocean-deep: #0d5a76;
  --sand: #ecd3a4;
  --sand-dark: #d9b77e;
  --navy: #1b1e3d;
  --navy-soft: #262b52;
  --cream: #fff8ec;
  --white: #ffffff;

  /* gaming / anime accent palette — used for hero + CTAs, kept separate from the beach logo palette */
  --void: #0a0c1b;
  --void-deep: #050612;
  --void-soft: #14172e;
  --neon-blue: #38bdf8;
  --neon-purple: #a855f7;
  --neon-pink: #ec4899;
  --neon-gold: #fbbf24;

  --font-display: 'Baloo 2', 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(27, 30, 61, 0.12);
  --shadow-md: 0 8px 24px rgba(27, 30, 61, 0.16);
  --shadow-lg: 0 16px 40px rgba(27, 30, 61, 0.22);

  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.85);
  background: var(--void);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d8b4fe;
  background: rgba(168, 85, 247, 0.14);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 12px;
}

.section-head p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

section { position: relative; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.28);
}

.btn-primary:hover { box-shadow: 0 14px 34px rgba(236, 72, 153, 0.4); }

.btn-secondary {
  background: rgba(56, 189, 248, 0.1);
  color: var(--white);
  border: 2px solid rgba(56, 189, 248, 0.6);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover { background: rgba(56, 189, 248, 0.2); }

.btn-outline {
  background: transparent;
  color: var(--neon-blue);
  border: 2px solid var(--neon-blue);
}

.btn-outline:hover { background: var(--neon-blue); color: var(--void); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 12, 27, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.nav-links a { position: relative; padding: 4px 0; transition: color 0.2s ease; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-purple);
  transition: width 0.25s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-cta .btn { padding: 10px 22px; font-size: 0.9rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--white);
  transition: all 0.25s ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 82% 12%, rgba(168, 85, 247, 0.35), transparent 60%),
    radial-gradient(ellipse 55% 45% at 12% 85%, rgba(56, 189, 248, 0.28), transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(236, 72, 153, 0.18), transparent 65%),
    linear-gradient(180deg, var(--void-deep) 0%, var(--void) 55%, var(--navy) 100%);
}

/* faint grid + starfield for a gaming/anime energy feel */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 40%, transparent 85%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 12% 22%, rgba(255,255,255,0.9), transparent 60%),
    radial-gradient(2px 2px at 28% 68%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 44% 15%, rgba(255,255,255,0.8), transparent 60%),
    radial-gradient(2px 2px at 62% 78%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1.5px 1.5px at 78% 30%, rgba(255,255,255,0.85), transparent 60%),
    radial-gradient(2px 2px at 88% 62%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1.5px 1.5px at 6% 55%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 95% 90%, rgba(255,255,255,0.5), transparent 60%);
  animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.hero-text { max-width: 600px; }

.hero-badge {
  display: inline-block;
  background: rgba(168, 85, 247, 0.14);
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #e9d5ff;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  text-shadow: 0 0 40px rgba(168, 85, 247, 0.35);
  margin-bottom: 18px;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--neon-blue), var(--neon-purple) 50%, var(--neon-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 520px;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* card fan + logo badge instead of full-bleed background */
.hero-portal {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.card-fan {
  position: relative;
  width: min(100%, 360px);
  height: 340px;
}

.tcg-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 168px;
  height: 234px;
  border-radius: 14px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(11, 20, 40, 0.35);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tcg-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.55) 48%, transparent 72%);
  transform: translateX(-130%);
  animation: cardShine 5s ease-in-out infinite;
  pointer-events: none;
}

.tcg-card .card-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* the 3 cards continuously cycle through the left / front / right slots,
   creating a slow perpetual shuffle. each card runs the same keyframes,
   offset by a negative delay so they're always a third of the cycle apart. */
.card-1, .card-2, .card-3 {
  background: var(--navy-soft);
  animation: cardShuffle 12s ease-in-out infinite;
}

.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: -4s; }
.card-3 { animation-delay: -8s; }

.tcg-card::after { animation-delay: inherit; }
.card-1::after { animation-delay: 0.2s; }
.card-2::after { animation-delay: 1s; }
.card-3::after { animation-delay: 1.8s; }

@keyframes cardShine {
  0%, 15% { transform: translateX(-130%); }
  40%, 100% { transform: translateX(130%); }
}

/* slots: A = left/back, B = front/center, C = right/mid — cards hold in a
   slot, then snap-slide to the next one, like a lazy shuffle-cut */
@keyframes cardShuffle {
  0%   { transform: translate(-50%, -50%) rotate(-15deg) translateY(-6px);  z-index: 1; }
  27%  { transform: translate(-50%, -50%) rotate(-15deg) translateY(-6px);  z-index: 1; }
  33%  { transform: translate(-50%, -50%) rotate(0deg)   translateY(-28px); z-index: 3; }
  60%  { transform: translate(-50%, -50%) rotate(0deg)   translateY(-28px); z-index: 3; }
  66%  { transform: translate(-50%, -50%) rotate(15deg)  translateY(-6px);  z-index: 2; }
  93%  { transform: translate(-50%, -50%) rotate(15deg)  translateY(-6px);  z-index: 2; }
  100% { transform: translate(-50%, -50%) rotate(-15deg) translateY(-6px);  z-index: 1; }
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  z-index: 2;
}

.hero-scroll .dot-track {
  width: 2px;
  height: 34px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.hero-scroll .dot-track::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--white);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: -12px; }
  60% { top: 34px; }
  100% { top: 34px; }
}

/* ---------- Marquee ticker ---------- */

.ticker {
  background: var(--void-soft);
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker-track {
  display: inline-flex;
  gap: 26px;
  animation: tickerScroll 28s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--neon-gold);
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.ticker-track span::after { content: '\2726'; color: var(--sky); font-size: 0.7rem; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */

.about {
  padding: 110px 0 90px;
  background: var(--void);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -8%;
  width: 40vw;
  height: 40vw;
  max-width: 460px;
  max-height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.about-media {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(168, 85, 247, 0.3);
  background: linear-gradient(160deg, var(--void-soft), var(--navy));
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-media img,
.about-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-copy { position: relative; z-index: 1; }

.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin-bottom: 18px; color: var(--white); }

.about-copy p { color: rgba(255, 255, 255, 0.65); margin-bottom: 16px; font-size: 1.05rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.stat-card {
  background: var(--navy-soft);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-blue);
}

.stat-card .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- What We Collect ---------- */

.collect {
  padding: 100px 0;
  background: var(--void);
  position: relative;
  overflow: hidden;
}

.collect::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -8%;
  width: 42vw;
  height: 42vw;
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.12), transparent 70%);
  pointer-events: none;
}

.collect-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.collect-card {
  background: var(--navy-soft);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.collect-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
  border-color: var(--neon-gold);
}

.collect-card-media {
  width: 100%;
  height: 128px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  background: linear-gradient(180deg, #f7f2e6 0%, #efe6d2 100%);
  border-bottom: 1px solid rgba(27, 30, 61, 0.06);
}

.collect-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.collect-card-media .icon-fallback {
  font-size: 2.2rem;
}

.collect-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: linear-gradient(155deg, var(--sun-yellow), var(--sun-orange));
  color: var(--navy);
}

.collect-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--navy); }
.collect-card p { color: var(--navy); font-size: 0.93rem; opacity: 0.8; }

.collect-note {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 44px;
  padding: 20px 28px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: var(--radius);
  color: #e9d5ff;
  font-weight: 600;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Shop / Find Us ---------- */

.shop {
  padding: 100px 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.shop::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
}

.shop::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16), transparent 70%);
}

.shop .section-head h2, .shop .section-head p { color: var(--cream); }
.shop .section-head p { opacity: 0.75; }

.shop-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 900px;
  margin: 0 auto;
}

.shop-card {
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 36px 30px;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.shop-card:hover { transform: translateY(-6px); background: #303660; }

.shop-card .platform-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 10px;
}

.shop-card .platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-card.insta .platform-icon { padding: 0; }

.shop-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--white); }
.shop-card p { color: rgba(255, 248, 236, 0.7); font-size: 0.95rem; margin-bottom: 22px; min-height: 48px; }

/* ---------- FAQ ---------- */

.faq { padding: 100px 0; background: var(--void); }

.faq-list { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--navy-soft);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--white);
  text-align: left;
}

.faq-question .plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.14);
  color: var(--neon-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item.open .faq-question .plus { transform: rotate(45deg); background: var(--neon-purple); color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p { padding: 0 24px 22px; color: rgba(255, 255, 255, 0.6); }

/* ---------- Contact / CTA ---------- */

.contact {
  padding: 100px 0 120px;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(168, 85, 247, 0.16), transparent 65%),
    var(--void);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; color: var(--white); }
.contact p { max-width: 560px; margin: 0 auto 34px; color: rgba(255, 255, 255, 0.65); font-size: 1.05rem; position: relative; z-index: 1; }

.contact-actions { position: relative; z-index: 1; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: rgba(255, 248, 236, 0.7);
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

.footer-brand img { width: 48px; height: 48px; border-radius: 50%; }

.footer-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a { transition: color 0.2s ease; font-size: 0.95rem; }
.footer-col a:hover { color: var(--sun-yellow); }

.footer-social { display: flex; gap: 12px; margin-top: 6px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover { background: var(--neon-purple); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* ---------- Back to top ---------- */

.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
  font-size: 1.1rem;
}

.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--neon-purple); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-badge, .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-portal { order: -1; min-height: 300px; }
  .card-fan { width: 280px; height: 270px; }
  .tcg-card { width: 132px; height: 184px; }
  .hero-scroll { display: none; }
}

@media (max-width: 420px) {
  .card-fan { width: 240px; height: 240px; }
  .tcg-card { width: 112px; height: 156px; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-outline, .nav-cta .btn-primary { display: none; }
  .menu-toggle { display: flex; }

  .brand { font-size: 1rem; gap: 8px; }
  .brand img { width: 38px; height: 38px; }

  .nav-cta { gap: 10px; }
  .nav-cta .btn-login { padding: 8px 16px; font-size: 0.82rem; }

  /* Homepage: show Follow instead of Login in the mobile top bar */
  .page-home .nav-cta .btn-login { display: none; }
  .page-home .nav-cta .btn-outline {
    display: inline-flex;
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--void-soft);
    padding: 100px 32px 40px;
    gap: 26px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.4);
    font-size: 1.1rem;
  }

  .site-header.nav-open .nav-links a { color: var(--white) !important; text-shadow: none; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .shop-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* overlay behind mobile menu */
.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27, 30, 61, 0.4);
  z-index: 999;
}

.site-header.nav-open .nav-scrim { display: block; }

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Login button (nav) ---------- */

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  color: var(--neon-gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-login:hover {
  background: var(--neon-gold);
  color: var(--void);
  border-color: var(--neon-gold);
  transform: translateY(-2px);
}

/* ---------- Tools page ---------- */

.tools-hero {
  padding: 170px 0 80px;
  background:
    radial-gradient(ellipse 60% 55% at 20% 10%, rgba(56, 189, 248, 0.16), transparent 60%),
    radial-gradient(ellipse 55% 55% at 85% 20%, rgba(168, 85, 247, 0.16), transparent 60%),
    var(--void);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tools-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.tools-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin: 18px 0 16px; color: var(--white); }
.tools-hero h1 span { color: var(--neon-gold); }
.tools-hero p.lead { color: rgba(255, 255, 255, 0.65); font-size: 1.05rem; }

.tools-grid-section { padding: 20px 0 110px; background: var(--void); }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 780px;
  margin: 0 auto;
}

.tool-card {
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  position: relative;
}

.tool-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.tool-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.tool-card p { color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; margin-bottom: 18px; }

.tool-status {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.12);
  color: var(--neon-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tools-cta {
  text-align: center;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tools-cta p { color: rgba(255, 255, 255, 0.6); margin-bottom: 16px; }
