/* =========================================
   RESET & ROOT
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f0a1e;
  --bg2: #130d28;
  --purple: #8b5cf6;
  --purple-dark: #6d28d9;
  --purple-light: #c4b5fd;
  --gold: #f59e0b;
  --green: #34d399;
  --red: #ef4444;
  --white: #ffffff;
  --font: 'Nunito', sans-serif;
  --font-h: 'Baloo 2', cursive;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--white); overflow-x: hidden; }
body.loading { overflow: hidden; }

/* =========================================
   SPLASH SCREEN
   ========================================= */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: #07041a;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity .7s ease, transform .7s ease;
}
.splash.hide { opacity: 0; transform: scale(1.04); pointer-events: none; }

.splash-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

.splash-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}

.splash-hat {
  font-size: 72px;
  animation: splashHatDrop .8s cubic-bezier(.34,1.56,.64,1) both;
  filter: drop-shadow(0 0 40px rgba(139,92,246,.8));
}
@keyframes splashHatDrop {
  from { transform: translateY(-80px) rotate(-15deg) scale(.5); opacity: 0; }
  to   { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
}

.splash-brand {
  display: flex; gap: 4px;
  font-family: var(--font-h); font-size: clamp(56px, 12vw, 100px); font-weight: 900;
  letter-spacing: -2px; line-height: 1;
}

.splash-letter {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 50%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: letterPop .5s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: calc(var(--i) * .08s + .4s);
  opacity: 0;
}
@keyframes letterPop {
  from { transform: translateY(30px) scale(.6); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.splash-tagline {
  font-size: 15px; font-weight: 700; letter-spacing: 3px;
  color: rgba(255,255,255,.45); text-transform: uppercase;
  animation: fadeUp .5s ease both; animation-delay: .9s; opacity: 0;
}

.splash-bar-wrap {
  width: 240px; height: 4px; background: rgba(255,255,255,.1);
  border-radius: 2px; overflow: hidden;
  animation: fadeUp .4s ease both; animation-delay: 1s; opacity: 0;
}
.splash-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #7c3aed, #a78bfa, #f59e0b);
  border-radius: 2px;
  transition: width .1s linear;
}

.splash-status {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.35);
  letter-spacing: 1px;
  animation: fadeUp .4s ease both; animation-delay: 1.1s; opacity: 0;
}

@keyframes fadeUp {
  from { transform: translateY(12px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 44px;
  background: rgba(15,10,30,.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(167,139,250,.12);
  transform: translateY(-100%);
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.nav.visible { transform: translateY(0); }

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: 22px; font-weight: 900; letter-spacing: 2px;
}
.nav-hat { font-size: 24px; animation: hatSpin 6s ease-in-out infinite; display: inline-block; }
@keyframes hatSpin {
  0%,100%{transform:rotate(0deg)}
  20%{transform:rotate(-12deg)}
  40%{transform:rotate(12deg)}
  60%{transform:rotate(-6deg)}
  80%{transform:rotate(6deg)}
}

.nav-links { display: flex; list-style: none; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,.6); text-decoration: none;
  font-weight: 700; font-size: 14px; letter-spacing: .3px;
  transition: color .2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--purple-light); border-radius: 1px;
  transition: right .25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { right: 0; }

.btn-wallet-nav {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.2);
  color: white; padding: 10px 22px; border-radius: 50px;
  font-family: var(--font); font-size: 13px; font-weight: 800;
  cursor: pointer; transition: all .25s; backdrop-filter: blur(8px);
}
.btn-wallet-nav:hover { background: rgba(255,255,255,.16); transform: translateY(-1px); }
.btn-wallet-nav.connected { border-color: var(--green); color: var(--green); background: rgba(52,211,153,.1); }

/* =========================================
   DOTS & INDICATORS
   ========================================= */
.live-dot-sm {
  display: inline-block; width: 8px; height: 8px; background: var(--red);
  border-radius: 50%; animation: blink .9s infinite; flex-shrink: 0;
}
.blink-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 1.2s infinite; }
.blink-dot.red { background: var(--red); }
.green-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(160deg, #b09ae8 0%, #9575d4 35%, #7c5fbf 65%, #6248b0 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 110px 24px 60px; overflow: hidden;
}

.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}

/* Clouds */
.cloud { position: absolute; background: rgba(255,255,255,.22); border-radius: 50px; }
.cloud::before,.cloud::after { content:''; position: absolute; background: inherit; border-radius: 50%; }
.cloud-1 { width:220px;height:65px;top:10%;left:4%; animation: cloudDrift 18s ease-in-out infinite; }
.cloud-1::before{width:85px;height:85px;top:-42px;left:30px}
.cloud-1::after{width:65px;height:65px;top:-28px;left:78px}
.cloud-2 { width:170px;height:54px;top:16%;right:6%; animation: cloudDrift 22s ease-in-out infinite reverse; }
.cloud-2::before{width:68px;height:68px;top:-36px;left:22px}
.cloud-2::after{width:52px;height:52px;top:-24px;left:64px}
.cloud-3 { width:130px;height:42px;top:64%;left:2%;opacity:.5; animation: cloudDrift 25s ease-in-out infinite; }
.cloud-3::before{width:52px;height:52px;top:-28px;left:16px}
.cloud-3::after{width:42px;height:42px;top:-18px;left:48px}
.cloud-4 { width:150px;height:48px;top:58%;right:2%;opacity:.45; animation: cloudDrift 20s ease-in-out infinite reverse; }
.cloud-4::before{width:58px;height:58px;top:-32px;left:22px}
.cloud-4::after{width:46px;height:46px;top:-21px;left:58px}
@keyframes cloudDrift {
  0%,100%{transform:translateX(0)}
  50%{transform:translateX(18px)}
}

/* Floating hats */
.float-hat {
  position: absolute; font-size: 32px; pointer-events: none;
  opacity: .12; filter: blur(1px);
}
.fh1 { top: 20%; left: 8%; animation: floatHat 7s ease-in-out infinite; }
.fh2 { top: 45%; right: 7%; animation: floatHat 9s ease-in-out infinite reverse; animation-delay: -2s; }
.fh3 { bottom: 20%; left: 15%; animation: floatHat 11s ease-in-out infinite; animation-delay: -4s; }
@keyframes floatHat {
  0%,100%{transform:translateY(0) rotate(0deg)}
  33%{transform:translateY(-20px) rotate(8deg)}
  66%{transform:translateY(12px) rotate(-5deg)}
}

/* Hero content */
.hero-wrap {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 22px; text-align: center; max-width: 680px; width: 100%;
}

/* Staggered entrance */
.hero-enter {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--d, 0s);
}
.hero-enter.visible { opacity: 1; transform: translateY(0); }

/* Live badge row */
.hero-enter:first-child {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; justify-content: center;
}

.live-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(239,68,68,.75); border: 1px solid rgba(252,165,165,.5);
  color: white; font-size: 12px; font-weight: 900; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 50px;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%,100%{box-shadow:0 0 0 0 rgba(239,68,68,.5)}
  50%{box-shadow:0 0 0 10px rgba(239,68,68,0)}
}

.live-viewers-badge {
  background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85); font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 50px; backdrop-filter: blur(8px);
}

/* Title */
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(88px, 17vw, 158px);
  font-weight: 900; color: white; line-height: .9; letter-spacing: -4px;
  text-shadow:
    -4px -4px 0 #3b1d8a,  4px -4px 0 #3b1d8a,
    -4px  4px 0 #3b1d8a,  4px  4px 0 #3b1d8a,
    0 10px 0 rgba(20,5,60,.5),
    0 0 60px rgba(139,92,246,.4);
  filter: drop-shadow(0 0 40px rgba(139,92,246,.3));
}

.hero-sub { font-size: 17px; font-weight: 700; color: rgba(255,255,255,.85); }
.hero-sub strong { color: white; }

/* Progress block */
.hero-progress-block {
  width: 100%;
  background: rgba(30,15,70,.5); border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 18px; padding: 18px 22px; backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.1);
}
.hp-labels { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.hp-minted { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.8); }
.hp-minted em { font-style: normal; color: rgba(255,255,255,.45); font-size: 12px; }
.hp-pct { font-family: var(--font-h); font-size: 24px; font-weight: 900; color: white; }
.hp-total { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 700; }
.hp-bar { height: 14px; background: rgba(255,255,255,.1); border-radius: 7px; overflow: hidden; }
.hp-fill {
  height: 100%; border-radius: 7px;
  background: linear-gradient(90deg, #7c3aed, #a78bfa, #e0d7ff);
  transition: width 1.2s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
}
.hp-fill::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: shimmer 2.2s infinite;
}
@keyframes shimmer { to { left: 160%; } }
.hp-activity {
  margin-top: 10px; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 7px;
}

/* Price row */
.hero-price-row {
  display: flex; align-items: center; justify-content: center;
  background: rgba(30,15,70,.45); border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50px; padding: 6px 8px; backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.hpr-item { display: flex; flex-direction: column; align-items: center; padding: 6px 22px; }
.hpr-lbl { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; color: rgba(255,255,255,.4); text-transform: uppercase; margin-bottom: 3px; }
.hpr-val { font-family: var(--font-h); font-size: 18px; font-weight: 900; color: white; line-height: 1; }
.hpr-val span { color: var(--purple-light); font-size: 13px; }
.hpr-divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); }
.countdown { color: var(--gold) !important; font-family: 'Courier New',monospace !important; font-size: 17px !important; letter-spacing: 2px; }

/* Qty */
.hero-qty-row {
  display: flex; align-items: center; gap: 14px;
  background: rgba(30,15,70,.4); border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50px; padding: 8px 22px; backdrop-filter: blur(8px);
}
.qty-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: white; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; font-weight: 700;
}
.qty-btn:hover { background: rgba(255,255,255,.22); transform: scale(1.1); }
.qty-val { font-family: var(--font-h); font-size: 24px; font-weight: 900; color: white; min-width: 32px; text-align: center; }
.qty-total { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.6); margin-left: 4px; }
.qty-total strong { color: white; }

/* CTA */
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 100%; max-width: 440px; }

.btn-connect-hero {
  width: 100%; padding: 22px 32px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: none; border-radius: 18px;
  color: white; font-family: var(--font); font-size: 19px; font-weight: 900;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 8px 32px rgba(245,158,11,.5);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  animation: ctaGlow 2.5s infinite;
  position: relative; overflow: hidden;
}
.btn-connect-hero::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  animation: btnShine 3s infinite;
}
@keyframes btnShine { to { left: 160%; } }
@keyframes ctaGlow {
  0%,100%{box-shadow:0 8px 32px rgba(245,158,11,.5)}
  50%{box-shadow:0 8px 48px rgba(245,158,11,.85), 0 0 0 8px rgba(245,158,11,.12)}
}
.btn-connect-hero:hover { transform: translateY(-3px) scale(1.02); }

.btn-mint-hero {
  width: 100%; padding: 22px 32px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  border: none; border-radius: 18px;
  color: white; font-family: var(--font); font-size: 19px; font-weight: 900;
  cursor: pointer; transition: all .25s;
  animation: ctaGlowPurple 2.5s infinite;
  position: relative; overflow: hidden;
}
.btn-mint-hero::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: btnShine 3s infinite;
}
@keyframes ctaGlowPurple {
  0%,100%{box-shadow:0 8px 32px rgba(109,40,217,.5)}
  50%{box-shadow:0 8px 48px rgba(109,40,217,.85), 0 0 0 8px rgba(109,40,217,.12)}
}
.btn-mint-hero:hover { transform: translateY(-3px) scale(1.02); }

.wallet-icon { font-size: 22px; }
.cta-hint { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 700; }
.connected-hint { display: flex; align-items: center; gap: 7px; }

/* =========================================
   TICKER
   ========================================= */
.ticker-wrap { overflow: hidden; background: #160f34; padding: 12px 0; border-top: 1px solid rgba(167,139,250,.15); border-bottom: 1px solid rgba(167,139,250,.15); }
.ticker { display: inline-flex; gap: 20px; white-space: nowrap; animation: ticker 30s linear infinite; font-size: 13px; font-weight: 700; color: var(--purple-light); }
.tick-sep { opacity: .35; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* =========================================
   AIRDROP SECTION
   ========================================= */
.airdrop-section {
  position: relative; padding: 100px 0;
  background: linear-gradient(180deg, #0f0a1e 0%, #1a0d38 50%, #0f0a1e 100%);
  overflow: hidden;
}

.airdrop-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(245,158,11,.12) 0%, transparent 70%);
  pointer-events: none;
}

.airdrop-particles {
  position: absolute; inset: 0; pointer-events: none;
}

.airdrop-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

/* Left */
.airdrop-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.4);
  color: #fbbf24; font-size: 11px; font-weight: 900; letter-spacing: 2.5px;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 20px;
}
.airdrop-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #f59e0b;
  animation: blink .9s infinite;
}

.airdrop-title {
  font-family: var(--font-h); font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px; color: white;
}
.airdrop-highlight {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShine 3s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }

.airdrop-desc {
  font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 28px;
}
.airdrop-desc strong { color: #fbbf24; font-size: 18px; }

.airdrop-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.airdrop-feat { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 700; color: rgba(255,255,255,.8); }
.af-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(245,158,11,.3), rgba(245,158,11,.1));
  border: 1px solid rgba(245,158,11,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #fbbf24; font-weight: 900;
}

.btn-airdrop-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 36px; border-radius: 16px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none; color: white; font-family: var(--font); font-size: 17px; font-weight: 900;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 6px 28px rgba(245,158,11,.45);
  position: relative; overflow: hidden;
}
.btn-airdrop-cta::before {
  content: ''; position: absolute; top:0; left:-100%; width:60%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  animation: btnShine 3s infinite;
}
.btn-airdrop-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(245,158,11,.6); }

/* Right — airdrop card */
.airdrop-right { display: flex; justify-content: center; }

.airdrop-card {
  position: relative;
  background: linear-gradient(145deg, rgba(245,158,11,.12), rgba(109,40,217,.15));
  border: 1.5px solid rgba(245,158,11,.35);
  border-radius: 28px; padding: 40px 36px; text-align: center;
  width: 100%; max-width: 360px;
  box-shadow: 0 0 60px rgba(245,158,11,.15), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}
.airdrop-card:hover .ac-glow-ring { animation-play-state: running; }

.ac-glow-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 200px; height: 200px;
  border: 1px solid rgba(245,158,11,.25); border-radius: 50%;
  animation: ringExp 4s ease-out infinite;
}
.ac-glow-ring.r2 { animation-delay: 2s; }
@keyframes ringExp {
  0%{width:100px;height:100px;opacity:.5}
  100%{width:420px;height:420px;opacity:0}
}

.ac-label {
  font-size: 11px; font-weight: 900; letter-spacing: 3px; color: rgba(255,255,255,.4);
  text-transform: uppercase; margin-bottom: 12px; position: relative; z-index: 1;
}
.ac-amount {
  display: flex; align-items: baseline; justify-content: center; gap: 10px;
  margin-bottom: 4px; position: relative; z-index: 1;
}
.ac-num {
  font-family: var(--font-h); font-size: 68px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 20px rgba(245,158,11,.5));
}
.ac-token { font-family: var(--font-h); font-size: 24px; font-weight: 900; color: rgba(255,255,255,.5); }
.ac-per { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.5); margin-bottom: 24px; position: relative; z-index: 1; }

.ac-divider { height: 1px; background: rgba(255,255,255,.08); margin: 20px 0; }

.ac-timer-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.4); margin-bottom: 12px; letter-spacing: .5px; }
.ac-timer { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 4px; }
.ac-unit { display: flex; flex-direction: column; align-items: center; }
.ac-num-sm {
  font-family: var(--font-h); font-size: 36px; font-weight: 900; color: white; line-height: 1;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 6px 14px; min-width: 64px; text-align: center;
  transition: transform .1s;
}
.ac-unit-lbl { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.35); margin-top: 5px; letter-spacing: 1px; text-transform: uppercase; }
.ac-colon { font-family: var(--font-h); font-size: 32px; font-weight: 900; color: rgba(255,255,255,.3); margin-bottom: 18px; animation: blink 1s infinite; }

.ac-slots-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.ac-slots-bar { height: 8px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.ac-slots-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  position: relative; overflow: hidden;
}
.ac-slots-fill::after {
  content: ''; position: absolute; top:0; left:-60%; width:50%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  animation: shimmer 2s infinite;
}
.ac-slots-count { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.ac-slots-count span { color: #fbbf24; font-weight: 900; }

.btn-airdrop-card {
  width: 100%; padding: 15px; border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none; color: white; font-family: var(--font); font-size: 15px; font-weight: 900;
  cursor: pointer; transition: all .25s; position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(245,158,11,.4);
}
.btn-airdrop-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,158,11,.6); }

/* =========================================
   CONTAINER & SECTIONS
   ========================================= */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section-badge {
  display: inline-flex; background: rgba(139,92,246,.2); border: 1px solid rgba(139,92,246,.4);
  color: var(--purple-light); font-size: 12px; font-weight: 800; letter-spacing: 3px;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 16px;
}
.section-badge.center { display: flex; width: fit-content; margin: 0 auto 16px; }

.section-title { font-family: var(--font-h); font-size: clamp(30px,5vw,52px); font-weight: 900; text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: rgba(255,255,255,.6); font-size: 16px; margin-bottom: 48px; }

/* =========================================
   ABOUT
   ========================================= */
.about { padding: 100px 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text h2 { font-family: var(--font-h); font-size: clamp(30px,4vw,48px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.highlight { background: linear-gradient(90deg,#a78bfa,#60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-text p { color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.about-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); font-size: 15px; font-weight: 600; }
.check { width: 22px; height: 22px; background: linear-gradient(135deg,#8b5cf6,#6d28d9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.btn-secondary { display: inline-flex; align-items: center; background: linear-gradient(135deg,#8b5cf6,#6d28d9); color: white; padding: 12px 24px; border-radius: 50px; font-weight: 800; font-size: 14px; text-decoration: none; transition: all .25s; box-shadow: 0 4px 20px rgba(109,40,217,.4); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(109,40,217,.6); }
.about-visual { display: flex; justify-content: center; }
.about-card { background: linear-gradient(135deg,rgba(139,92,246,.2),rgba(109,40,217,.15)); border: 1.5px solid rgba(167,139,250,.3); border-radius: 28px; padding: 48px 40px; text-align: center; width: 100%; max-width: 380px; transition: transform .3s; }
.about-card:hover { transform: translateY(-6px); }
.glow-purple { box-shadow: 0 0 60px rgba(139,92,246,.2), inset 0 0 60px rgba(139,92,246,.05); }
.big-hat { font-size: 72px; margin-bottom: 20px; animation: floatHat 6s ease-in-out infinite; display: inline-block; }
.about-card-title { font-family: var(--font-h); font-size: 22px; font-weight: 900; color: white; margin-bottom: 10px; line-height: 1.2; }
.about-card-sub { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 32px; }
.about-stat-row { display: flex; justify-content: space-around; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; }
.mini-stat-val { font-family: var(--font-h); font-size: 22px; font-weight: 900; color: white; }
.mini-stat-lbl { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 600; margin-top: 4px; }

/* =========================================
   TOKENOMICS
   ========================================= */
.tokenomics { padding: 100px 0; background: var(--bg2); }
.token-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 40px; }
.token-card { background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.08); border-radius: 20px; padding: 28px 20px; text-align: center; transition: all .25s; position: relative; overflow: hidden; }
.token-card::before { content:''; position: absolute; top:0;left:0;right:0; height:3px; background: var(--accent); border-radius: 3px 3px 0 0; }
.token-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.token-icon { font-size: 32px; margin-bottom: 12px; }
.token-pct { font-family: var(--font-h); font-size: 36px; font-weight: 900; color: white; line-height: 1; }
.token-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.6); margin: 8px 0 16px; }
.token-bar { height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.token-fill { height: 100%; border-radius: 3px; }
.contract-box { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.04); border: 1.5px solid rgba(167,139,250,.25); border-radius: 14px; padding: 16px 24px; flex-wrap: wrap; justify-content: center; }
.contract-label { font-size: 12px; font-weight: 800; letter-spacing: 1px; color: var(--purple-light); text-transform: uppercase; }
.contract-addr { font-family: 'Courier New',monospace; font-size: 14px; color: rgba(255,255,255,.85); word-break: break-all; flex: 1; min-width: 200px; text-align: center; }
.copy-btn { background: var(--purple); color: white; border: none; border-radius: 8px; padding: 8px 18px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s; }
.copy-btn:hover { background: var(--purple-dark); }

/* =========================================
   COMMUNITY
   ========================================= */
.community { padding: 100px 0; background: linear-gradient(180deg,var(--bg2) 0%,var(--bg) 100%); }
.community-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.comm-card { background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.08); border-radius: 20px; padding: 36px 20px; text-align: center; text-decoration: none; transition: all .3s; display: block; }
.comm-card:hover { background: rgba(139,92,246,.15); border-color: rgba(167,139,250,.5); transform: translateY(-8px) scale(1.02); box-shadow: 0 16px 48px rgba(109,40,217,.35); }
.comm-icon { font-size: 36px; margin-bottom: 14px; transition: transform .3s; }
.comm-card:hover .comm-icon { transform: scale(1.2) rotate(-5deg); }
.comm-name { font-family: var(--font-h); font-size: 18px; font-weight: 800; color: white; margin-bottom: 6px; }
.comm-desc { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 600; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: #0a0616; border-top: 1px solid rgba(167,139,250,.1); padding: 48px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-h); font-size: 24px; font-weight: 900; letter-spacing: 2px; }
.footer-text { color: rgba(255,255,255,.45); font-size: 14px; max-width: 400px; line-height: 1.6; }
.footer-copy { color: rgba(255,255,255,.2); font-size: 12px; margin-top: 8px; }

/* =========================================
   WALLET MODAL
   ========================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.8); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: #1a1035; border: 1.5px solid rgba(167,139,250,.3);
  border-radius: 28px; padding: 40px 36px; width: 100%; max-width: 440px;
  position: relative; transform: translateY(28px) scale(.97);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 28px 80px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.06);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top:16px; right:16px;
  background: rgba(255,255,255,.08); border: none; color: rgba(255,255,255,.5);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.modal-close:hover { background: rgba(255,255,255,.15); color: white; transform: rotate(90deg); }

.modal-hat { font-size: 48px; text-align: center; margin-bottom: 12px; display: block; }
.spin-icon { animation: spinY 1.5s linear infinite; }
@keyframes spinY { to { transform: rotateY(360deg); } }
.bounce-icon { animation: bounceIn .6s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes bounceIn { from{transform:scale(.3) rotate(-15deg);opacity:0} 60%{transform:scale(1.2) rotate(5deg)} to{transform:scale(1) rotate(0);opacity:1} }

.modal-title { font-family: var(--font-h); font-size: 26px; font-weight: 900; text-align: center; color: white; margin-bottom: 8px; }
.modal-sub { font-size: 14px; color: rgba(255,255,255,.5); text-align: center; margin-bottom: 24px; line-height: 1.5; }

.wallet-opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.wallet-opt {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 14px 18px; cursor: pointer; transition: all .2s;
  text-align: left; width: 100%; font-family: var(--font);
}
.wallet-opt:hover { background: rgba(139,92,246,.18); border-color: rgba(167,139,250,.5); transform: translateX(6px); }
.wopt-emoji { font-size: 28px; flex-shrink: 0; width: 36px; text-align: center; }
.wopt-info { flex: 1; }
.wopt-name { font-weight: 800; font-size: 15px; color: white; margin-bottom: 2px; }
.wopt-desc { font-size: 12px; color: rgba(255,255,255,.4); }
.wopt-arrow { color: rgba(255,255,255,.25); font-size: 22px; transition: all .2s; }
.wallet-opt:hover .wopt-arrow { transform: translateX(4px); color: white; }
.modal-terms { text-align: center; font-size: 12px; color: rgba(255,255,255,.25); }
.modal-terms a { color: rgba(167,139,250,.7); text-decoration: none; }

/* Verify steps */
.verify-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.vstep { display: flex; align-items: center; gap: 14px; }
.vstep-icon { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.1); transition: all .4s; }
.vstep-icon.active { background: rgba(139,92,246,.2); border-color: rgba(139,92,246,.6); animation: iconPulse 1s infinite; }
.vstep-icon.done { background: rgba(52,211,153,.15); border-color: rgba(52,211,153,.5); }
@keyframes iconPulse { 0%,100%{box-shadow:0 0 0 0 rgba(139,92,246,.4)} 50%{box-shadow:0 0 0 7px rgba(139,92,246,0)} }
.vstep-info { flex: 1; }
.vstep-name { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.6); margin-bottom: 6px; transition: color .3s; }
.vstep-name.done { color: var(--green); }
.vstep-bar { height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; }
.vstep-fill { height: 100%; background: linear-gradient(90deg,#8b5cf6,#a78bfa); border-radius: 2px; width: 0%; transition: width .05s linear; }
.vstep-fill.done { background: linear-gradient(90deg,#059669,#34d399); }

/* Bonus */
.bonus-confetti { position: absolute; top:0;left:0;right:0; height:80px; overflow:hidden; border-radius: 28px 28px 0 0; pointer-events: none; }
.bonus-addr { font-family: 'Courier New',monospace; font-size: 12px; color: rgba(255,255,255,.4); background: rgba(255,255,255,.05); padding: 6px 14px; border-radius: 50px; text-align: center; margin-bottom: 4px; }
.bonus-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.bonus-card { display: flex; align-items: center; gap: 14px; border-radius: 14px; padding: 14px 16px; border: 1.5px solid; animation: slideIn .4s ease both; }
.bonus-card:nth-child(1){animation-delay:.05s}
.bonus-card:nth-child(2){animation-delay:.15s}
.bonus-card:nth-child(3){animation-delay:.25s}
@keyframes slideIn { from{transform:translateX(-18px);opacity:0} to{transform:translateX(0);opacity:1} }
.bc-gold { background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.4); }
.bc-purple { background: rgba(139,92,246,.12); border-color: rgba(139,92,246,.4); }
.bc-blue { background: rgba(96,165,250,.12); border-color: rgba(96,165,250,.4); }
.bc-icon { font-size: 26px; flex-shrink: 0; }
.bc-info { flex: 1; }
.bc-name { font-size: 12px; font-weight: 800; color: rgba(255,255,255,.6); margin-bottom: 3px; }
.bc-val { font-size: 15px; font-weight: 900; color: white; }
.bc-badge { font-size: 10px; font-weight: 900; letter-spacing: 1.5px; padding: 4px 10px; border-radius: 50px; flex-shrink: 0; }
.bc-gold .bc-badge { background: rgba(245,158,11,.25); color: #fbbf24; border: 1px solid rgba(245,158,11,.4); }
.bc-purple .bc-badge { background: rgba(139,92,246,.25); color: #c4b5fd; border: 1px solid rgba(139,92,246,.4); }
.bc-blue .bc-badge { background: rgba(96,165,250,.25); color: #93c5fd; border: 1px solid rgba(96,165,250,.4); }
.bonus-balance-row { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,.6); font-weight: 700; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 12px 18px; margin-bottom: 16px; }
.bonus-balance-row strong { color: var(--purple-light); font-size: 17px; }
.btn-go-mint { width: 100%; padding: 18px; border-radius: 16px; background: linear-gradient(135deg,#f59e0b,#d97706); border: none; color: white; font-family: var(--font); font-size: 16px; font-weight: 900; cursor: pointer; transition: all .25s; box-shadow: 0 4px 24px rgba(245,158,11,.45); animation: ctaGlow 2.5s infinite; position: relative; overflow: hidden; }
.btn-go-mint::before { content:''; position:absolute; top:0;left:-100%;width:60%;height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent); animation:btnShine 3s infinite; }
.btn-go-mint:hover { transform: translateY(-2px); }
.bonus-urgency { text-align: center; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.4); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* =========================================
   SUCCESS OVERLAY
   ========================================= */
.success-overlay { position: fixed; inset:0; z-index:1000; background: rgba(0,0,0,.85); backdrop-filter: blur(14px); display: flex; align-items: center; justify-content: center; padding: 24px; }
.success-box { background: #1a1035; border: 1.5px solid rgba(52,211,153,.4); border-radius: 28px; padding: 48px 40px; text-align: center; max-width: 420px; width: 100%; box-shadow: 0 0 80px rgba(52,211,153,.15); animation: successEntry .5s cubic-bezier(.16,1,.3,1) both; }
@keyframes successEntry { from{transform:scale(.85);opacity:0} to{transform:scale(1);opacity:1} }
.success-hat { font-size: 80px; display: block; margin-bottom: 16px; animation: successBounce 1s ease; }
@keyframes successBounce { 0%{transform:scale(.3) rotate(-20deg);opacity:0} 60%{transform:scale(1.2) rotate(5deg)} 100%{transform:scale(1) rotate(0);opacity:1} }
.success-box h2 { font-family: var(--font-h); font-size: 32px; font-weight: 900; color: white; margin-bottom: 12px; }
.success-nft-id { font-family: var(--font-h); font-size: 52px; font-weight: 900; background: linear-gradient(135deg,#f59e0b,#a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.success-box p { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
.success-box p strong { color: #fbbf24; }
.success-actions { display: flex; gap: 12px; justify-content: center; }
.btn-share { background: #1a1a2e; border: 1.5px solid rgba(255,255,255,.2); color: white; padding: 12px 24px; border-radius: 12px; font-weight: 800; font-size: 14px; text-decoration: none; transition: all .2s; font-family: var(--font); }
.btn-share:hover { background: rgba(255,255,255,.1); transform: translateY(-1px); }
.btn-close-success { background: linear-gradient(135deg,#8b5cf6,#6d28d9); border: none; color: white; padding: 12px 24px; border-radius: 12px; font-weight: 800; font-size: 14px; cursor: pointer; font-family: var(--font); transition: all .2s; }
.btn-close-success:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(109,40,217,.5); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { padding: 14px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .token-grid { grid-template-columns: repeat(2,1fr); }
  .community-grid { grid-template-columns: repeat(2,1fr); }
  .airdrop-inner { grid-template-columns: 1fr; gap: 48px; }
  .airdrop-right { order: -1; }
}
@media (max-width: 560px) {
  .hero-title { font-size: 82px; }
  .token-grid { grid-template-columns: 1fr 1fr; }
  .community-grid { grid-template-columns: 1fr 1fr; }
  .modal-box { padding: 32px 20px; }
  .success-box { padding: 36px 24px; }
  .hpr-item { padding: 6px 12px; }
}
