/* ==========================================================================
   BARK BATTLE — Landing Page
   Tokens
   Color:   --arena-ink #060912   deep space base
            --arena-navy #0A1030  primary background
            --arena-navy-2 #12194A elevated surfaces
            --blue-team #2F8CFF / --blue-team-soft #6FB2FF
            --red-team #FF3355 / --red-team-soft #FF7C93
            --gold #FFC53D / --gold-soft #FFE08A
            --paper #F4F7FF text on dark
   Type:    Display  "Baloo 2"   (chunky, rounded, playful+competitive)
            Body     "Poppins"
   Signature: pulsing dual-tone VS core with orbiting paw sparks, reused
              as the hero centerpiece and the step-divider motif.
   ========================================================================== */

:root{
  --arena-ink: #000000;
  --arena-navy: #030308;
  --arena-navy-2: #0a0a14;
  --arena-navy-3: #111119;

  --blue-team: #2f8cff;
  --blue-team-soft: #7fc2ff;
  --red-team: #ff3355;
  --red-team-soft: #ff8299;

  --gold: #ffc53d;
  --gold-soft: #ffe08a;
  --gold-deep: #f5972b;

  --paper: #f4f7ff;
  --paper-dim: #b9c2e6;
  --paper-dimmer: #8590c0;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --ease-out: cubic-bezier(.16,.8,.34,1);
  --shadow-glow-blue: 0 0 40px rgba(47,140,255,.35);
  --shadow-glow-red: 0 0 40px rgba(255,51,85,.35);
  --shadow-glow-gold: 0 0 40px rgba(255,197,61,.35);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
/* FIX: nav is position:fixed and sits on top of the page, so without this,
   clicking a nav link (e.g. "Airdrop") scrolls the right section into view
   but its title lands hidden underneath the fixed nav bar — it *looks* like
   the click did nothing. scroll-margin-top leaves room for the nav so the
   section's top settles just below it instead. */
main > section[id]{ scroll-margin-top: 90px; }
#top{ scroll-margin-top: 90px; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--arena-navy);
  color: var(--paper);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
picture{ display: contents; }
a{ color: inherit; text-decoration: none; }
:focus-visible{ outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.eyebrow{
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 .8rem;
  display: flex;
  align-items: center;
  gap: .5em;
  justify-content: center;
}
.eyebrow .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 2px var(--gold);
  display: inline-block;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot{ 0%,100%{ opacity: 1; transform: scale(1);} 50%{ opacity:.5; transform: scale(1.4);} }

.section-title{
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  text-align: center;
  margin: 0 0 3.2rem;
  color: var(--paper);
  letter-spacing: .01em;
}

/* Ambient background glow layer, fixed behind everything */
.arena-glow-layer{
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: var(--arena-ink);
}
.arena-glow-layer::before{
  /* deep-space glow field — kept small & contained so the base stays true black */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(560px 460px at 8% 4%, rgba(47,140,255,.20), transparent 58%),
    radial-gradient(560px 460px at 92% 8%, rgba(255,51,85,.17), transparent 58%),
    radial-gradient(760px 620px at 50% 108%, rgba(255,197,61,.08), transparent 58%);
  animation: glow-breathe 12s ease-in-out infinite;
}
.arena-glow-layer::after{
  /* competitive floor grid + vignette, gives the whole page a dark "arena" feel */
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 45%, rgba(0,0,0,.85) 100%);
  background-size: 64px 64px, 64px 64px, 100% 100%;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 30%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 30%, black 0%, transparent 75%);
  opacity: .5;
}
@keyframes glow-breathe{
  0%,100%{ opacity: 1; }
  50%{ opacity: .78; }
}
@media (prefers-reduced-motion: reduce){
  .arena-glow-layer::before{ animation: none; }
}

/* ---------- NAV ---------- */
.site-nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: background .3s var(--ease-out), box-shadow .3s var(--ease-out), padding .3s var(--ease-out);
}
.site-nav.scrolled{
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  padding: 8px 0;
}
.nav-inner{
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand{ display: flex; align-items: center; gap: 10px; }
.brand-mascot{ border-radius: 50%; box-shadow: 0 0 0 2px rgba(255,197,61,.5), 0 0 18px rgba(255,197,61,.35); }
.brand-word{
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.2rem; letter-spacing: .02em; color: var(--paper);
}
.brand-word em{ font-style: normal; color: var(--gold); }
.nav-links{ display: flex; gap: 2.2rem; }
.nav-links a{
  font-weight: 600; font-size: .92rem; color: var(--paper-dim);
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav-links a:hover{ color: var(--paper); }
.nav-links a::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: linear-gradient(90deg, var(--blue-team), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-out);
}
.nav-links a:hover::after{ transform: scaleX(1); }

/* ---------- BUTTONS ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: "Baloo 2", sans-serif; font-weight: 700; letter-spacing: .02em;
  border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), filter .18s var(--ease-out);
  white-space: nowrap;
}
.btn-icon{ width: 20px; height: 20px; }
.btn-small{ padding: .55em 1.3em; font-size: .88rem; }
.btn-large{ padding: 1em 2em; font-size: 1.05rem; }
.btn-xl{ padding: 1.15em 2.6em; font-size: 1.3rem; }

.btn-gold{
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: #241300;
  box-shadow: 0 8px 24px rgba(255,197,61,.4), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn-gold:hover{ transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 34px rgba(255,197,61,.55), inset 0 1px 0 rgba(255,255,255,.7); }
.btn-gold:active{ transform: translateY(0) scale(.99); }

.btn-ghost{
  background: rgba(255,255,255,.06);
  color: var(--paper);
  border: 1.5px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover{ background: rgba(255,255,255,.12); transform: translateY(-3px); border-color: rgba(255,255,255,.5); }
.play-ring{
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.14);
}

.pulse-btn{ position: relative; }
.pulse-btn::before{
  content: ""; position: absolute; inset: -2px; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255,197,61,.55);
  animation: btn-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes btn-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(255,197,61,.5); }
  70%{ box-shadow: 0 0 0 18px rgba(255,197,61,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,197,61,0); }
}

/* ---------- HERO ---------- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 140px 24px 80px;
  isolation: isolate;
}
.hero-bg{
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  z-index: -3;
  transform: scale(1.06);
  filter: saturate(1.1);
}
.hero-scrim{
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(6,9,20,.55) 0%, rgba(6,9,20,.35) 30%, rgba(7,10,26,.55) 65%, var(--arena-navy) 96%),
    linear-gradient(90deg, rgba(47,80,255,.18), transparent 35%, transparent 65%, rgba(255,40,70,.18));
}
.hero-sparks{
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.hero-sparks::before, .hero-sparks::after{
  content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 14px 4px var(--gold);
  animation: float-spark 7s ease-in-out infinite;
}
.hero-sparks::before{ top: 20%; left: 15%; }
.hero-sparks::after{ top: 65%; left: 82%; animation-delay: 2.4s; background: var(--blue-team-soft); box-shadow: 0 0 14px 4px var(--blue-team-soft); }
@keyframes float-spark{
  0%,100%{ transform: translateY(0) scale(1); opacity: .8; }
  50%{ transform: translateY(-40px) scale(1.4); opacity: .3; }
}

.hero-content{
  position: relative; z-index: 2; max-width: 900px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.eyebrow-hero{
  background: rgba(10,14,34,.55); border: 1px solid rgba(255,255,255,.15);
  padding: .5em 1.2em; border-radius: 999px; backdrop-filter: blur(6px);
}
.hero-title{
  margin: .5rem 0 0;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  line-height: .92;
  display: flex; flex-direction: column; align-items: center;
}
.hero-title .line1, .hero-title .line2{
  font-size: clamp(3.2rem, 11vw, 8rem);
  letter-spacing: .01em;
}
.hero-title .line1{
  background: linear-gradient(180deg, var(--blue-team-soft), var(--blue-team));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 60px rgba(47,140,255,.5);
}
.hero-title .line2{
  background: linear-gradient(180deg, var(--red-team-soft), var(--red-team));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 60px rgba(255,51,85,.5);
  margin-top: -.08em;
}
.hero-tagline{
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  color: var(--paper);
  margin: 1.4rem 0 2.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-ctas{ display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }

.hero-vs-card{
  width: min(340px, 68vw);
  animation: hero-vs-float 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.55));
}
.hero-vs-card img{ border-radius: 20px; }
@keyframes hero-vs-float{
  0%,100%{ transform: translateY(0) rotate(-1deg); }
  50%{ transform: translateY(-14px) rotate(1deg); }
}

/* Floating paw prints */
.hero-paws{ position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.paw{
  position: absolute; font-size: 1.6rem; opacity: .16; filter: drop-shadow(0 0 10px rgba(255,197,61,.25));
  animation: paw-float 9s ease-in-out infinite;
}
.paw.p1{ top: 18%; left: 8%;  font-size: 1.3rem; animation-delay: 0s; }
.paw.p2{ top: 32%; left: 90%; font-size: 2rem;   animation-delay: 1.4s; }
.paw.p3{ top: 70%; left: 6%;  font-size: 1.8rem; animation-delay: 2.6s; }
.paw.p4{ top: 78%; left: 88%; font-size: 1.4rem; animation-delay: 3.8s; }
.paw.p5{ top: 50%; left: 50%; font-size: 1.2rem; animation-delay: 5s; }
@keyframes paw-float{
  0%,100%{ transform: translateY(0) rotate(-8deg); opacity: .12; }
  50%{ transform: translateY(-30px) rotate(8deg); opacity: .28; }
}
@media (max-width: 640px){ .paw{ display: none; } }

/* Social proof avatar stack */
.social-proof{
  margin-top: 1.6rem; display: flex; align-items: center; gap: .8rem; justify-content: center;
  font-size: .88rem; color: var(--paper-dim);
}
.avatar-stack{ display: flex; }
.avatar-stack img{
  width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--arena-navy); box-shadow: 0 0 0 1px rgba(255,197,61,.5);
  margin-left: -10px; background: var(--arena-navy-2);
}
.avatar-stack img:first-child{ margin-left: 0; }
.social-proof strong{ color: var(--gold-soft); }

.scroll-cue{
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--paper-dimmer);
}
.scroll-cue span{
  width: 22px; height: 36px; border-radius: 14px; border: 2px solid rgba(255,255,255,.35);
  position: relative;
}
.scroll-cue span::after{
  content: ""; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; border-radius: 2px;
  background: var(--gold); transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot{ 0%{ opacity: 1; top: 6px; } 70%{ opacity: 0; top: 20px; } 100%{ opacity: 0; top: 6px; } }

/* ---------- STATS STRIP ---------- */
.stats-strip{
  position: relative; z-index: 1;
  background: linear-gradient(180deg, rgba(14,14,17,0), rgba(14,14,17,.55) 30%, rgba(14,14,17,.55) 70%, rgba(14,14,17,0));
  padding: 2.6rem 24px;
}
.stats-inner{
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 2.4rem; flex-wrap: wrap;
}
.stat-item{ display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 130px; }
.stat-icon{ width: 34px; height: 34px; margin-bottom: .5rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,.4)); }
.stat-num{
  font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-soft); text-shadow: 0 0 24px rgba(255,197,61,.35); line-height: 1;
}
.stat-label{ font-size: .82rem; color: var(--paper-dim); margin-top: .35rem; letter-spacing: .02em; }
.stat-divider{ width: 1px; height: 44px; background: rgba(255,255,255,.14); }
@media (max-width: 640px){ .stat-divider{ display: none; } .stats-inner{ gap: 1.6rem 2.2rem; } }

/* ---------- MARQUEE ---------- */
.marquee-strip{
  background: linear-gradient(90deg, var(--blue-team) 0%, var(--arena-navy-2) 50%, var(--red-team) 100%);
  padding: 14px 0; overflow: hidden; position: relative; z-index: 1;
  box-shadow: 0 0 30px rgba(0,0,0,.4) inset;
}
.marquee-track{
  display: flex; gap: 2.4rem; width: max-content;
  animation: marquee-scroll 22s linear infinite;
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: .95rem;
  letter-spacing: .12em; color: rgba(255,255,255,.92);
}
.marquee-track span{ display: inline-flex; align-items: center; }
@keyframes marquee-scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ---------- SECTIONS ---------- */
.section{ position: relative; padding: 7rem 24px; z-index: 1; }
.section-alt{ background: linear-gradient(180deg, transparent, rgba(14,14,17,.5) 12%, rgba(14,14,17,.5) 88%, transparent); }
.section-inner{ max-width: 1180px; margin: 0 auto; }

/* ---------- FEATURES ---------- */
.feature-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.feature-card{
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  backdrop-filter: blur(10px);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
}
.feature-card:hover{
  transform: translateY(-8px);
  border-color: rgba(255,197,61,.4);
  box-shadow: 0 20px 40px rgba(0,0,0,.35), var(--shadow-glow-gold);
}
.feature-icon{
  width: 54px; height: 54px; margin-bottom: 1.1rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.4));
}
.feature-card h3{
  font-family: "Baloo 2", sans-serif; font-size: 1.25rem; margin: 0 0 .5rem; color: var(--paper);
}
.feature-card p{ margin: 0; color: var(--paper-dim); font-size: .95rem; }

/* ---------- HOW TO PLAY ---------- */
.steps{ display: flex; align-items: center; justify-content: center; gap: 1.6rem; flex-wrap: wrap; }
.step{
  flex: 1 1 260px; max-width: 300px; text-align: center;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.4rem 1.8rem;
  position: relative;
}
.step-art{
  border-radius: var(--radius-sm); overflow: hidden; margin-bottom: -34px;
  box-shadow: 0 14px 34px rgba(0,0,0,.5);
}
.step-art img{ aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.step-icon{
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 1rem;
  background: radial-gradient(circle, rgba(255,197,61,.25), transparent 70%);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; border: 2px solid rgba(255,197,61,.4);
  padding: 8px;
}
.step-icon img{ width: 100%; height: 100%; object-fit: contain; }
.step h3{ font-family: "Baloo 2", sans-serif; font-size: 1.3rem; margin: 0 0 .5rem; }
.step p{ color: var(--paper-dim); font-size: .93rem; margin: 0; }
.step-arrow{
  font-size: 1.8rem; color: var(--gold); font-weight: 700;
  animation: arrow-bounce 1.8s ease-in-out infinite;
}
@keyframes arrow-bounce{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(8px); } }
@media (max-width: 860px){ .step-arrow{ transform: rotate(0); } }

/* ---------- GAMEPLAY ---------- */
.gameplay-frame{
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  margin-bottom: 2.4rem;
}
.gameplay-frame img{ width: 100%; display: block; }
.gameplay-frame video{ width: 100%; display: block; object-fit: cover; }
.gameplay-frame-glow{
  position: absolute; inset: -30%; z-index: 0;
  background: conic-gradient(from 0deg, var(--blue-team), transparent 30%, var(--red-team), transparent 70%, var(--blue-team));
  filter: blur(50px); opacity: .35;
  animation: spin-glow 10s linear infinite;
}
@keyframes spin-glow{ to{ transform: rotate(360deg); } }
.gameplay-hud-corner{
  position: absolute; width: 34px; height: 34px; border: 3px solid var(--gold); z-index: 2; opacity: .85;
}
.gameplay-hud-corner.tl{ top: 14px; left: 14px; border-right: none; border-bottom: none; }
.gameplay-hud-corner.tr{ top: 14px; right: 14px; border-left: none; border-bottom: none; }
.gameplay-hud-corner.bl{ bottom: 14px; left: 14px; border-right: none; border-top: none; }
.gameplay-hud-corner.br{ bottom: 14px; right: 14px; border-left: none; border-top: none; }

.gameplay-strip{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.strip-card{
  border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(255,255,255,.12);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.strip-card:hover{ transform: translateY(-6px) scale(1.02); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.strip-card img{ width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ---------- ENTER THE ARENA ---------- */
.enter-arena{
  position: relative; padding: 6.5rem 24px; text-align: center; overflow: hidden;
  isolation: isolate; min-height: 420px; display: flex; align-items: center; justify-content: center;
}
.enter-arena-bg{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
  z-index: -2; filter: saturate(1.15) brightness(.85);
}
.enter-arena-scrim{
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--arena-navy) 0%, rgba(6,6,14,.6) 18%, rgba(6,6,14,.7) 82%, var(--arena-navy) 100%);
}
.enter-arena-inner{ max-width: 620px; margin: 0 auto; }
.enter-arena-inner h2{
  font-family: "Baloo 2", sans-serif; font-size: clamp(2rem, 5vw, 3.2rem);
  margin: .5rem 0 1rem; line-height: 1.1;
  background: linear-gradient(90deg, var(--blue-team-soft), var(--gold-soft), var(--red-team-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.enter-arena-inner p{ color: var(--paper-dim); margin: 0 0 1.8rem; font-size: 1.02rem; }

/* ---------- WHY PLAY ---------- */
.why-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 3rem;
}
.why-card{
  text-align: center; padding: 1.8rem 1.2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-md);
  transition: transform .3s var(--ease-out), border-color .3s;
}
.why-card:hover{ transform: translateY(-6px); border-color: rgba(47,140,255,.5); }
.why-icon{ width: 46px; height: 46px; margin: 0 auto .9rem; }
.why-card h3{ font-family: "Baloo 2", sans-serif; margin: 0 0 .4rem; font-size: 1.1rem; }
.why-card p{ margin: 0; font-size: .88rem; color: var(--paper-dim); }

/* ---------- PROGRESSION / REWARDS ---------- */
.progression-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.progression-card{
  text-align: center; padding: 1.8rem 1.2rem;
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
}
.progression-card:hover{
  transform: translateY(-8px);
  border-color: rgba(255,197,61,.4);
  box-shadow: 0 20px 40px rgba(0,0,0,.35), var(--shadow-glow-gold);
}
.progression-icon{
  width: 54px; height: 54px; margin: 0 auto 1.1rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.4));
}
.progression-card h3{ font-family: "Baloo 2", sans-serif; margin: 0 0 .5rem; font-size: 1.15rem; color: var(--paper); }
.progression-card p{ margin: 0; font-size: .9rem; color: var(--paper-dim); }

/* ---------- AIRDROP ---------- */
.airdrop-sub{
  max-width: 640px; margin: -1.6rem auto 2.6rem; text-align: center;
  color: var(--paper-dim); font-size: 1rem;
}
.airdrop-launch-note{
  margin: -1.8rem auto 2rem; color: var(--gold-soft); font-size: .95rem;
}
.airdrop-launch-note strong{ color: var(--gold); }
.airdrop-panel{
  max-width: 640px; margin: 0 auto 2.6rem;
  background: linear-gradient(160deg, rgba(255,197,61,.1), rgba(255,255,255,.03));
  border: 1px solid rgba(255,197,61,.25);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 60px rgba(255,197,61,.08) inset;
}
.airdrop-countdown-label{
  margin: 0 0 1rem; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 700;
}
.airdrop-countdown{
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin: 0 0 1.8rem; flex-wrap: wrap;
}
.countdown-unit{
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: .7rem 1rem; min-width: 68px;
}
.countdown-num{
  font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.7rem;
  color: var(--paper); line-height: 1; font-variant-numeric: tabular-nums;
}
.countdown-label{ font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--paper-dimmer); margin-top: .3rem; }
.countdown-sep{ font-family: "Baloo 2", sans-serif; font-size: 1.6rem; color: var(--paper-dimmer); }
.airdrop-fineprint{
  margin: 1.2rem 0 0; font-size: .78rem; color: var(--paper-dimmer); max-width: 420px; margin-left: auto; margin-right: auto;
}
.wallet-status{
  min-height: 1.2em; margin: .9rem 0 0; font-size: .85rem; font-weight: 600;
  color: var(--paper-dim);
}
.wallet-status.is-connected{ color: #6ee7a8; }
.wallet-status.is-connected::before{ content: "\25CF "; font-size: .7em; }
#connectWalletBtn.wallet-connected{
  background: rgba(255,255,255,.08);
  color: var(--paper);
  box-shadow: inset 0 0 0 1.5px rgba(110,231,168,.5);
}
#connectWalletBtn.wallet-connected:hover{
  background: rgba(255,80,80,.12);
  box-shadow: inset 0 0 0 1.5px rgba(255,110,110,.5);
}

/* ---------- AIRDROP FOLLOW GATE ---------- */
.follow-gate{
  margin: 1.8rem auto 0; max-width: 440px; text-align: left;
  background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 1.4rem 1.4rem 1.6rem;
}
.follow-gate-label{
  margin: 0 0 .9rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 700; text-align: center;
}
.follow-gate-locked-msg{ margin: 0; text-align: center; font-size: .88rem; color: var(--paper-dimmer); }
.follow-gate:not(.is-active) .follow-steps,
.follow-gate:not(.is-active) #checkEligibilityBtn{ display: none; }
.follow-gate.is-active .follow-gate-locked-msg{ display: none; }

.follow-steps{ display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.3rem; }
.follow-step{
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm); padding: .7rem .9rem;
  transition: border-color .25s, background .25s;
}
.follow-step-info{ display: flex; align-items: center; gap: .6rem; min-width: 0; }
.follow-step-icon{
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--paper);
}
.follow-step-text{ font-size: .86rem; color: var(--paper-dim); }
.follow-step-text strong{ color: var(--paper); }
.btn-follow{
  background: rgba(255,255,255,.08); color: var(--paper);
  border: 1.5px solid rgba(255,255,255,.25); flex-shrink: 0;
}
.btn-follow:hover{ background: rgba(255,255,255,.16); transform: translateY(-2px); }
.follow-step.is-done{ border-color: rgba(110,231,168,.4); background: rgba(110,231,168,.06); }
.follow-step.is-done .follow-step-icon{ background: rgba(110,231,168,.18); color: #6ee7a8; }
.follow-step.is-done .btn-follow{
  background: rgba(110,231,168,.14); border-color: rgba(110,231,168,.5); color: #6ee7a8;
}
#checkEligibilityBtn{ width: 100%; }
#checkEligibilityBtn:disabled{ opacity: .45; cursor: not-allowed; filter: grayscale(.3); }
#checkEligibilityBtn:disabled:hover{
  transform: none; box-shadow: 0 8px 24px rgba(255,197,61,.4), inset 0 1px 0 rgba(255,255,255,.6);
}
.eligibility-status{
  min-height: 1.2em; margin: .9rem 0 0; font-size: .86rem; font-weight: 600; text-align: center;
  color: var(--paper-dim);
}
.eligibility-status.is-checking{ color: var(--gold-soft); }
.eligibility-status.is-eligible{ color: #6ee7a8; }
.eligibility-status.is-not-eligible{ color: var(--red-team-soft); }
.follow-gate-note{ margin: .9rem 0 0; font-size: .74rem; color: var(--paper-dimmer); text-align: center; }

.airdrop-tiers{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  max-width: 1000px; margin: 0 auto;
}
.airdrop-tier{
  position: relative; text-align: center; padding: 2rem 1.3rem;
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
}
.airdrop-tier:hover{
  transform: translateY(-8px);
  border-color: rgba(255,197,61,.4);
  box-shadow: 0 20px 40px rgba(0,0,0,.35), var(--shadow-glow-gold);
}
.airdrop-tier-featured{
  border-color: rgba(255,197,61,.5);
  background: linear-gradient(160deg, rgba(255,197,61,.14), rgba(255,255,255,.03));
}
.airdrop-tier-badge{
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: #241300; font-family: "Baloo 2", sans-serif; font-weight: 700;
  font-size: .72rem; letter-spacing: .04em; padding: .3em 1em; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(255,197,61,.4);
}
.airdrop-tier .progression-icon{ margin-top: .4rem; }
.airdrop-tier h3{ font-family: "Baloo 2", sans-serif; margin: 0 0 .3rem; font-size: 1.1rem; color: var(--paper); }
.airdrop-tier-amount{
  font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.3rem;
  color: var(--gold-soft); margin: 0 0 .6rem; text-shadow: 0 0 20px rgba(255,197,61,.3);
}
.airdrop-tier p:last-child{ margin: 0; font-size: .88rem; color: var(--paper-dim); }

.airdrop-disclaimer{
  max-width: 720px; margin: 2.2rem auto 0; text-align: center;
  font-size: .76rem; line-height: 1.5; color: var(--paper-dimmer);
}

/* ---------- ROADMAP ---------- */
.roadmap-timeline{
  max-width: 760px; margin: 0 auto; position: relative;
  display: flex; flex-direction: column; gap: 2.2rem;
}
.roadmap-timeline::before{
  content: ""; position: absolute; left: 23px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(255,197,61,.15) 100%);
}
.roadmap-phase{ display: flex; gap: 1.5rem; position: relative; }
.roadmap-phase-marker{ flex: 0 0 auto; position: relative; z-index: 1; }
.roadmap-phase-num{
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--arena-navy-2); border: 2px solid var(--gold);
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.1rem;
  color: var(--gold-soft);
}
.roadmap-phase-body{
  flex: 1; padding: 1.4rem 1.6rem; border-radius: var(--radius-md);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
}
.roadmap-phase-body h3{
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.15rem;
  color: var(--paper); margin: .5rem 0 .5rem;
}
.roadmap-phase-body p{ margin: 0; font-size: .92rem; line-height: 1.55; color: var(--paper-dim); }
.roadmap-phase-tag{
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: .3em .8em; border-radius: 999px;
  background: rgba(255,197,61,.12); color: var(--gold-soft); border: 1px solid rgba(255,197,61,.3);
}
.roadmap-phase-tag-live{
  background: rgba(47,140,255,.14); color: var(--blue-team-soft); border-color: rgba(47,140,255,.35);
}
.roadmap-phase-featured .roadmap-phase-num{
  background: var(--gold); border-color: var(--gold); color: var(--arena-ink);
  box-shadow: var(--shadow-glow-gold);
}
.roadmap-phase-featured .roadmap-phase-body{
  background: rgba(255,197,61,.06); border-color: rgba(255,197,61,.35);
  box-shadow: var(--shadow-glow-gold);
}
.roadmap-disclaimer{
  max-width: 720px; margin: 2.2rem auto 0; text-align: center;
  font-size: .76rem; line-height: 1.5; color: var(--paper-dimmer);
}
@media (max-width: 640px){
  .roadmap-timeline::before{ left: 19px; }
  .roadmap-phase{ gap: 1rem; }
  .roadmap-phase-num{ width: 40px; height: 40px; font-size: 1rem; }
  .roadmap-phase-body{ padding: 1.1rem 1.2rem; }
}

@media (max-width: 640px){
  .airdrop-tiers{ grid-template-columns: 1fr; }
  .countdown-unit{ min-width: 58px; padding: .55em .7em; }
  .countdown-num{ font-size: 1.35rem; }
}

.leaderboard-banner{
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.leaderboard-banner img{ width: 100%; display: block; }

/* ---------- COMMUNITY ---------- */
#community .section-inner{ text-align: center; }
.community-sub{ color: var(--paper-dim); margin-top: -2rem; margin-bottom: 2.4rem; }
.community-links{ display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.community-link{
  display: flex; align-items: center; gap: .6em;
  padding: .9em 1.6em; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  font-weight: 600; transition: transform .2s var(--ease-out), background .2s, border-color .2s;
}
.community-link:hover{ transform: translateY(-4px); background: rgba(255,255,255,.12); border-color: var(--gold); color: var(--gold-soft); }

/* ---------- FINAL CTA ---------- */
.final-cta{
  position: relative; padding: 7rem 24px; text-align: center; overflow: hidden;
  isolation: isolate;
}
.final-cta-bg{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top;
  z-index: -2; filter: saturate(1.15) brightness(.9);
}
.final-cta-scrim{
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--arena-navy) 0%, rgba(6,6,14,.8) 20%, rgba(6,6,14,.88) 80%, var(--arena-navy) 100%);
}
.final-cta-badge{
  width: 70px; margin: 0 auto 1.2rem;
  animation: badge-spin 6s linear infinite;
  filter: drop-shadow(0 0 22px rgba(255,197,61,.6));
}
@keyframes badge-spin{ 0%{ transform: rotate(0);} 100%{ transform: rotate(360deg);} }
.final-cta-inner h2{
  font-family: "Baloo 2", sans-serif; font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0 0 2rem; line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}

/* ---------- FOOTER ---------- */
.site-footer{
  padding: 2.6rem 24px 2rem; text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  background: var(--arena-ink);
  position: relative; z-index: 1;
}
.footer-inner{
  max-width: 1180px; margin: 0 auto 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap;
}
.footer-brand{ display: flex; align-items: center; gap: 8px; font-family: "Baloo 2", sans-serif; font-weight: 700; }
.footer-brand img{ border-radius: 50%; }
.footer-brand em{ font-style: normal; color: var(--gold); }
.footer-social, .footer-legal{ display: flex; gap: 1.4rem; }
.footer-social a, .footer-legal a{ color: var(--paper-dimmer); font-size: .88rem; font-weight: 500; transition: color .2s; }
.footer-social a:hover, .footer-legal a:hover{ color: var(--gold-soft); }
.footer-copy{ color: var(--paper-dimmer); font-size: .8rem; margin: 0; }

/* ---------- SCROLL REVEAL ---------- */
.reveal{
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  .feature-grid, .why-grid, .progression-grid{ grid-template-columns: repeat(2, 1fr); }
  .gameplay-strip{ grid-template-columns: 1fr; }
  .nav-links{ display: none; }
}
@media (max-width: 640px){
  .feature-grid, .why-grid, .progression-grid{ grid-template-columns: 1fr; }
  .steps{ flex-direction: column; }
  .step-arrow{ transform: rotate(0deg); }
  .section{ padding: 4.5rem 20px; }
  .hero{ padding-top: 120px; }
  .footer-inner{ flex-direction: column; text-align: center; }
  .br-mobile{ display: none; }
}
