/* SpinFiesta Live — "EMBER DARK" Design */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg:          #0C0800;
  --bg-2:        #130E00;
  --bg-3:        #1C1500;
  --bg-card:     #1A1200;
  --surface:     rgba(232,164,40,0.06);
  --surface-2:   rgba(232,164,40,0.12);
  --gold:        #E8A428;
  --gold-bright: #FFD060;
  --gold-dim:    rgba(232,164,40,0.18);
  --gold-glow:   rgba(232,164,40,0.30);
  --ember:       #FF6530;
  --text:        #FDF4DF;
  --off-white:   #D4C898;
  --muted:       rgba(253,244,223,0.42);
  --border:      rgba(232,164,40,0.18);
  --border-dim:  rgba(255,255,255,0.07);

  --font-display: 'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --radius:    6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --maxw:      1200px;
  --hh:        68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--gold); color: #000; padding: 8px 16px;
  border-radius: 6px; font-size: 14px; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ══════════════════════════════════
   ENTRANCE ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim-fade-up                { animation: fadeUp 0.8s ease-out forwards; opacity: 0; }
.anim-delay-1                { animation-delay: 0.20s; }
.anim-delay-2                { animation-delay: 0.40s; }
.anim-delay-3                { animation-delay: 0.60s; }
.anim-delay-4                { animation-delay: 0.80s; }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; outline: none;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: all .22s ease;
  white-space: nowrap; user-select: none;
  border-radius: var(--radius-md);
}
.btn-primary {
  background: var(--gold); color: #000;
  padding: 13px 28px;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); color: #000; text-decoration: none; box-shadow: 0 6px 24px var(--gold-glow); }
.btn-primary:active { transform: translateY(0); }
.btn-primary-lg { padding: 16px 38px; font-size: 14px; }

/* btn-blue & btn-cyan → gold in ember theme */
.btn-blue, .btn-cyan {
  background: var(--gold); color: #000;
  padding: 13px 28px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  font-family: var(--font-body); border: none; cursor: pointer;
  border-radius: var(--radius-md); display: inline-flex;
  align-items: center; justify-content: center;
  transition: all .22s ease; text-decoration: none;
}
.btn-blue:hover, .btn-cyan:hover { background: var(--gold-bright); color: #000; transform: translateY(-2px); text-decoration: none; box-shadow: 0 6px 24px var(--gold-glow); }
.btn-blue-lg { padding: 16px 38px; font-size: 14px; }

.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
  padding: 13px 28px; font-size: 13px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--surface); text-decoration: none; }
.btn-block { width: 100%; }

/* ══════════════════════════════════
   PROMO BAR
══════════════════════════════════ */
.promo-bar {
  background: var(--bg-2); border-bottom: 1px solid var(--border-dim);
  overflow: hidden; height: 30px;
  display: flex; align-items: center; position: relative; z-index: 100;
}
.promo-bar-inner {
  display: flex; gap: 0; white-space: nowrap;
  animation: promoScroll 36s linear infinite;
}
@keyframes promoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.promo-bar-item {
  font-size: 10px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); padding: 0 24px;
}
.promo-bar-sep { color: var(--gold); opacity: 0.5; }

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  height: var(--hh);
  background: rgba(12,8,0,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; gap: 40px;
}
.brand {
  text-decoration: none; flex-shrink: 0;
  display: flex; align-items: center; gap: 4px;
}
.brand-name {
  font-family: var(--font-display); font-size: 26px;
  color: var(--text); letter-spacing: 0.08em;
  line-height: 1;
}
.brand-sep { color: var(--gold); font-size: 20px; opacity: 0.7; }
.brand-suffix {
  font-family: var(--font-display); font-size: 26px;
  color: var(--gold); letter-spacing: 0.08em; line-height: 1;
}

/* Desktop nav */
.site-nav { display: flex; gap: 2px; margin-left: auto; }
.site-nav a {
  font-size: 12px; font-weight: 600; color: var(--muted);
  padding: 8px 14px; border-radius: 6px;
  transition: all .18s; text-decoration: none;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.site-nav a:hover { color: var(--text); background: var(--surface); text-decoration: none; }
.nav-close-btn { display: none; }

.header-end { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.live-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border-dim);
  padding: 5px 12px; border-radius: 100px; letter-spacing: 0.02em;
}
.live-dot {
  width: 6px; height: 6px; background: #4ade80;
  border-radius: 50%; flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(74,222,128,0.7);
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; color: var(--text); padding: 6px;
}
.hamburger span {
  display: block; height: 1.5px; background: currentColor; border-radius: 2px;
  width: 22px; transition: width .2s;
}
.hamburger span.short { width: 14px; }

/* ══════════════════════════════════
   HERO — fullscreen video
══════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; overflow: hidden; z-index: 1;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(12,8,0,0.92) 0%, rgba(12,8,0,0.70) 55%, rgba(12,8,0,0.55) 100%),
    linear-gradient(180deg, transparent 60%, rgba(12,8,0,0.90) 100%);
}
.hero-body {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 100px 64px 48px; max-width: 820px;
}

/* Eyebrow tagline */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 12px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 20px; opacity: 0.85;
}

/* Main headline — Bebas Neue */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  line-height: 0.92; letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 28px; text-transform: uppercase;
}

.hero-sub {
  font-size: 17px; font-weight: 400; line-height: 1.68;
  color: var(--off-white); max-width: 460px; margin-bottom: 36px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-chip {
  background: rgba(232,164,40,0.08); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 4px;
  font-size: 12px; color: var(--muted); font-weight: 400; letter-spacing: 0.02em;
}
.trust-chip strong { font-weight: 700; color: var(--gold); }

/* Stats strip at bottom of hero */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: stretch;
  border-top: 1px solid var(--border);
  background: rgba(12,8,0,0.72); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-stat {
  flex: 1; padding: 20px 28px;
  display: flex; flex-direction: column; gap: 5px;
}
.hero-stat-div { width: 1px; background: var(--border-dim); margin: 14px 0; flex-shrink: 0; }
.hero-stat-val {
  font-family: var(--font-display);
  font-size: 44px; color: var(--gold); line-height: 1;
  letter-spacing: 0.04em;
}
.hero-stat-lbl {
  font-size: 10px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.10em;
}

/* ══════════════════════════════════
   FEATURES STRIP (post-hero)
══════════════════════════════════ */
.features-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-dim);
}
.feature-card {
  padding: 28px 32px; border-right: 1px solid var(--border-dim);
  transition: background .22s; position: relative;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity .22s;
}
.feature-card:hover { background: var(--surface); }
.feature-card:hover::before { opacity: 1; }
.feature-card:last-child { border-right: none; }
.feature-badge {
  display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 3px;
  margin-bottom: 12px; background: var(--surface-2); color: var(--gold);
  border: 1px solid var(--border);
}
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; color: var(--text); }
.feature-desc { font-size: 13px; color: var(--muted); line-height: 1.55; font-weight: 400; }

/* ══════════════════════════════════
   TICKER
══════════════════════════════════ */
.ticker {
  background: var(--bg); border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim);
  height: 40px; display: flex; align-items: center; overflow: hidden; position: relative; z-index: 1;
}
.ticker-label-block {
  display: flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); padding: 0 18px; border-right: 1px solid var(--border-dim);
  white-space: nowrap; flex-shrink: 0; opacity: 0.8;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-scroll { display: flex; white-space: nowrap; animation: tickerRun 44s linear infinite; }
@keyframes tickerRun { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { font-size: 13px; color: var(--muted); padding: 0 22px; font-weight: 400; }
.ticker-dot { display: inline-block; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin-right: 8px; vertical-align: middle; box-shadow: 0 0 5px var(--gold-glow); }
.ticker-val { font-weight: 700; color: var(--gold); }
.ticker-sep { color: var(--border-dim); }

/* ══════════════════════════════════
   SECTION COMMONS
══════════════════════════════════ */
.section { padding: 100px 0; }
.section-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-kicker {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  background: var(--surface); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 4px; margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  letter-spacing: 0.04em; line-height: 1.1;
  margin-bottom: 16px; color: var(--text);
}
.section-accent {
  color: var(--gold);
}
.section-sub { font-size: 17px; color: var(--muted); max-width: 500px; margin: 0 auto; font-weight: 400; }

/* ══════════════════════════════════
   GAMES SECTION
══════════════════════════════════ */
.games-section { padding: 80px 0; position: relative; z-index: 1; }
.games-head {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 36px; flex-wrap: wrap;
}
.games-head-left .section-kicker { display: block; margin-bottom: 8px; text-align: left; }
.games-head-left .section-heading { margin-bottom: 0; text-align: left; font-size: clamp(32px, 4vw, 48px); }

.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab {
  background: transparent; border: 1px solid var(--border-dim);
  padding: 8px 18px; font-size: 11px; font-weight: 700; font-family: var(--font-body);
  color: var(--muted); cursor: pointer; transition: all .18s;
  border-radius: 4px; letter-spacing: 0.08em; text-transform: uppercase;
}
.filter-tab:hover { color: var(--text); border-color: var(--border); }
.filter-tab.active { background: var(--gold); border-color: transparent; color: #000; }

.games-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(188px, 1fr)); gap: 10px;
}
.game-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: all .22s; cursor: pointer;
  animation: cardIn .4s ease both;
  animation-delay: calc(var(--i, 0) * 38ms);
}
@keyframes cardIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.game-card:hover { border-color: var(--border); transform: translateY(-3px); text-decoration: none; color: inherit; box-shadow: 0 8px 32px rgba(232,164,40,0.12); }
.game-thumb { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.game-cover { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.game-card:hover .game-cover { transform: scale(1.05); }
.game-initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 30px; color: rgba(253,244,223,0.18); z-index: 1; letter-spacing: 0.08em; }
.game-overlay { position: absolute; inset: 0; background: rgba(12,8,0,0.65); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; z-index: 2; backdrop-filter: blur(2px); }
.game-card:hover .game-overlay { opacity: 1; }
.game-play-btn { background: var(--gold); color: #000; font-weight: 700; font-family: var(--font-body); padding: 9px 20px; font-size: 12px; border-radius: 4px; letter-spacing: 0.06em; text-transform: uppercase; }
.game-info { padding: 12px 14px; display: flex; flex-direction: column; gap: 3px; }
.game-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); opacity: 0.7; }
.game-title { font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.game-meta { font-size: 11px; color: var(--muted); font-weight: 400; }

/* ══════════════════════════════════
   WINNERS BAND
══════════════════════════════════ */
.winners-band {
  background: var(--bg-2); border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim);
  height: 46px; display: flex; align-items: center; overflow: hidden; position: relative; z-index: 1;
}
.wins-label { display: flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); padding: 0 18px; border-right: 1px solid var(--border-dim); white-space: nowrap; flex-shrink: 0; }
.wins-track { flex: 1; overflow: hidden; }
.wins-scroll { display: flex; white-space: nowrap; animation: winsRun 52s linear infinite; }
@keyframes winsRun { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.win-item { font-size: 13px; color: var(--muted); padding: 0 18px; }
.win-sep { display: inline-block; width: 1px; height: 10px; background: var(--border-dim); margin-right: 18px; vertical-align: middle; }
.win-name { font-weight: 600; color: var(--off-white); }
.win-amount { font-weight: 700; color: var(--gold); }
.wins-stat { padding: 0 20px; border-left: 1px solid var(--border-dim); white-space: nowrap; flex-shrink: 0; }
.wins-stat-num { font-family: var(--font-display); font-size: 22px; color: var(--gold); display: block; line-height: 1; letter-spacing: 0.04em; }
.wins-stat-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* ══════════════════════════════════
   HOW IT WORKS — numbered editorial
══════════════════════════════════ */
.how-section { padding: 100px 0; position: relative; z-index: 1; }
.how-header {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 56px;
}
.how-header-left .section-kicker { display: block; margin-bottom: 12px; }
.how-header-left .section-heading { margin-bottom: 0; }
.how-header-sub { font-size: 17px; color: var(--muted); line-height: 1.7; font-weight: 400; align-self: end; }

.how-steps {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  border: 1px solid var(--border-dim); border-radius: var(--radius-xl); overflow: hidden;
}
.how-step {
  display: grid; grid-template-columns: 120px 1fr 40px;
  align-items: center; gap: 0;
  border-bottom: 1px solid var(--border-dim);
  transition: background .22s;
}
.how-step:last-child { border-bottom: none; }
.how-step:hover { background: var(--surface); }
.step-num {
  font-family: var(--font-display);
  font-size: 72px; color: var(--gold); opacity: 0.2; line-height: 1;
  padding: 32px 24px; border-right: 1px solid var(--border-dim);
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.04em; user-select: none; text-align: center;
  transition: opacity .22s;
}
.how-step:hover .step-num { opacity: 0.45; }
.step-body { padding: 32px 36px; }
.step-title {
  font-family: var(--font-display);
  font-size: 32px; letter-spacing: 0.06em;
  color: var(--text); margin-bottom: 10px;
}
.step-desc { font-size: 15px; color: var(--muted); line-height: 1.68; font-weight: 400; }
.step-desc strong { color: var(--text); font-weight: 700; }
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 20px; color: var(--gold); opacity: 0.3;
  transition: opacity .22s;
}
.how-step:hover .step-arrow { opacity: 0.8; }
.step-arrow-hidden { opacity: 0 !important; }

/* ══════════════════════════════════
   VIP TIERS — featured center
══════════════════════════════════ */
.tiers-section { padding: 100px 0; position: relative; z-index: 1; }
.tiers-grid {
  display: grid; grid-template-columns: 1fr 1.15fr 1fr;
  gap: 10px; align-items: start;
}
.tier-card {
  background: var(--bg-card); border: 1px solid var(--border-dim);
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  transition: all .28s; display: flex; flex-direction: column;
}
.tier-card:hover { border-color: var(--border); transform: translateY(-3px); }
.tier-featured {
  border-color: var(--border) !important;
  box-shadow: 0 0 0 1px var(--gold-dim), 0 20px 60px rgba(232,164,40,0.10);
}
.tier-featured-label {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #000;
  font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

.tier-num {
  font-family: var(--font-display);
  font-size: 90px; color: var(--gold); opacity: 0.06;
  line-height: 1; padding: 20px 24px 0; letter-spacing: 0.06em;
  user-select: none; pointer-events: none;
}
.tier-featured .tier-num { opacity: 0.12; }
.tier-header {
  padding: 0 24px 16px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.tier-name {
  font-family: var(--font-display); font-size: 30px;
  letter-spacing: 0.06em; color: var(--text); line-height: 1;
}
.tier-featured .tier-name { color: var(--gold); }
.tier-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
  background: var(--surface); border: 1px solid var(--border-dim); color: var(--muted);
}
.tier-body {
  padding: 16px 24px 0; border-top: 1px solid var(--border-dim); flex: 1;
}
.tier-desc { font-size: 14px; color: var(--muted); line-height: 1.62; margin-bottom: 16px; font-weight: 400; }
.tier-perks { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.tier-perks li {
  font-size: 13px; color: var(--off-white);
  display: flex; align-items: flex-start; gap: 10px; font-weight: 400;
}
.tier-perks li::before { content: '›'; color: var(--gold); font-size: 16px; line-height: 1.2; flex-shrink: 0; }
.tier-cta { padding: 20px 24px 24px; }

/* ══════════════════════════════════
   SOCIAL PROOF — new block
══════════════════════════════════ */
.proof-section {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim);
  position: relative; overflow: hidden;
}
.proof-section::before {
  content: ''; position: absolute;
  top: -50%; left: 10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,164,40,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.proof-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 140px 1fr;
  gap: 32px; align-items: start; position: relative;
}
.proof-deco {
  font-family: var(--font-display); font-size: 180px;
  color: var(--gold); opacity: 0.18; line-height: 0.9;
  user-select: none; pointer-events: none;
}
.proof-content { display: flex; flex-direction: column; gap: 32px; }
.proof-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--text); line-height: 1.25;
  letter-spacing: 0.03em; font-style: normal;
}
.proof-author { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.proof-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold); color: #000;
  font-family: var(--font-display); font-size: 20px; letter-spacing: 0.06em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.proof-info { display: flex; flex-direction: column; gap: 3px; }
.proof-name { font-size: 15px; font-weight: 700; color: var(--text); }
.proof-role { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; font-weight: 400; }
.proof-rating { color: var(--gold); margin-left: auto; flex-shrink: 0; opacity: 0.8; }

/* ══════════════════════════════════
   FAQ — numbered items
══════════════════════════════════ */
.faq-section { padding: 100px 0; position: relative; z-index: 1; }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-intro .section-heading { text-align: left; font-size: 46px; }
.faq-intro .section-kicker { display: block; text-align: left; margin-bottom: 14px; }
.faq-intro-note { font-size: 15px; color: var(--muted); margin-top: 18px; line-height: 1.78; font-weight: 400; }
.faq-intro-note a { color: var(--gold); text-decoration: underline; }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border-dim); border-radius: var(--radius-xl); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border-dim); transition: background .2s; }
.faq-item:last-child { border-bottom: none; }
.faq-item[open] { background: var(--surface); }
.faq-item summary {
  display: flex; align-items: center; gap: 16px; padding: 18px 22px;
  cursor: pointer; list-style: none;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em; transition: color .18s;
}
.faq-item summary:hover { color: var(--gold); }
.faq-item[open] summary { color: var(--gold); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-num {
  font-family: var(--font-display); font-size: 22px;
  color: var(--gold); opacity: 0.3; letter-spacing: 0.04em;
  flex-shrink: 0; transition: opacity .2s; width: 32px;
}
.faq-item summary:hover .faq-num,
.faq-item[open] .faq-num { opacity: 0.9; }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; margin-left: auto; transition: transform .28s; color: var(--muted); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-answer { padding: 0 22px 18px 70px; font-size: 14px; color: var(--muted); line-height: 1.78; font-weight: 400; }
.faq-answer a { color: var(--gold); text-decoration: underline; }

/* ══════════════════════════════════
   FINAL CTA — video background
══════════════════════════════════ */
.final-section {
  position: relative; overflow: hidden;
  padding: 120px 0;
  border-top: 1px solid var(--border-dim); z-index: 1;
}
.final-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.final-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.final-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,8,0,0.95) 0%, rgba(12,8,0,0.85) 100%);
}
.final-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.final-kicker {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  background: var(--surface); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 4px; margin-bottom: 24px;
}
.final-heading {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  letter-spacing: 0.04em; line-height: 0.95;
  margin-bottom: 24px; color: var(--text);
}
.final-body {
  font-size: 17px; color: var(--muted); line-height: 1.72;
  max-width: 500px; margin: 0 auto 36px; font-weight: 400;
}
.final-body strong { color: var(--text); font-weight: 600; }
.final-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.final-online {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-bottom: 12px; font-weight: 400;
}
.final-age { font-size: 12px; color: var(--muted); opacity: 0.45; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border-dim); padding: 64px 0 32px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-mark { font-family: var(--font-display); font-size: 22px; margin-bottom: 12px; letter-spacing: 0.06em; color: var(--text); }
.footer-brand-mark em { font-style: normal; color: var(--gold); }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.65; max-width: 280px; font-weight: 400; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color .18s; font-weight: 400; }
.footer-col ul li a:hover { color: var(--gold); text-decoration: none; }
.rg-age { display: inline-block; font-family: var(--font-display); font-size: 26px; color: var(--gold); margin-bottom: 8px; letter-spacing: 0.06em; }
.rg-lede { font-size: 13px; color: var(--muted); margin-bottom: 12px; font-weight: 400; }
.rg-entries { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rg-hotline { font-weight: 700; color: var(--gold) !important; font-size: 14px; }
.rg-ext { font-size: 12px; color: var(--muted) !important; }
.footer-bottom { border-top: 1px solid var(--border-dim); padding-top: 24px; }
.footer-excluded { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.excl-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--surface); color: var(--gold); border: 1px solid var(--border); padding: 3px 9px; border-radius: 4px; }
.excl-list { font-size: 12px; color: var(--muted); }
.footer-disclaimer { font-size: 11px; color: var(--muted); opacity: 0.42; line-height: 1.9; margin-bottom: 16px; max-width: 920px; font-weight: 400; }
.footer-disclaimer a { color: inherit; text-decoration: underline; }
.footer-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 11px; color: var(--muted); opacity: 0.42; font-weight: 400; }
.footer-build { font-size: 11px; color: var(--muted); opacity: 0.42; display: flex; gap: 14px; }

/* ══════════════════════════════════
   MODALS  (age-gate + signup injected by JS)
══════════════════════════════════ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(12,8,0,0.92); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.active { display: flex; }
.modal-panel {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px;
  width: 100%; max-width: 460px; max-height: 90svh; overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px var(--gold-dim);
}
.modal-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--ember), var(--gold));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--surface); border: 1px solid var(--border-dim);
  color: var(--muted); cursor: pointer; font-size: 18px;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  transition: all .18s; border-radius: 6px;
}
.modal-close:hover { background: var(--surface-2); color: var(--text); border-color: var(--border); }
.modal-title {
  font-family: var(--font-display); font-size: 28px; letter-spacing: 0.06em;
  margin-bottom: 8px; color: var(--text); text-align: center;
}
.hl-gold { color: var(--gold); }
.modal-lede { font-size: 15px; color: var(--muted); margin-bottom: 24px; font-weight: 400; text-align: center; }

/* Form */
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-row label { font-size: 11px; font-weight: 700; color: var(--off-white); letter-spacing: 0.08em; text-transform: uppercase; }
.form-row input, .form-row select, .dob-select {
  background: rgba(232,164,40,0.04);
  border: 1px solid var(--border-dim); border-radius: var(--radius-md);
  padding: 11px 14px; font-size: 15px; color: var(--text);
  font-family: var(--font-body); outline: none; font-weight: 400;
  transition: border-color .18s, box-shadow .18s; width: 100%;
}
.form-row input:focus, .form-row select:focus, .dob-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,164,40,0.08);
}
.form-row input::placeholder { color: var(--muted); }
.form-row select option { background: var(--bg-3); color: var(--text); }
.field-error { font-size: 12px; color: #f87171; display: block; font-weight: 400; }
.field-invalid input, .field-invalid select { border-color: #f87171 !important; }
.form-error { font-size: 13px; color: #f87171; margin-top: 8px; display: block; min-height: 18px; font-weight: 400; }
.form-success { font-size: 14px; color: #4ade80; margin-top: 8px; display: block; font-weight: 700; min-height: 18px; }
.form-footer { font-size: 11px; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.6; font-weight: 400; }
.form-footer a { color: var(--gold); text-decoration: underline; }
.dob-hint { color: var(--muted); font-weight: 400; }
.dob-grid { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px; }
.dob-error { font-size: 12px; color: #f87171; display: block; margin-top: 4px; }
.dob-row.dob-invalid select { border-color: #f87171 !important; }
.age-actions { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.age-reject-btn {
  background: none; border: none; cursor: pointer; color: var(--muted);
  font-size: 13px; text-align: center; padding: 8px; font-family: var(--font-body); transition: color .18s;
}
.age-reject-btn:hover { color: var(--text); }
.age-legal { font-size: 11px; color: var(--muted); text-align: center; line-height: 1.6; opacity: 0.55; }

/* ══════════════════════════════════
   SPIN WHEEL MODAL
══════════════════════════════════ */
.wheel-wrap { display: flex; align-items: center; justify-content: center; padding: 16px 0; position: relative; }
.wheel-pointer {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent; border-right: 10px solid transparent;
  border-top: 18px solid var(--gold); z-index: 10;
  filter: drop-shadow(0 0 6px var(--gold-glow));
}
.wheel {
  width: 240px; height: 240px; border-radius: 50%;
  background: conic-gradient(
    rgba(232,164,40,0.9) 0deg 45deg, rgba(12,8,0,0.8) 45deg 90deg,
    rgba(255,180,60,0.7) 90deg 135deg, rgba(12,8,0,0.8) 135deg 180deg,
    rgba(232,164,40,0.9) 180deg 225deg, rgba(12,8,0,0.8) 225deg 270deg,
    rgba(255,100,48,0.7) 270deg 315deg, rgba(12,8,0,0.8) 315deg 360deg
  );
  border: 1px solid var(--border);
  position: relative;
  transition: transform 4s cubic-bezier(0.2, 0.8, 0.3, 1);
  box-shadow: 0 0 40px rgba(232,164,40,0.15);
}
.wheel-label {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  top: calc(50% - 25px - 68px);
  left: calc(50% - 25px);
  font-size: 11px; font-weight: 800; color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9);
  transform-origin: 25px calc(25px + 68px);
  z-index: 5; pointer-events: none;
}

/* ══════════════════════════════════
   COOKIE BANNER
══════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: rgba(12,8,0,0.97); border-top: 1px solid var(--border);
  backdrop-filter: blur(18px); padding: 16px 24px;
}
.cookie-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-text { font-size: 13px; color: var(--muted); flex: 1; line-height: 1.55; font-weight: 400; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cookie-dismiss { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 22px; line-height: 1; padding: 4px; transition: color .18s; }
.cookie-dismiss:hover { color: var(--text); }

/* ══════════════════════════════════
   MOBILE STICKY CTA
══════════════════════════════════ */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  padding: 12px 16px 14px;
  background: rgba(12,8,0,0.97); border-top: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .how-header { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .tiers-grid .tier-card { transform: none !important; }
  .proof-inner { grid-template-columns: 80px 1fr; gap: 20px; }
  .proof-deco { font-size: 120px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* Mobile nav — VANGUARD fullscreen overlay */
  .site-nav {
    display: flex;
    opacity: 0; visibility: hidden; pointer-events: none;
    position: fixed; inset: 0; z-index: 300;
    background: rgba(12,8,0,0.97); backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 8px;
    transition: opacity .35s ease, visibility .35s;
  }
  .site-nav.open { opacity: 1; visibility: visible; pointer-events: all; }
  .site-nav a {
    font-family: var(--font-display); font-size: 52px;
    letter-spacing: 0.08em; color: var(--text); text-align: center;
    padding: 10px 0; transition: color .18s;
  }
  .site-nav a:hover { color: var(--gold); text-decoration: none; }

  .nav-close-btn {
    display: flex !important;
    position: absolute; top: 24px; right: 24px;
    background: none; border: 1px solid var(--border); cursor: pointer;
    color: var(--muted); width: 40px; height: 40px;
    align-items: center; justify-content: center; border-radius: 8px;
    transition: all .18s;
  }
  .nav-close-btn:hover { color: var(--text); border-color: var(--gold); }

  .hamburger { display: flex; }
  .live-badge { display: none; }

  .hero-body { padding: 80px 24px 36px; }
  .hero-headline { font-size: clamp(72px, 18vw, 100px); }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 45%; }
  .hero-stat-div { display: none; }

  .features-strip { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border-dim); }
  .feature-card:last-child { border-bottom: none; }

  .how-header { grid-template-columns: 1fr; }
  .how-steps { border-radius: var(--radius-lg); }
  .how-step { grid-template-columns: 72px 1fr 32px; }
  .step-num { font-size: 48px; padding: 24px 16px; }
  .step-body { padding: 24px 20px; }
  .step-title { font-size: 26px; }

  .proof-inner { grid-template-columns: 1fr; }
  .proof-deco { display: none; }
  .proof-quote { font-size: clamp(20px, 6vw, 28px); }

  .games-head { flex-direction: column; align-items: flex-start; }
  .games-head, .games-grid { padding: 0 20px; }
  .section-inner { padding: 0 20px; }
  .wrap { padding: 0 20px; }
  .how-steps { margin: 0; border-radius: var(--radius-lg); }

  .mobile-sticky { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-meta { flex-direction: column; align-items: flex-start; }

  .final-heading { font-size: clamp(56px, 14vw, 80px); }
}

/* ══════════════════════════════════
   GAME PAGE  (game.html)
══════════════════════════════════ */
.game-header {
  background: rgba(12,8,0,0.98);
  border-bottom: 1px solid var(--border-dim);
  height: var(--hh);
  display: flex; align-items: center;
  position: relative; z-index: 100;
}
.game-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--ember), transparent);
}
.game-header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.game-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; padding: 7px 16px;
  background: var(--surface); border: 1px solid var(--border-dim);
  border-radius: 6px; transition: all .15s;
}
.game-back:hover { color: var(--gold); border-color: var(--border); text-decoration: none; }
.game-main { display: flex; flex-direction: column; height: calc(100vh - var(--hh)); }
.game-meta-bar {
  padding: 12px 24px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--border-dim);
  background: var(--bg-2);
}
.gm-left { display: flex; flex-direction: column; gap: 2px; }
.gm-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.gm-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.06em; color: var(--text); }
.gm-sub { font-size: 12px; color: var(--muted); font-weight: 400; }
.game-frame-wrap { flex: 1; position: relative; background: #000; }
.game-loader {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; background: var(--bg); transition: opacity .3s;
}
.game-loader.done { opacity: 0; pointer-events: none; }
.game-spinner {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border-dim); border-top-color: var(--gold);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.game-loader-text { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.game-frame { width: 100%; height: 100%; border: 0; display: block; }
