/* SpinParty Hub — Redesign "Inferno" */

:root {
  /* ── backgrounds */
  --bg:       #0C0808;
  --bg-2:     #131010;
  --bg-3:     #1A1616;
  --bg-4:     #211D1D;
  --surface:  #1A1616;
  --surface-2:#221E1E;

  /* ── borders */
  --border:   rgba(255,255,255,0.07);
  --border-2: rgba(255,255,255,0.12);

  /* ── brand colours */
  --red:      #FF1A00;
  --red-dim:  #CC1500;
  --red-deep: #9A1000;
  --amber:    #FF8800;
  --gold:     #FFD000;
  --gold-dim: #E0B800;
  --green:    #00CC6A;
  --white:    #FFFFF5;
  --off-white:#F5F0EA;
  --muted:    #887870;
  --link:     #FF8800;

  /* ── typography */
  --font-display: 'Oswald', 'Barlow Condensed', Impact, sans-serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── layout */
  --radius:   6px;
  --radius-md:10px;
  --radius-lg:14px;
  --maxw:     1200px;
  --hh:       66px;          /* header height */
}

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

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

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

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

/* ────────────────────────────────────────────────────────────────
   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; letter-spacing: 0.02em;
  text-decoration: none; transition: all .18s ease;
  white-space: nowrap; user-select: none;
}

.btn-red {
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  padding: 13px 28px; font-size: 15px;
}
.btn-red:hover  { background: #FF3322; transform: translateY(-1px); text-decoration: none; color: #fff; }
.btn-red:active { transform: translateY(0); background: var(--red-dim); }

.btn-red-lg { padding: 16px 36px; font-size: 16px; letter-spacing: 0.03em; }

.btn-gold {
  background: var(--gold);
  color: #000;
  border-radius: var(--radius);
  padding: 13px 28px; font-size: 15px; font-weight: 800;
}
.btn-gold:hover  { background: #FFE240; transform: translateY(-1px); text-decoration: none; color: #000; }
.btn-gold-lg { padding: 16px 36px; font-size: 16px; }

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 12px 24px; font-size: 14px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.28); color: #fff; text-decoration: none; }

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

/* ────────────────────────────────────────────────────────────────
   HEADER
──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--hh);
}
/* red top accent */
.site-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--amber) 60%, transparent 100%);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; gap: 28px;
}
.brand {
  display: inline-flex; align-items: center; gap: 0;
  text-decoration: none; flex-shrink: 0;
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1;
  color: var(--white);
}
.brand-mark em { color: var(--red); font-style: normal; }
.brand-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); margin: 0 0 0 6px; flex-shrink: 0;
  box-shadow: 0 0 8px var(--red);
  animation: blink-dot 2.4s ease-in-out infinite;
}
@keyframes blink-dot {
  0%,80%,100% { opacity: 1; }
  40% { opacity: 0.3; }
}
.site-nav {
  display: flex; gap: 2px; margin-left: 16px;
}
.site-nav a {
  color: var(--muted); font-size: 13.5px; font-weight: 600;
  padding: 6px 12px; border-radius: var(--radius);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color .15s, background .15s;
}
.site-nav a:hover { color: var(--white); background: var(--surface); }

.header-end {
  margin-left: auto; display: flex; align-items: center; gap: 14px;
}
.live-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--muted); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 7px var(--green);
  animation: blink-dot 2.4s ease-in-out infinite;
}
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--white); padding: 4px;
}

/* ────────────────────────────────────────────────────────────────
   PROMO BAR
──────────────────────────────────────────────────────────────── */
.promo-bar {
  background: var(--red); overflow: hidden;
  padding: 8px 0;
}
.promo-bar-inner {
  display: flex; align-items: center; gap: 0;
  animation: tape-run 30s linear infinite;
  white-space: nowrap; width: max-content;
}
.promo-bar-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 32px;
  font-family: var(--font-display); font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; font-weight: 400;
}
.promo-bar-sep { color: rgba(255,255,255,0.35); }
.promo-star { color: var(--gold); }

/* ────────────────────────────────────────────────────────────────
   HERO  (split layout)
──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.hero-bg-lines {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,26,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,26,0,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, black 0%, transparent 70%);
}
.hero-bg-glow {
  position: absolute; right: -100px; top: -60px; z-index: 0;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,26,0,0.08) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}

/* ── left column */
.hero-left {}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.hero-eyebrow-tag {
  background: rgba(255,26,0,0.15);
  border: 1px solid rgba(255,26,0,0.3);
  color: var(--red);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 4px; padding: 3px 10px;
}
.hero-eyebrow-count {
  font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 5px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 700; letter-spacing: 0.02em; line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-headline .red { color: var(--red); }
.hero-headline .gold { color: var(--gold); }

.hero-offer {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 28px;
}
.offer-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.offer-text {}
.offer-amount {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; letter-spacing: 0.04em; line-height: 1;
  color: var(--gold);
}
.offer-label {
  font-size: 13px; color: var(--muted); margin-top: 2px;
}

.hero-body {
  font-size: 15px; color: var(--off-white); line-height: 1.7;
  max-width: 480px; margin-bottom: 30px;
}
.hero-body strong { color: var(--white); }

.hero-ctas {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.trust-chip {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.trust-chip-val {
  color: var(--white); font-weight: 700;
}

/* ── right column */
.hero-right {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 360px;
}
.hero-watermark {
  font-family: var(--font-display);
  font-size: clamp(100px, 16vw, 200px);
  font-weight: 700; letter-spacing: 0.02em; line-height: 0.85;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  user-select: none; pointer-events: none;
  position: absolute; z-index: 0;
}
.hero-stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  width: 100%;
}
.hero-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  transition: border-color .18s;
}
.hero-stat-card:hover { border-color: var(--border-2); }
.hero-stat-card.accent-red { border-top: 2px solid var(--red); }
.hero-stat-card.accent-gold { border-top: 2px solid var(--gold); }
.hero-stat-card.accent-amber { border-top: 2px solid var(--amber); }
.hero-stat-card.accent-green { border-top: 2px solid var(--green); }
.stat-value {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700; letter-spacing: 0.02em; line-height: 1;
  color: var(--white); margin-bottom: 4px;
}
.stat-value.red { color: var(--red); }
.stat-value.gold { color: var(--gold); }
.stat-value.green { color: var(--green); }
.stat-label {
  font-size: 11px; color: var(--muted); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ── promo strip below hero */
.hero-promo-strip {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 36px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.promo-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .18s, transform .18s;
}
.promo-tile:hover { border-color: var(--border-2); transform: translateY(-2px); }
.promo-tile-hot { border-top: 2px solid var(--gold); }
.promo-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
  background: rgba(255,26,0,0.1);
  border: 1px solid rgba(255,26,0,0.2);
  border-radius: 3px; padding: 2px 8px;
  align-self: flex-start;
}
.promo-tile-hot .promo-badge { color: var(--gold); background: rgba(255,208,0,0.1); border-color: rgba(255,208,0,0.25); }
.promo-title { font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.2; }
.promo-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ────────────────────────────────────────────────────────────────
   TICKER
──────────────────────────────────────────────────────────────── */
.ticker {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 11px 0;
  display: flex; align-items: center;
}
.ticker-label-block {
  flex-shrink: 0;
  background: var(--red);
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; display: flex; align-items: center; gap: 7px;
  margin-right: 0;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-scroll {
  display: flex; align-items: center; gap: 0;
  animation: tape-run 42s linear infinite;
  white-space: nowrap;
}
@keyframes tape-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 24px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
}
.ticker-val { color: var(--gold); font-weight: 700; }
.ticker-sep { color: rgba(255,255,255,0.1); }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 5px var(--green); }

/* ────────────────────────────────────────────────────────────────
   SECTION COMMONS
──────────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
  display: block;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700; letter-spacing: 0.04em; line-height: 1.0;
  text-transform: uppercase;
  color: var(--white); margin-bottom: 12px;
}
.section-heading .hl { color: var(--red); }
.section-heading .hl-gold { color: var(--gold); }
.section-sub {
  font-size: 16px; color: var(--muted); line-height: 1.65;
}
.section-head { max-width: 640px; margin-bottom: 48px; }

/* ────────────────────────────────────────────────────────────────
   GAMES
──────────────────────────────────────────────────────────────── */
.games-section { padding: 70px 0; }
.games-section .section-inner { max-width: 100%; padding: 0; }

.games-head {
  max-width: var(--maxw); margin: 0 auto 28px; padding: 0 24px;
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.games-head-left { max-width: 480px; }

.filter-tabs { display: flex; gap: 2px; flex-wrap: wrap; }
.filter-tab {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 7px 16px; font-size: 13px; font-weight: 600;
  color: var(--muted); cursor: pointer;
  transition: all .15s;
  font-family: var(--font-body);
}
.filter-tab:hover { color: var(--white); border-color: var(--border-2); }
.filter-tab.active {
  background: var(--red); border-color: var(--red);
  color: #fff;
}

.games-rail-outer { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; overflow: hidden; }
.games-rail { overflow-x: auto; overflow-y: visible; padding: 4px 0 20px; scrollbar-width: none; }
.games-rail::-webkit-scrollbar { display: none; }
.games-grid { display: flex; gap: 14px; width: max-content; }

.game-card {
  flex-shrink: 0; width: 180px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer;
  transition: border-color .18s, transform .18s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  --i: 0;
  animation: fade-up .35s ease both;
  animation-delay: calc(var(--i) * 0.04s);
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.game-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  text-decoration: none; color: inherit;
}

.game-thumb {
  width: 100%; height: 140px;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.game-cover {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.game-card:hover .game-cover { transform: scale(1.06); }
.game-initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.game-overlay {
  position: absolute; inset: 0;
  background: rgba(12,8,8,0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
}
.game-card:hover .game-overlay { opacity: 1; }
.game-play-btn {
  background: var(--red); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  border-radius: var(--radius); padding: 8px 18px;
}

.game-info { padding: 10px 12px 12px; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.game-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber);
}
.game-title { font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.25; }
.game-meta  { font-size: 11px; color: var(--muted); }

/* ────────────────────────────────────────────────────────────────
   WINNERS BAND
──────────────────────────────────────────────────────────────── */
.winners-band {
  background: var(--red-deep);
  border-top: 1px solid rgba(255,26,0,0.3);
  border-bottom: 1px solid rgba(255,26,0,0.3);
  display: flex; align-items: center; overflow: hidden; padding: 12px 0;
}
.wins-label {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 7px;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-display); font-size: 12px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8);
}
.wins-track { flex: 1; overflow: hidden; }
.wins-scroll {
  display: flex; align-items: center;
  animation: tape-run 32s linear infinite;
  white-space: nowrap;
}
.win-item {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0 22px; font-size: 13px; color: rgba(255,255,255,0.7);
}
.win-amount { color: var(--gold); font-weight: 700; }
.win-name   { color: rgba(255,255,255,0.9); font-weight: 600; }
.win-sep    { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.25); flex-shrink: 0; }
.wins-stat  {
  flex-shrink: 0; padding: 0 18px;
  border-left: 1px solid rgba(255,255,255,0.1);
  text-align: right;
}
.wins-stat-num { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1; }
.wins-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }

/* ────────────────────────────────────────────────────────────────
   HOW IT WORKS  (horizontal timeline)
──────────────────────────────────────────────────────────────── */
.how-section { background: var(--bg-2); padding: 80px 0; }
.how-timeline {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
}
.how-timeline::before {
  content: '';
  position: absolute; top: 30px; left: calc(100%/6); right: calc(100%/6);
  height: 1px; background: var(--border-2);
  z-index: 0;
}
.how-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  padding: 0 20px; text-align: center;
}
.step-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--red); letter-spacing: 0.04em;
  box-shadow: 0 0 20px rgba(255,26,0,0.25);
}
.step-body {}
.step-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--white); margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.step-desc .hl { color: var(--gold); font-weight: 700; }

/* ────────────────────────────────────────────────────────────────
   TIERS
──────────────────────────────────────────────────────────────── */
.tiers-section { padding: 80px 0; }
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .18s, transform .18s;
}
.tier-card:hover { transform: translateY(-2px); }
.tier-header {
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--border);
}
.tier-roman {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 700; letter-spacing: 0.06em;
  line-height: 1; margin-bottom: 8px;
}
.tier-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white);
}
.tier-body { padding: 16px 22px 20px; }
.tier-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.tier-tag {
  display: inline-block; margin-top: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 3px; padding: 3px 10px;
}
/* tier variants */
.tier-bronze .tier-roman { color: #CD7F32; }
.tier-bronze .tier-header { border-top: 3px solid #CD7F32; }
.tier-bronze .tier-tag { color: #CD7F32; background: rgba(205,127,50,0.1); border: 1px solid rgba(205,127,50,0.25); }
.tier-silver .tier-roman { color: #C0C8D8; }
.tier-silver .tier-header { border-top: 3px solid #C0C8D8; }
.tier-silver .tier-tag { color: #C0C8D8; background: rgba(192,200,216,0.08); border: 1px solid rgba(192,200,216,0.2); }
.tier-gold   .tier-roman { color: var(--gold); }
.tier-gold   .tier-header { border-top: 3px solid var(--gold); }
.tier-gold   .tier-tag { color: var(--gold); background: rgba(255,208,0,0.1); border: 1px solid rgba(255,208,0,0.25); }

/* ────────────────────────────────────────────────────────────────
   FAQ
──────────────────────────────────────────────────────────────── */
.faq-section { background: var(--bg-2); padding: 80px 0; }
.faq-layout {
  display: grid; grid-template-columns: 340px 1fr; gap: 60px;
  align-items: start;
}
.faq-intro {}
.faq-intro-note { font-size: 14px; color: var(--muted); margin-top: 14px; }
.faq-intro-note a { color: var(--amber); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .18s;
}
.faq-item:hover { border-color: var(--border-2); }
.faq-item[open] { border-color: rgba(255,26,0,0.3); }
.faq-item[open] > summary { color: var(--white); }

.faq-item summary {
  padding: 16px 18px; cursor: pointer; list-style: none;
  font-size: 14px; font-weight: 600; color: var(--off-white);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--muted); transition: transform .2s, color .2s;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--red); }
.faq-answer {
  padding: 0 18px 16px;
  font-size: 14px; color: var(--muted); line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-answer a { color: var(--amber); }

/* ────────────────────────────────────────────────────────────────
   FINAL CTA
──────────────────────────────────────────────────────────────── */
.final-section {
  padding: 100px 0; position: relative; overflow: hidden;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.final-bg-number {
  position: absolute;
  right: -20px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 300px; font-weight: 700; letter-spacing: 0.02em;
  line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  user-select: none; pointer-events: none;
  z-index: 0;
}
.final-inner {
  position: relative; z-index: 1;
  max-width: 700px;
}
.final-kicker {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
  background: rgba(255,26,0,0.1);
  border: 1px solid rgba(255,26,0,0.25);
  border-radius: 3px; padding: 3px 10px;
  margin-bottom: 16px;
}
.final-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700; letter-spacing: 0.04em; line-height: 0.95;
  text-transform: uppercase;
  color: var(--white); margin-bottom: 16px;
}
.final-heading .hl { color: var(--red); }
.final-heading .hl-gold { color: var(--gold); }
.final-body { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.final-body strong { color: var(--gold); }
.final-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.final-online { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.final-age { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ────────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-mark { font-family: var(--font-display); font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.footer-brand-mark em { color: var(--red); font-style: normal; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-size: 11px; 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 a { font-size: 14px; color: var(--muted); transition: color .15s; }
.footer-col ul a:hover { color: var(--white); text-decoration: none; }

.rg-age {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--red);
  background: rgba(255,26,0,0.1);
  border: 1px solid rgba(255,26,0,0.25);
  border-radius: 3px; padding: 3px 9px;
  margin-bottom: 10px;
}
.rg-lede { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.rg-entries { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.rg-entries li { font-size: 13px; }
.rg-hotline { color: var(--red); font-weight: 700; }
.rg-ext { color: var(--muted); }
.rg-ext:hover { color: var(--white); }

.footer-bottom { padding: 20px 0 28px; }
.footer-excluded {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 10px;
}
.excl-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); background: rgba(255,26,0,0.1); border: 1px solid rgba(255,26,0,0.2);
  border-radius: 3px; padding: 2px 8px;
}
.excl-list { font-size: 12px; color: var(--muted); }
.footer-disclaimer { font-size: 12px; color: var(--muted); line-height: 1.65; max-width: 820px; margin-bottom: 18px; }
.footer-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-build { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--muted); }

/* ────────────────────────────────────────────────────────────────
   MOBILE STICKY
──────────────────────────────────────────────────────────────── */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  padding: 10px 16px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

/* ────────────────────────────────────────────────────────────────
   MODALS
──────────────────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.modal-backdrop.active { opacity: 1; pointer-events: all; }

.modal-panel {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-top: 2px solid var(--red);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  width: 100%; max-width: 420px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
  max-height: 92vh; overflow-y: auto;
  transform: scale(0.97) translateY(8px);
  transition: transform .22s ease;
}
.modal-backdrop.active .modal-panel { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--muted); font-size: 16px; line-height: 1;
  transition: background .15s, color .15s;
}
.modal-close:hover { background: var(--surface-2); color: var(--white); }

.modal-title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--white); margin-bottom: 6px;
}
.modal-title .hl-gold { color: var(--gold); -webkit-text-fill-color: var(--gold); }
.modal-lede { font-size: 14px; color: var(--muted); margin-bottom: 22px; }

/* Form */
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.form-row input, .form-row select {
  width: 100%; padding: 11px 13px;
  background: var(--surface); border: 1px solid var(--border-2);
  border-radius: var(--radius); color: var(--white);
  font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none; appearance: none;
}
.form-row input::placeholder { color: var(--muted); }
.form-row input:focus, .form-row select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(255,26,0,0.15);
}
.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23887870' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px; cursor: pointer;
}
.form-row select option { background: var(--bg-3); }
.field-error { font-size: 12px; color: var(--red); margin-top: 4px; min-height: 16px; }
.form-row.field-invalid input, .form-row.field-invalid select { border-color: var(--red); }
.form-row.field-invalid input:focus { box-shadow: 0 0 0 2px rgba(255,26,0,0.15); }

.dob-hint { font-weight: 400; color: var(--muted); text-transform: none; letter-spacing: 0; }
.dob-grid { display: grid; grid-template-columns: 1fr 0.8fr 1.3fr; gap: 7px; }
.dob-error { font-size: 12px; color: var(--red); margin-top: 4px; min-height: 16px; }
.dob-row.dob-invalid .dob-grid select { border-color: var(--red); }

.form-submit { width: 100%; margin-top: 4px; padding: 14px; font-size: 15px; letter-spacing: 0.04em; }
.form-error   { font-size: 13px; color: var(--red); margin-top: 10px; }
.form-success { font-size: 13px; color: var(--green); margin-top: 10px; }
.form-footer  { font-size: 11px; color: var(--muted); margin-top: 12px; line-height: 1.6; }
.form-footer a { color: var(--amber); }

.age-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.age-reject-btn {
  width: 100%; padding: 12px; background: transparent;
  border: 1px solid var(--border-2); border-radius: var(--radius);
  color: var(--muted); font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: color .15s, border-color .15s;
}
.age-reject-btn:hover { color: var(--white); border-color: var(--border-2); }
.age-legal { font-size: 11px; color: var(--muted); margin-top: 14px; }

/* Spin wheel */
.wheel-wrap { display: flex; align-items: center; justify-content: center; padding: 16px 0; position: relative; }
.wheel-pointer {
  position: absolute; top: -2px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 18px solid var(--gold);
  z-index: 10;
  filter: drop-shadow(0 0 6px rgba(255,208,0,0.7));
}
.wheel {
  width: 220px; height: 220px; border-radius: 50%;
  position: relative;
  background: conic-gradient(
    #FF1A00 0deg 45deg, #CC1500 45deg 90deg,
    #FF8800 90deg 135deg, #CC6E00 135deg 180deg,
    #FFD000 180deg 225deg, #CC9A00 225deg 270deg,
    #FF1A00 270deg 315deg, #9A1000 315deg 360deg
  );
  border: 3px solid rgba(255,208,0,0.4);
  box-shadow: 0 0 24px rgba(255,26,0,0.3), 0 0 48px rgba(255,26,0,0.1);
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}
.wheel::after {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  background: repeating-conic-gradient(transparent 0deg, transparent 44.5deg, rgba(0,0,0,0.25) 44.5deg, rgba(0,0,0,0.25) 45deg);
}
.wheel::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-3); border: 2px solid rgba(255,208,0,0.5);
  z-index: 10;
}
.wheel-label {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  top: calc(50% - 25px - 58px);
  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 + 58px);
  z-index: 5; pointer-events: none;
}
#spin-result { text-align: center; font-size: 15px; color: var(--off-white); min-height: 24px; padding: 0 8px; margin-top: 4px; }
#spin-result strong { color: var(--gold); font-weight: 700; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(20,16,16,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
}
.cookie-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 13px; color: var(--muted); line-height: 1.5; }
.cookie-text a { color: var(--amber); }
.cookie-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.cookie-dismiss { background: none; border: none; color: var(--muted); font-size: 20px; cursor: pointer; padding: 2px; line-height: 1; transition: color .15s; }
.cookie-dismiss:hover { color: var(--white); }

/* ────────────────────────────────────────────────────────────────
   LEGAL PAGES
──────────────────────────────────────────────────────────────── */
.legal-page { padding: 72px 0 100px; }
.legal-page .wrap { max-width: 760px; }
.legal-page h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.legal-meta { font-size: 13px; color: var(--muted); margin-bottom: 48px; }
.legal-body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin: 36px 0 10px; color: var(--white); }
.legal-body p, .legal-body li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin-bottom: 14px; }
.legal-body a { color: var(--amber); }
.legal-body strong { color: var(--white); }

/* ────────────────────────────────────────────────────────────────
   GAME PAGE
──────────────────────────────────────────────────────────────── */
.game-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--hh); display: flex; align-items: center;
}
.game-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--amber), transparent);
}
.game-header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.game-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  text-decoration: none;
  padding: 7px 14px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: all .15s;
}
.game-back:hover { color: var(--white); border-color: var(--border-2); 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);
}
.gm-left { display: flex; flex-direction: column; gap: 2px; }
.gm-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); }
.gm-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--white); }
.gm-sub { font-size: 13px; color: var(--muted); }
.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: 16px; background: var(--bg); transition: opacity .3s;
}
.game-loader.done { opacity: 0; pointer-events: none; }
.game-spinner {
  width: 38px; height: 38px; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--red);
  animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.game-loader-text { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.game-frame { width: 100%; height: 100%; border: 0; display: block; }

/* ────────────────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: span 2; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-promo-strip { grid-template-columns: 1fr; }
  .how-timeline { grid-template-columns: 1fr; gap: 32px; }
  .how-timeline::before { display: none; }
  .tiers-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --hh: 58px; }
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--hh); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 10px 16px; z-index: 99;
  }
  .hamburger { display: flex; }
  .live-badge { display: none; }
  .mobile-sticky { display: block; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: span 2; }
  .hero { padding: 48px 0 36px; }
  .final-section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: span 1; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .final-ctas { flex-direction: column; align-items: stretch; }
  .modal-panel { padding: 24px 18px; }
  .footer-meta { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
