/* SpinFlare Party — "PRISM" Design */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --font-heading: 'Helvetica Now Display Bold', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --bg:        #070b12;
  --bg-2:      #0c1220;
  --bg-3:      #111825;
  --bg-card:   rgba(255,255,255,0.03);
  --surface:   rgba(115,66,226,0.08);

  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(115,66,226,0.28);
  --border-3:  rgba(255,255,255,0.05);

  --accent:        #7342E2;
  --accent-light:  #9B6FFF;
  --accent-glow:   rgba(115,66,226,0.35);
  --accent-bg:     rgba(115,66,226,0.12);

  --text:      #E8EDF5;
  --text-soft: #C0CAD8;
  --muted:     #6B7A90;
  --link:      #9B6FFF;

  --gold:      #F5C53F;
  --gold-dim:  #C9A000;
  --green:     #22C55E;
  --red:       #EF4444;

  --radius:    8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  --maxw: 1280px;
  --hh:   72px;

  --shadow-accent: 0 4px 24px rgba(115,66,226,0.3);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.4);
}

*, *::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;
  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(--accent); color: #fff; padding: 8px 16px;
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ── HIGHLIGHT HELPERS ── */
.hl {
  background: linear-gradient(135deg, var(--accent-light), #c084fc);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hl-gold {
  background: linear-gradient(135deg, var(--gold), #f97316);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hl-m { color: var(--accent-light); }
.hl-c { color: var(--green); }

/* ════════════════════════════════════════
   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: 600; letter-spacing: 0.01em;
  text-decoration: none; transition: all .2s ease;
  white-space: nowrap; user-select: none; position: relative;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 28px; font-size: 15px;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { background: var(--accent-light); transform: scale(1.03); box-shadow: 0 6px 30px rgba(115,66,226,0.45); color: #fff; text-decoration: none; }
.btn-primary:active { transform: scale(0.97); }

.btn-primary-lg { padding: 17px 40px; font-size: 17px; }

.btn-cyan {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 28px; font-size: 15px; font-weight: 700;
  box-shadow: var(--shadow-accent);
}
.btn-cyan:hover { background: var(--accent-light); transform: scale(1.03); color: #fff; text-decoration: none; }
.btn-cyan:active { transform: scale(0.97); }
.btn-cyan-lg { padding: 17px 40px; font-size: 17px; }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 14px 28px; font-size: 15px;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--border-2); color: var(--text); background: rgba(115,66,226,0.1); text-decoration: none; }

.btn-block { width: 100%; }

/* ════════════════════════════════════════
   PROMO BAR
════════════════════════════════════════ */
.promo-bar {
  background: rgba(115,66,226,0.1);
  border-bottom: 1px solid var(--border-2);
  overflow: hidden; height: 36px;
  display: flex; align-items: center;
  position: relative; z-index: 100;
}
.promo-bar-inner {
  display: flex; gap: 0; white-space: nowrap;
  animation: promoScroll 30s linear infinite;
}
@keyframes promoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.promo-bar-item {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-soft);
  padding: 0 28px;
}
.promo-star { color: var(--accent-light); }
.promo-bar-sep { color: var(--border-2); }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  height: var(--hh);
  background: rgba(7,11,18,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 20px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.brand {
  font-family: var(--font-heading); font-weight: 700; font-size: 21px;
  color: var(--text); text-decoration: none; flex-shrink: 0;
  display: flex; align-items: center; gap: 10px; letter-spacing: -0.02em;
}
.brand em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.brand-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
.site-nav { display: flex; gap: 2px; margin-left: auto; }
.site-nav a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 8px 14px; border-radius: var(--radius);
  transition: all .2s; letter-spacing: 0.01em; text-decoration: none;
}
.site-nav a:hover { color: var(--text); background: var(--surface); }

.header-end { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.live-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500; color: var(--muted);
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hamburger {
  display: none; background: none; border: 1px solid var(--border);
  cursor: pointer; color: var(--text); padding: 6px 8px;
  border-radius: var(--radius); transition: border-color .2s;
}
.hamburger:hover { border-color: var(--border-2); }
#nav-toggle[aria-expanded="true"] { border-color: var(--border-2); }
#nav-toggle[aria-expanded="true"] rect:nth-child(1) {
  transform-origin: 11px 5px;
  transform: rotate(45deg);
  transition: transform .3s;
}
#nav-toggle[aria-expanded="true"] rect:nth-child(2) {
  opacity: 0; transition: opacity .2s;
}
#nav-toggle[aria-expanded="true"] rect:nth-child(3) {
  transform-origin: 11px 17px;
  transform: rotate(-45deg);
  transition: transform .3s;
}
#nav-toggle rect { transition: transform .3s, opacity .2s; }

/* ══════════════════════════════════════════════════════════
   HERO — number-first editorial layout
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(7,11,18,0.93) 0%, rgba(7,11,18,0.75) 50%, rgba(7,11,18,0.88) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 64px 56px;
  align-items: center;
}

/* ── Left column: number ── */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 60px;
  border-right: 1px solid var(--border);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}
.hero-hl-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-hl-main {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero-hl-accent {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--accent-light);
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(115,66,226,0.12);
  border: 1px solid rgba(115,66,226,0.3);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 420px;
}

/* ── Right column: CTAs ── */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  gap: 28px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.trust-chip {
  background: rgba(255,255,255,0.06);
  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(--accent-light); }
.trust-chip-val { font-weight: 700; color: var(--accent-light); }

.hero-stat-stack {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.hero-mini-stat {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-mini-divider {
  width: 1px; align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
}
.hero-mini-val {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--accent-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-mini-lbl {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Fade-up animation (kept for other elements) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up { animation: fadeUp .6s cubic-bezier(0.22,1,0.36,1) both; }
.anim-delay-1 { animation-delay: .1s; }
.anim-delay-2 { animation-delay: .2s; }
.anim-delay-3 { animation-delay: .32s; }
.anim-delay-4 { animation-delay: .44s; }

/* Stats strip (kept for legacy compatibility) */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: stretch;
  border-top: 1px solid var(--border);
  background: rgba(7,11,18,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); margin: 14px 0; flex-shrink: 0; }
.hero-stat-val {
  font-family: var(--font-heading);
  font-size: 42px; color: var(--accent-light); line-height: 1;
  letter-spacing: -0.02em;
}
.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);
}
.feature-card {
  padding: 28px 32px; border-right: 1px solid var(--border);
  transition: background .22s; position: relative;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0; transition: opacity .22s;
}
.feature-card:hover { background: rgba(115,66,226,0.06); }
.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: rgba(115,66,226,0.12); color: var(--accent-light);
  border: 1px solid rgba(115,66,226,0.25);
}
.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-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  height: 44px; display: flex; align-items: center;
  overflow: hidden; position: relative; z-index: 1;
}
.ticker-label-block {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-light); padding: 0 20px;
  border-right: 1px solid var(--border); white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-scroll {
  display: flex; white-space: nowrap;
  animation: tickerRun 40s linear infinite;
}
@keyframes tickerRun {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item { font-size: 13px; color: var(--text-soft); padding: 0 24px; }
.ticker-dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--green); margin-right: 8px; vertical-align: middle; }
.ticker-val { font-weight: 700; color: var(--accent-light); }
.ticker-sep { color: var(--border); }

/* ════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-kicker {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-light);
  background: var(--accent-bg); border: 1px solid var(--border-2);
  padding: 5px 16px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-heading); font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 16px;
}
.section-heading .hl {
  background: linear-gradient(135deg, var(--accent-light), #c084fc);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-heading .hl-gold {
  background: linear-gradient(135deg, var(--gold), #f97316);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ════════════════════════════════════════
   GAMES
════════════════════════════════════════ */
.games-section { padding: 80px 0; position: relative; z-index: 1; }
.games-head {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 40px; flex-wrap: wrap;
}
.games-head-left .section-kicker { display: block; margin-bottom: 10px; }
.games-head-left .section-heading { margin-bottom: 0; text-align: left; }

.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 7px 18px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: all .2s; font-family: var(--font-body);
}
.filter-tab:hover { color: var(--text); border-color: var(--border-2); background: var(--surface); }
.filter-tab.active {
  background: var(--accent);
  border-color: transparent; color: #fff;
  box-shadow: 0 0 16px rgba(115,66,226,0.35);
}

.games-rail-outer { position: relative; }
.games-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.game-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: all .25s; cursor: pointer;
  animation: cardIn .4s ease both;
  animation-delay: calc(var(--i, 0) * 40ms);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.game-card:hover { border-color: var(--border-2); transform: translateY(-4px); text-decoration: none; color: inherit; box-shadow: 0 8px 32px rgba(115,66,226,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.06); }
.game-initials {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 28px; font-weight: 700;
  color: rgba(255,255,255,0.4); z-index: 1;
}
.game-overlay {
  position: absolute; inset: 0;
  background: rgba(115,66,226,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s; z-index: 2;
}
.game-card:hover .game-overlay { opacity: 1; }
.game-play-btn {
  background: #fff; color: var(--accent); font-weight: 700; font-family: var(--font-body);
  padding: 10px 22px; border-radius: var(--radius-pill); font-size: 13px; letter-spacing: 0.02em;
}

.game-info { padding: 12px 14px; display: flex; flex-direction: column; gap: 3px; }
.game-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-light);
}
.game-title { font-family: var(--font-heading); font-size: 14px; font-weight: 700; }
.game-meta { font-size: 11px; color: var(--muted); }

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

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.how-section { padding: 100px 0; position: relative; z-index: 1; }
.how-timeline {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
  position: relative;
}
.how-timeline::before {
  content: '';
  position: absolute; top: 32px;
  left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0.3;
}
.how-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 20px; position: relative; z-index: 2;
  transition: all .3s;
}
.how-step:hover .step-circle {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(115,66,226,0.3);
  background: rgba(115,66,226,0.15);
}
.step-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 240px; margin: 0 auto; }
.step-desc .hl { color: var(--accent-light); font-weight: 600; -webkit-text-fill-color: initial; background: none; }

/* ════════════════════════════════════════
   VIP TIERS
════════════════════════════════════════ */
.tiers-section { padding: 100px 0; position: relative; z-index: 1; }
.tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .3s; position: relative;
}
.tier-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.tier-spark::before   { background: linear-gradient(90deg, #CD7F32, #F4A460); }
.tier-blaze::before   { background: linear-gradient(90deg, #A0A0A0, #E8E8E8); }
.tier-inferno::before { background: linear-gradient(90deg, var(--gold), var(--accent)); }
.tier-inferno { border-color: var(--border-2); box-shadow: 0 0 32px rgba(115,66,226,0.08); }
.tier-card:hover { transform: translateY(-4px); border-color: var(--border-2); }

.tier-header {
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.tier-roman {
  font-family: var(--font-heading); font-size: 38px; font-weight: 700;
  line-height: 1; opacity: 0.1;
}
.tier-name { font-family: var(--font-heading); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.tier-spark .tier-name   { color: #CD7F32; }
.tier-blaze .tier-name   { color: #C0C0C0; }
.tier-inferno .tier-name {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.tier-body { padding: 20px 28px 24px; }
.tier-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.tier-perks { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tier-perks li { font-size: 13px; color: var(--text-soft); display: flex; align-items: center; gap: 8px; }
.tier-perks li::before { content: '✦'; color: var(--accent-light); font-size: 9px; flex-shrink: 0; }
.tier-inferno .tier-perks li::before { color: var(--gold); }
.tier-tag {
  display: inline-block; margin-top: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.05); color: var(--muted);
}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.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: 40px; }
.faq-intro .section-kicker { display: block; margin-bottom: 12px; }
.faq-intro-note { font-size: 15px; color: var(--muted); margin-top: 16px; line-height: 1.7; }
.faq-intro-note a { color: var(--accent-light); }

.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--border-2); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; cursor: pointer; list-style: none;
  font-weight: 500; font-size: 15px;
  transition: color .2s;
}
.faq-item summary:hover { color: var(--accent-light); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s; color: var(--muted); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--accent-light); }
.faq-answer { padding: 0 20px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-answer a { color: var(--accent-light); }

/* ════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════ */
.final-section {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(115,66,226,0.08) 0%, rgba(7,11,18,0) 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden; z-index: 1;
}
.final-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(115,66,226,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.final-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.final-kicker {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green);
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3);
  padding: 5px 16px; border-radius: var(--radius-pill); margin-bottom: 20px;
}
.final-heading {
  font-family: var(--font-heading); font-size: clamp(44px, 6.5vw, 72px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.0; margin-bottom: 20px;
}
.final-heading .hl-gold { background: linear-gradient(135deg, var(--gold), #f97316); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.final-heading .hl { background: linear-gradient(135deg, var(--accent-light), #c084fc); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.final-body { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 500px; margin: 0 auto 36px; }
.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: 8px; margin-bottom: 12px; }
.final-age { font-size: 11px; color: var(--muted); opacity: 0.5; }
.final-bg-number {
  position: absolute; font-family: var(--font-heading); font-size: 200px; font-weight: 700;
  opacity: 0.02; color: var(--accent); right: -60px; bottom: -40px;
  pointer-events: none; line-height: 1; letter-spacing: -0.06em;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px; 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-heading); font-size: 18px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
.footer-brand-mark em { font-style: normal; background: linear-gradient(135deg, var(--accent), var(--accent-light)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent-light); text-decoration: none; }
.rg-age { display: inline-block; font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--accent-light); margin-bottom: 8px; }
.rg-lede { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.rg-entries { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rg-hotline { font-weight: 700; color: var(--accent-light) !important; font-size: 13px; }
.rg-ext { font-size: 12px; color: var(--muted) !important; }

.footer-bottom { border-top: 1px solid var(--border-3); 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.08em; text-transform: uppercase; background: rgba(115,66,226,0.1); color: var(--accent-light); border: 1px solid var(--border-2); padding: 3px 10px; border-radius: 4px; }
.excl-list { font-size: 12px; color: var(--muted); }
.footer-disclaimer { font-size: 11px; color: var(--muted); opacity: 0.5; line-height: 1.8; margin-bottom: 16px; max-width: 900px; }
.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.5; }
.footer-build { font-size: 11px; color: var(--muted); opacity: 0.5; display: flex; gap: 16px; }

/* ════════════════════════════════════════
   MODALS
════════════════════════════════════════ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,11,18,0.92);
  backdrop-filter: blur(16px);
  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-lg);
  padding: 36px; width: 100%; max-width: 480px;
  max-height: 90svh; overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-card), 0 0 40px rgba(115,66,226,0.15);
}
.modal-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--muted); cursor: pointer; font-size: 18px;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: rgba(115,66,226,0.2); color: var(--text); border-color: var(--border-2); }

.modal-title {
  font-family: var(--font-heading); font-size: 24px; font-weight: 700;
  margin-bottom: 8px; letter-spacing: -0.02em; text-align: center;
}
.modal-title .hl-gold { background: linear-gradient(135deg, var(--gold), #f97316); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.modal-lede { font-size: 14px; color: var(--muted); margin-bottom: 24px; text-align: center; }

/* Form */
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-row label { font-size: 12px; font-weight: 600; color: var(--text-soft); letter-spacing: 0.02em; }
.form-row input,
.form-row select,
.dob-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 11px 14px;
  font-size: 14px; color: var(--text); font-family: var(--font-body);
  outline: none; transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-row input:focus,
.form-row select:focus,
.dob-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(115,66,226,0.15);
}
.form-row input::placeholder { color: var(--muted); }
.form-row select option { background: var(--bg-3); color: var(--text); }

.field-error { font-size: 11px; color: var(--red); display: block; margin-top: 2px; }
.field-invalid input,
.field-invalid select { border-color: var(--red) !important; }
.form-error { font-size: 12px; color: var(--red); margin-top: 8px; display: block; min-height: 16px; }
.form-success { font-size: 13px; color: var(--green); margin-top: 8px; display: block; font-weight: 600; min-height: 16px; }
.form-footer { font-size: 11px; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.5; }
.form-footer a { color: var(--accent-light); }

.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: 11px; color: var(--red); display: block; margin-top: 4px; }
.dob-row.dob-invalid select { border-color: var(--red) !important; }

/* Age gate */
.age-panel { text-align: center; max-width: 420px; }
.age-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent-bg);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent-light);
  box-shadow: 0 0 24px var(--accent-glow);
}
.age-big-num {
  font-family: var(--font-heading);
  font-size: 84px; line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text); margin-bottom: 10px;
}
.age-plus { color: var(--accent-light); }
.age-title {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.age-body {
  font-size: 14px; color: var(--text-soft);
  line-height: 1.65; margin-bottom: 4px;
}
.age-actions { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 16px; }
.age-reject-btn { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 13px; text-align: center; padding: 8px; }
.age-reject-btn:hover { color: var(--text); }
.age-legal { font-size: 11px; color: var(--muted); text-align: center; line-height: 1.6; opacity: 0.65; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: rgba(11,15,25,0.97); border-top: 1px solid var(--border);
  backdrop-filter: blur(12px); 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.5; }
.cookie-text a { color: var(--accent-light); }
.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; }
.cookie-dismiss:hover { color: var(--text); }

/* Mobile sticky */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  padding: 12px 16px;
  background: rgba(7,11,18,0.96); border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .how-timeline { grid-template-columns: 1fr; }
  .how-timeline::before { display: none; }
  .tiers-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* mobile nav: right-side slide-in sheet */
  .site-nav {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(88vw, 320px);
    background: var(--bg-3);
    border-left: 1px solid var(--border);
    z-index: 300;
    padding: 80px 24px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -16px 0 48px rgba(0,0,0,0.5);
    overflow-y: auto;
  }
  .site-nav::before {
    content: '';
    position: fixed;
    inset: 0;
    right: min(88vw, 320px);
    background: rgba(7,11,18,0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .site-nav.open {
    transform: translateX(0);
  }
  .site-nav.open::before {
    opacity: 1;
  }
  .site-nav a {
    font-size: 18px; padding: 14px 16px; border-radius: var(--radius);
    border-bottom: 1px solid var(--border);
    font-weight: 500;
  }
  .site-nav a:last-child { border-bottom: none; }

  .hamburger { display: flex; }
  .live-badge { display: none; }
  .hero-content { grid-template-columns: 1fr; padding: 90px 24px 40px; gap: 40px; }
  .hero-left { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 36px; }
  .hero-right { padding-left: 0; }
  .hero-hl-main, .hero-hl-accent { font-size: clamp(42px, 11vw, 72px); }
  .hero-ctas { flex-direction: column; }
  .features-strip { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-card:last-child { border-bottom: none; }
  .games-head { flex-direction: column; align-items: flex-start; }
  .mobile-sticky { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-meta { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════
   GAME PAGE
════════════════════════════════════════ */
.game-header {
  background: rgba(7,11,18,0.97);
  border-bottom: 1px solid var(--border);
  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(--accent), var(--accent-light), 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: 13px; font-weight: 500; color: var(--muted);
  text-decoration: none; padding: 7px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-pill); transition: all .15s;
}
.game-back:hover { color: var(--text); 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);
  background: rgba(115,66,226,0.04);
}
.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(--accent-light); }
.gm-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.gm-sub { font-size: 12px; 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: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border); border-top-color: var(--accent);
  animation: spin .75s linear infinite;
  box-shadow: 0 0 16px rgba(115,66,226,0.3);
}
@keyframes spin { to { transform: rotate(360deg); } }
.game-loader-text { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.game-frame { width: 100%; height: 100%; border: 0; display: block; }
