/* Golden Spin Fest — Warm Casino Luxury
 * Art deco casino aesthetic: warm dark burgundy, amber gold, crimson red.
 * Completely different from v1's cold space theme.
 */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Backgrounds — warm dark, not cold blue */
  --bg:      #0a0510;
  --bg-2:    #0f0818;
  --bg-3:    #140c22;
  --panel:   #1a1030;
  --panel-2: #211840;

  /* Borders */
  --border:    rgba(245, 166, 35, 0.14);
  --border-2:  rgba(245, 166, 35, 0.30);
  --border-red: rgba(220, 38, 38, 0.28);

  /* Text — warm cream, not cold white-blue */
  --text:  #F5EAD0;
  --muted: #8A7A62;
  --dim:   #3D3020;

  /* Accent palette — amber/crimson, not purple/cyan */
  --amber:      #F5A623;
  --amber-2:    #FF8F00;
  --amber-light:#FFC847;
  --crimson:    #D90429;
  --crimson-2:  #EF233C;
  --emerald:    #06D6A0;
  --cream:      #FFF8EE;

  /* Shadows */
  --shadow-amber:   0 0 24px rgba(245,166,35,0.35), 0 0 48px rgba(245,166,35,0.15);
  --shadow-crimson: 0 0 20px rgba(217,4,41,0.35), 0 0 40px rgba(217,4,41,0.12);
  --shadow-card:    0 4px 32px rgba(0,0,0,0.5);

  /* Layout */
  --maxw:     1200px;
  --radius:   8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.tabular { font-variant-numeric: tabular-nums; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--cream);
}
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; }

.text-amber   { color: var(--amber); }
.text-crimson { color: var(--crimson-2); }
.text-emerald { color: var(--emerald); }

/* Suit colors */
.suit     { color: var(--text); }
.suit-red { color: var(--crimson-2); }

/* ============================================================
   BUTTONS
   ============================================================ */

/* Primary — solid crimson fill */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  border: none;
  background: var(--crimson);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--crimson-2);
  box-shadow: var(--shadow-crimson);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}
.btn-primary:active { transform: translateY(0); }

/* Amber primary variant */
.btn-amber {
  background: var(--amber);
  color: #1a0a00;
}
.btn-amber:hover {
  background: var(--amber-2);
  box-shadow: var(--shadow-amber);
  color: #1a0a00;
}

/* Outline — amber border */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: 1.5px solid var(--amber);
  background: transparent;
  color: var(--amber);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(245,166,35,0.1);
  box-shadow: var(--shadow-amber);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--amber);
}

/* Text link button */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
  background: none;
  border: none;
  padding: 0;
}
.btn-text:hover { color: var(--amber); text-decoration: none; }

/* Sizes */
.btn-sm  { padding: 8px 16px; font-size: 13px; }
.btn-lg  { padding: 14px 32px; font-size: 15px; border-radius: var(--radius-lg); }
.btn-xl  { padding: 16px 40px; font-size: 16px; border-radius: var(--radius-lg); font-weight: 700; }
.btn-block { width: 100%; justify-content: center; }

.btn-icon { width: 20px; height: 12px; flex-shrink: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 5, 16, 0.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand-emblem {
  font-size: 22px;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(245,166,35,0.6));
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-name em {
  font-style: italic;
  color: var(--amber);
}

/* Nav */
.nav { display: flex; gap: 2px; margin-left: 16px; }
.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); text-decoration: none; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }

.header-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

/* Live pulse dot */
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
  animation: live-pulse 2.2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6,214,160,0.6); }
  50%       { box-shadow: 0 0 0 5px rgba(6,214,160,0); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Art deco diamond grid background */
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(45deg,  rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
/* Radial warm glow center */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(180,30,50,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 40%, rgba(245,120,0,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(10,5,16,0.8) 0%, transparent 60%);
}

/* Hero split layout */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 24px 20px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Hero left */
.hero-left { max-width: 580px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.eyebrow-suit {
  color: var(--amber);
  font-size: 14px;
  filter: drop-shadow(0 0 5px rgba(245,166,35,0.5));
}
.eyebrow-text {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber);
  font-weight: 500;
}

/* Hero heading */
.hero-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.hero-pre {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.hero-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--amber-light);
  background: linear-gradient(135deg, #fff8d0 0%, var(--amber-light) 35%, var(--amber) 65%, var(--amber-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 20px rgba(245,166,35,0.4));
  animation: num-shimmer 5s ease-in-out infinite;
}
@keyframes num-shimmer {
  0%, 100% { filter: drop-shadow(0 2px 16px rgba(245,166,35,0.3)); }
  50%       { filter: drop-shadow(0 2px 36px rgba(245,166,35,0.6)); }
}
.hero-unit {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--text);
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.fn-link { color: var(--muted); font-size: 0.55em; vertical-align: super; }

.hero-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--text); }

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

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}
.hero-trust .suit { font-size: 12px; }

.hero-fn {
  font-size: 11px;
  color: var(--dim);
  max-width: 440px;
  line-height: 1.6;
}
.hero-fn a { color: var(--muted); }

/* Hero right — casino chip display */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.chip-display {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbit rings */
.chip-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.chip-orbit-1 {
  inset: 0;
  border-color: rgba(245,166,35,0.5);
  animation: orbit-spin 20s linear infinite;
  box-shadow: 0 0 24px rgba(245,166,35,0.2), inset 0 0 24px rgba(245,166,35,0.05);
}
.chip-orbit-2 {
  inset: 16px;
  border-color: rgba(245,166,35,0.25);
  border-style: dashed;
  animation: orbit-spin 30s linear infinite reverse;
}
.chip-orbit-3 {
  inset: -20px;
  border-color: rgba(245,166,35,0.1);
  animation: orbit-spin 40s linear infinite;
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Chip face */
.chip-face {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--panel-2), var(--panel));
  border: 6px solid var(--amber);
  box-shadow: var(--shadow-amber), inset 0 0 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
}

.chip-top-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}
.chip-amount {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--amber-light);
  text-shadow: 0 0 20px rgba(245,166,35,0.5);
}
.chip-bottom-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--amber);
}
.chip-divider {
  width: 60px;
  height: 1px;
  background: rgba(245,166,35,0.3);
  margin: 4px 0;
}
.chip-sub {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--dim);
  color: rgba(245,166,35,0.4);
}

/* Chip notches (8 rectangular marks around the edge) */
.chip-notch {
  position: absolute;
  width: 10px;
  height: 28px;
  background: var(--amber);
  border-radius: 3px;
  opacity: 0.7;
}
.cn1 { top: 4px;   left: 50%; transform: translateX(-50%); }
.cn2 { bottom: 4px;left: 50%; transform: translateX(-50%); }
.cn3 { left: 4px;  top: 50%;  transform: translateY(-50%) rotate(90deg); }
.cn4 { right: 4px; top: 50%;  transform: translateY(-50%) rotate(90deg); }
.cn5 { top: 22px;  left: 22px; transform: rotate(45deg); }
.cn6 { top: 22px;  right: 22px;transform: rotate(-45deg); }
.cn7 { bottom: 22px; left: 22px; transform: rotate(-45deg); }
.cn8 { bottom: 22px; right: 22px; transform: rotate(45deg); }

/* Ground reflection */
.chip-reflection {
  width: 200px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  margin-top: -10px;
}

/* Live bar */
.hero-live-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0 0;
  margin: 0 24px;
}

/* Promo row */
.promo-row {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 32px;
}

.promo-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg);
  transition: background 0.2s;
}
.promo-card:hover { background: var(--bg-2); }
.promo-featured { background: var(--bg-2); }
.promo-featured:hover { background: var(--bg-3); }

.promo-suit {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(245,166,35,0.5));
  color: var(--amber);
}

.promo-body { flex: 1; min-width: 0; }
.promo-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.promo-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 2px;
}
.promo-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ============================================================
   STATS TAPE
   ============================================================ */
.stats-tape {
  background: var(--crimson);
  overflow: hidden;
  padding: 9px 0;
}
.tape-track {
  display: inline-flex;
  gap: 24px;
  white-space: nowrap;
  animation: tape-scroll 44s linear infinite;
}
@keyframes tape-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tape-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.tape-sep { color: rgba(255,255,255,0.3); }
.t-suit { color: #fff; font-size: 12px; }
.t-key { color: rgba(255,255,255,0.55); }
.t-val { color: #fff; font-weight: 700; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 88px 24px; }
.section-inner { max-width: var(--maxw); margin: 0 auto; }

.section-head {
  text-align: center;
  margin-bottom: 52px;
}
.section-ornament {
  display: block;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--amber);
  margin-bottom: 18px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin: 14px auto 0;
  line-height: 1.7;
}

/* ============================================================
   GAMES
   ============================================================ */
.games-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.game-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.18s;
}
.filter-btn:hover { border-color: var(--amber); color: var(--amber); }
.filter-btn.active {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Game tile — warm casino card style */
.game-tile {
  display: block;
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  animation: tile-in 0.35s ease backwards;
  animation-delay: calc(var(--i,0) * 0.04s);
}
@keyframes tile-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.game-tile:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,166,35,0.2);
  text-decoration: none;
}

.game-thumb {
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
  background: var(--panel-2);
}
.game-cover {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.game-tile:hover .game-cover { transform: scale(1.06); }

.thumb-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: rgba(245,166,35,0.2);
  letter-spacing: -0.02em;
}

.game-info { padding: 12px 14px 14px; }
.game-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--crimson);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 7px;
}
.game-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 4px;
  line-height: 1.3;
}
.game-meta {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,5,16,0.72);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.2s;
}
.game-tile:hover .play-overlay { opacity: 1; }
.play-pill {
  padding: 9px 22px;
  background: var(--crimson);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-crimson);
}

/* ============================================================
   WINNERS BAR
   ============================================================ */
.winners-bar {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 11px 24px;
}
.winners-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}
.winners-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--crimson-2);
  flex-shrink: 0;
  white-space: nowrap;
}
.win-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--crimson-2);
  flex-shrink: 0;
  animation: live-pulse 2s ease-in-out infinite;
}

.winners-track { flex: 1; overflow: hidden; }
.winners-marquee {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: tape-scroll 55s linear infinite;
}
.winner-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
}
.winner-item .wname { color: var(--text); font-weight: 600; }
.winner-item .wamt  { color: var(--amber); font-family: 'DM Mono', monospace; font-weight: 700; }
.winner-item .wgame { color: var(--muted); font-style: italic; }

.winners-stat { flex-shrink: 0; text-align: right; }
.stat-n { display: block; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; color: var(--amber); }
.stat-l { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 0.08em; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--bg); }

.how-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.how-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.6% + 14px);
  right: calc(16.6% + 14px);
  height: 1px;
  background: linear-gradient(to right, var(--amber), var(--amber-2), var(--amber));
  opacity: 0.3;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0 20px;
  animation: tile-in 0.5s ease backwards;
  animation-delay: calc(var(--step-i, 0) * 0.12s);
}

.step-node {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(245,166,35,0.2);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--amber);
}
.step-connector { display: none; }

.step-card { padding: 0 8px; }
.step-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--cream);
}
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.text-amber { color: var(--amber); font-weight: 600; }

/* ============================================================
   VIP TIERS
   ============================================================ */
.vip-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tier-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.tier-card:hover { transform: translateY(-3px); }

.tier-bronze:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.tier-silver {
  border-color: rgba(200,200,220,0.2);
}
.tier-silver:hover { box-shadow: 0 12px 40px rgba(200,200,220,0.08); }
.tier-gold {
  border-color: rgba(245,166,35,0.3);
  background: linear-gradient(160deg, var(--panel), rgba(245,100,0,0.06));
}
.tier-gold:hover {
  box-shadow: 0 12px 40px rgba(245,166,35,0.15);
  border-color: var(--border-2);
}

.tier-crown {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--amber);
  color: #1a0a00;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: 3px;
  white-space: nowrap;
}

.tier-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.tier-suit {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}
.tier-bronze .tier-suit  { color: #cd7f32; }
.tier-silver .tier-suit  { color: #c0c0d0; }
.tier-gold   .tier-suit  { color: var(--amber); filter: drop-shadow(0 0 8px rgba(245,166,35,0.5)); }

.tier-rank {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 3px;
}
.tier-name { font-size: 1.2rem; font-weight: 800; color: var(--cream); }

.tier-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.tier-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.tier-perks li::before {
  content: '◆';
  font-size: 8px;
  color: var(--amber);
  flex-shrink: 0;
}
.tier-gold .tier-perks li { color: var(--text); }

.tier-footer { margin-top: auto; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--bg); }

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.faq-intro .section-ornament { text-align: left; display: block; margin-bottom: 16px; }
.faq-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.1;
}
.faq-intro > p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.faq-contact { font-size: 14px; color: var(--muted); }
.faq-contact a { color: var(--amber); }

.faq-list { display: flex; flex-direction: column; gap: 4px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.18s;
}
.faq-item[open] { border-color: var(--border-2); }
.faq-item summary {
  padding: 18px 22px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '◆';
  font-size: 12px;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.25s;
  opacity: 0.5;
}
.faq-item[open] summary::after { transform: rotate(45deg); opacity: 1; }
.faq-item summary:hover { color: var(--amber); }
.faq-answer {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-answer a { color: var(--amber); }
.faq-answer strong { color: var(--text); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-2); border-top: 1px solid var(--border); }
.contact-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.contact-headline .section-ornament { text-align: left; display: block; margin-bottom: 16px; }
.contact-headline h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.1;
}
.contact-headline > p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.18s;
}
a.contact-card:hover { border-color: var(--amber); }
.contact-card-icon { font-size: 22px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.contact-card-body { display: flex; flex-direction: column; gap: 5px; }
.contact-card-body strong { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--text); }
.contact-card-body > span { font-size: 14px; color: var(--amber); }
.contact-card-body > span a { color: var(--amber); text-decoration: none; }
.contact-card-note { font-size: 12px !important; color: var(--muted) !important; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(180,20,40,0.22) 0%, transparent 65%),
    linear-gradient(to bottom, var(--bg-2), var(--bg));
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  font-size: 18px;
  color: var(--amber);
}
.cta-ornament .orn-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,166,35,0.4), transparent);
}
.cta-ornament span:not(.orn-line) { filter: drop-shadow(0 0 6px rgba(245,166,35,0.5)); }

.cta-inner h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.75;
}
.cta-inner p strong { color: var(--amber); }

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cta-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--muted);
}
.cta-disclaimer {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 24px 0;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.65; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: 13px; color: var(--muted); transition: color 0.15s; }
.footer-col li a:hover { color: var(--text); text-decoration: none; }

.rg-age {
  display: inline-flex;
  padding: 3px 10px;
  border: 1px solid rgba(217,4,41,0.4);
  border-radius: 3px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--crimson-2);
  margin-bottom: 10px;
}
.footer-col.footer-rg > p { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.rg-links { display: flex; flex-direction: column; gap: 6px; }
.rg-links li a { font-size: 12px; color: var(--muted); }
.rg-links li a:hover { color: var(--amber); text-decoration: none; }

.footer-bottom { padding: 28px 0; display: flex; flex-direction: column; gap: 14px; }

.footer-excl {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.exl-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  white-space: nowrap;
}
.exl-states {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--crimson-2);
  letter-spacing: 0.06em;
}

.footer-disclaimer {
  font-size: 12px; color: var(--muted);
  line-height: 1.75; max-width: 820px;
}
.footer-meta {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-meta p { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--dim); }
.footer-suits { letter-spacing: 0.3em; color: rgba(245,166,35,0.3) !important; }

/* ============================================================
   MOBILE CTA
   ============================================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 10px 16px;
  background: linear-gradient(to top, var(--bg) 60%, transparent);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,5,16,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}
.modal-backdrop.active { display: flex; animation: fade-in 0.2s ease; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--panel-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  animation: slide-up 0.22s ease;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}
@keyframes slide-up {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  color: var(--muted); font-size: 16px;
  cursor: pointer; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: rgba(255,255,255,0.06); color: var(--text); }

.modal h3 { font-size: 1.5rem; margin-bottom: 6px; }
.modal-sub,
.modal .modal-lede { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

/* Age gate */
#age-gate .modal { max-width: 400px; text-align: center; }
#age-gate .modal p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.age-buttons { display: flex; flex-direction: column; gap: 12px; }

/* Signup form */
#signup-form { display: flex; flex-direction: column; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.form-row input,
.form-row select {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
}
.form-row input::placeholder { color: var(--muted); }
.form-row input:focus,
.form-row select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}
.form-row.field-invalid input,
.form-row.field-invalid select { border-color: var(--crimson); }
.field-error { font-size: 12px; color: var(--crimson-2); margin-top: 4px; min-height: 18px; }

.dob-hint { color: var(--dim); font-size: 10px; }
.dob-grid { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px; }
.dob-select { width: 100%; }
.dob-error { font-size: 12px; color: var(--crimson-2); margin-top: 6px; min-height: 18px; }
.dob-row.dob-invalid select { border-color: var(--crimson); }

.form-error  { font-size: 13px; color: var(--crimson-2); min-height: 20px; margin-top: 8px; }
.form-success{ font-size: 14px; color: var(--emerald); min-height: 20px; margin-top: 8px; font-weight: 600; }
.form-fine   { font-size: 11px; color: var(--muted); margin-top: 12px; line-height: 1.6; }
.form-fine a { color: var(--amber); }

/* ============================================================
   SPIN MODAL
   ============================================================ */
.modal-spin { text-align: center; max-width: 380px; }
.modal-spin h3 { margin-bottom: 6px; }

.wheel-wrap { display: flex; justify-content: center; margin: 24px 0; }
.wheel-container { position: relative; width: 220px; height: 220px; }
.wheel-pointer {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--amber);
  z-index: 2;
  filter: drop-shadow(0 0 6px rgba(245,166,35,0.7));
}
.wheel {
  width: 220px; height: 220px; border-radius: 50%;
  background: conic-gradient(
    #2a1520 0deg 45deg, #1a0c14 45deg 90deg,
    #2a1520 90deg 135deg, #1a0c14 135deg 180deg,
    #2a1520 180deg 225deg, #1a0c14 225deg 270deg,
    #2a1520 270deg 315deg, #1a0c14 315deg 360deg
  );
  border: 4px solid var(--amber);
  box-shadow: var(--shadow-amber);
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}
.wheel-seg {
  position: absolute; top: 50%; left: 50%;
  transform-origin: 0 0;
  transform: rotate(calc(var(--wi) * 45deg + 22.5deg)) translateY(-80px) translateX(-50%) rotate(90deg);
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 13px;
  color: var(--amber);
  text-shadow: 0 0 6px rgba(245,166,35,0.6);
}
.spin-result { font-size: 16px; font-weight: 700; min-height: 28px; margin-bottom: 8px; }
.spin-result .amt { color: var(--amber); font-family: 'Playfair Display', serif; }
.modal-fine { font-size: 11px; color: var(--muted); margin-top: 12px; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--panel-2);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  animation: slide-up 0.3s ease;
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.cookie-inner p { font-size: 13px; color: var(--muted); flex: 1; min-width: 200px; }
.cookie-inner p a { color: var(--amber); }
.cookie-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cookie-link { font-size: 13px; color: var(--muted); }
.cookie-dismiss {
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  font-size: 16px; padding: 4px;
  transition: color 0.15s;
}
.cookie-dismiss:hover { color: var(--text); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { max-width: 740px; margin: 0 auto; padding: 80px 24px; }
.legal-page h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 8px; }
.legal-meta { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--muted); margin-bottom: 48px; }
.legal-page h2 {
  font-size: 1.3rem; margin-top: 40px; margin-bottom: 12px;
  border-left: 3px solid var(--amber);
  padding-left: 14px;
  color: var(--cream);
}
.legal-page p, .legal-page li { font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.legal-page ul, .legal-page ol { padding-left: 20px; margin-bottom: 16px; }
.legal-page ul { list-style: none; }
.legal-page ul li::before { content: '◆ '; color: var(--amber); font-size: 9px; }
.legal-page ol { list-style: decimal; }
.legal-page strong { color: var(--text); }
.legal-page a { color: var(--amber); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .chip-display { width: 240px; height: 240px; }
  .chip-face    { width: 180px; height: 180px; }
  .chip-amount  { font-size: 2.5rem; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-row { grid-template-columns: 1fr; gap: 0; }
  .promo-card + .promo-card { border-top: 1px solid var(--border); }
}

@media (max-width: 800px) {
  .tier-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .how-timeline { grid-template-columns: 1fr; gap: 32px; }
  .how-timeline::before { display: none; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .nav.nav-open {
    display: flex; flex-direction: column;
    position: fixed; inset: 64px 0 0;
    background: var(--bg); padding: 24px;
    z-index: 99; border-top: 1px solid var(--border);
  }
  .nav.nav-open a { font-size: 18px; padding: 14px 8px; }
  .nav-toggle { display: flex; }
  .header-live { display: none; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-cta { display: block; }
  .hero-ctas .btn-text { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-col.footer-rg { display: none; }
  .hero-inner { padding-top: 60px; }
  .section { padding: 64px 16px; }
  .modal { padding: 28px 20px; }
}

@media (max-width: 420px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-num { font-size: 3.8rem; }
}

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