/* ============================================================
   shardspin – style.css
   Theme: Gold Crystal · Deep Obsidian · VIP Luxury
   ============================================================ */

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

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-dark:     #030507;
  --bg-soft:     #07090F;
  --surface:     #0C1019;
  --surface-2:   #111720;
  --surface-3:   #172130;

  /* Borders */
  --border:        rgba(255, 255, 255, 0.055);
  --border-strong: rgba(201, 168, 76, 0.30);
  --border-gold:   rgba(232, 198, 96, 0.22);

  /* Accent – Luxury Gold */
  --accent-primary: #C9A84C;
  --accent-bright:  #E8C660;
  --accent-deep:    #7A6214;
  --accent-dim:     rgba(201, 168, 76, 0.10);
  --accent-glow:    rgba(201, 168, 76, 0.35);

  /* Secondary – Emerald (wins / positive states) */
  --emerald:       #10B981;
  --emerald-bright:#34D399;
  --emerald-dim:   rgba(16, 185, 129, 0.10);
  --emerald-glow:  rgba(16, 185, 129, 0.28);

  /* Alias for legacy "orange" class references */
  --orange:       #E8C660;
  --orange-bright:#F5D070;
  --orange-deep:  #C9A84C;
  --orange-dim:   rgba(232, 198, 96, 0.10);
  --orange-glow:  rgba(232, 198, 96, 0.28);

  /* Text */
  --text-primary:   #F3EDD8;
  --text-secondary: #A89870;
  --text-muted:     #5C5038;
  --text-accent:    #E8C660;

  /* Radius */
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-soft:   0 4px 20px rgba(0, 0, 0, 0.55);
  --shadow-card:   0 8px 32px rgba(0, 0, 0, 0.65), 0 1px 0 rgba(255,255,255,0.030);
  --shadow-strong: 0 16px 48px rgba(0, 0, 0, 0.75);

  /* Glow */
  --glow-soft:   0 0 20px rgba(201, 168, 76, 0.22);
  --glow-gold:   0 0 28px rgba(232, 198, 96, 0.28);
  --glow-strong: 0 0 44px rgba(201, 168, 76, 0.52);

  /* Glass */
  --glass-bg:     rgba(12, 16, 25, 0.75);
  --glass-border: rgba(201, 168, 76, 0.09);

  /* Typography */
  --font-display: 'Cinzel', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-alt:     'Space Grotesk', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Easing */
  --ease-out:  cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(ellipse 55% 38% at 8% -4%,  rgba(201, 168, 76, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 92%  4%,  rgba(232, 198, 96, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 42% at 50% 118%, rgba(122, 98, 20, 0.12) 0%, transparent 55%),
    linear-gradient(170deg, #030507 0%, #07090F 50%, #020305 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 168, 76, 0.022) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ── AURORA AMBIENT ─────────────────────────────────────── */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: auroraDrift 22s ease-in-out infinite alternate;
}
.aurora-blob-1 {
  width: 540px; height: 540px;
  top: -200px; left: -130px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.22), transparent 65%);
  animation-duration: 28s;
}
.aurora-blob-2 {
  width: 420px; height: 420px;
  top: 35%; right: -90px;
  background: radial-gradient(circle, rgba(232, 198, 96, 0.09), transparent 65%);
  animation-duration: 20s; animation-delay: -8s;
}
.aurora-blob-3 {
  width: 500px; height: 500px;
  bottom: -180px; left: 30%;
  background: radial-gradient(circle, rgba(122, 98, 20, 0.18), transparent 65%);
  animation-duration: 32s; animation-delay: -15s;
}
@keyframes auroraDrift {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(40px,-30px) scale(1.06); }
  66%  { transform: translate(-20px,40px) scale(0.97); }
  100% { transform: translate(20px,-10px) scale(1.03); }
}

/* ── TRUST RIBBON ──────────────────────────────────────── */
.trust-ribbon {
  position: relative; z-index: 10;
  background: rgba(7, 9, 15, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 7px 0;
  overflow: hidden;
}
.trust-ribbon::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 198, 96, 0.30), transparent);
  pointer-events: none;
}
.trust-ribbon-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-alt); font-size: 11px; font-weight: 500;
  color: var(--text-secondary); letter-spacing: 0.02em;
  white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; color: var(--accent-bright); }
.trust-sep { color: rgba(201, 168, 76, 0.18); font-size: 13px; }

/* ── NAVIGATION ────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(3, 5, 7, 0.90);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(120deg, rgba(201, 168, 76, 0.55), transparent 35%, rgba(232, 198, 96, 0.35));
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none;
}
.nav-logo img { width: 34px; height: 34px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, #FFF0A0 0%, #E8C660 45%, #C9A84C 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-text em { font-style: normal; color: var(--accent-bright); -webkit-text-fill-color: var(--accent-bright); }
.nav-pill {
  font-family: var(--font-alt); font-size: 10px; font-weight: 700;
  color: var(--accent-bright); border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 2px 8px; border-radius: var(--radius-full); letter-spacing: 0.06em;
  background: rgba(201, 168, 76, 0.08);
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-alt); font-size: 13.5px; font-weight: 500;
  color: var(--text-secondary); padding: 6px 12px; border-radius: var(--radius);
  transition: color 220ms var(--ease-out), background 220ms var(--ease-out);
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: rgba(201, 168, 76, 0.08);
}
.nav-links a.active { color: var(--accent-bright); }
.nav-cta-wrap { margin-left: 12px; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; margin-left: auto;
  padding: 4px; border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
}
.nav-toggle span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--text-secondary);
  transition: transform 300ms var(--ease-out), opacity 220ms;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 28px;
  font-family: var(--font-alt); font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; color: #0C0A06;
  background: linear-gradient(120deg, #F5D070 0%, #C9A84C 55%, #9A7A28 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px -10px rgba(201, 168, 76, 0.65),
              0 4px 0 rgba(255,255,255,0.06),
              inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 180ms var(--ease-snap), box-shadow 220ms var(--ease-out), filter 220ms;
  cursor: pointer; border: none; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), transparent 55%);
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 18px 36px -10px rgba(201, 168, 76, 0.75),
              0 4px 0 rgba(255,255,255,0.06),
              inset 0 1px 0 rgba(255,255,255,0.18);
  filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0) scale(0.975); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 11px 26px;
  font-family: var(--font-alt); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--accent-bright);
  background: rgba(201, 168, 76, 0.06);
  border: 1.5px solid rgba(201, 168, 76, 0.32);
  border-radius: var(--radius-lg);
  transition: background 220ms var(--ease-out), border-color 220ms, transform 180ms var(--ease-snap), box-shadow 220ms;
  cursor: pointer; white-space: nowrap;
}
.btn-ghost:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.55);
  transform: translateY(-1px);
  box-shadow: var(--glow-soft);
}
.btn-ghost:active { transform: translateY(0); }

.btn-orange {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 28px;
  font-family: var(--font-alt); font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; color: #0C0A06;
  background: linear-gradient(120deg, #F5D070 0%, #E8C660 45%, #C9A84C 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 26px -8px rgba(232, 198, 96, 0.55),
              inset 0 1px 0 rgba(255,255,255,0.14);
  transition: transform 180ms var(--ease-snap), box-shadow 220ms, filter 220ms;
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-orange:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 16px 34px -8px rgba(232, 198, 96, 0.65);
  filter: brightness(1.06);
}
.btn-orange:active { transform: translateY(0) scale(0.975); }

.btn-sm { padding: 8px 18px; font-size: 13px; }

.cta-microcopy {
  display: block; font-size: 11.5px; color: var(--text-muted);
  margin-top: 6px; letter-spacing: 0.02em; text-align: center;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  padding: 100px 24px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(201, 168, 76, 0.08), transparent 60%),
    radial-gradient(ellipse 40% 35% at 15% 50%, rgba(201, 168, 76, 0.05), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-alt); font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(201, 168, 76, 0.09);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 5px 14px; border-radius: var(--radius-full);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700; line-height: 1.10;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero-title span {
  background: linear-gradient(120deg, #FFF0A0 0%, #E8C660 40%, #C9A84C 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title em {
  font-style: normal; display: block;
  font-size: 0.62em; font-weight: 500;
  color: var(--text-secondary);
  background: none; -webkit-text-fill-color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.hero-sub {
  font-size: 16px; color: var(--text-secondary);
  max-width: 480px; line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-alt); font-size: 12px;
  color: var(--text-muted);
}
.hero-trust-item svg { color: var(--accent-bright); }

/* Preview card */
.hero-preview {
  background: var(--glass-bg);
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card), 0 0 60px rgba(201, 168, 76, 0.08);
  position: relative; overflow: hidden;
}
.hero-preview::before {
  content: '';
  position: absolute; top: -1px; left: 16px; right: 16px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 198, 96, 0.60), transparent);
}
.hero-preview::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201, 168, 76, 0.06), transparent 60%);
  pointer-events: none;
}
.preview-label {
  font-family: var(--font-alt); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(201, 168, 76, 0.09);
  border: 1px solid rgba(201, 168, 76, 0.22);
  padding: 3px 10px; border-radius: var(--radius-full);
  display: inline-block; margin-bottom: 22px;
  position: relative; z-index: 1;
}
.preview-reels {
  display: flex; gap: 10px;
  justify-content: center; margin-bottom: 18px;
  position: relative; z-index: 1;
}
.preview-reel {
  width: 60px; height: 72px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  transition: box-shadow 300ms, border-color 300ms;
}
.preview-reel.lit {
  border-color: var(--accent-bright);
  box-shadow: 0 0 18px rgba(232, 198, 96, 0.55);
}
.preview-balance-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.preview-bal-label {
  font-family: var(--font-alt); font-size: 11px;
  color: var(--text-muted); letter-spacing: 0.04em;
}
.preview-bal-value {
  font-family: var(--font-mono); font-size: 20px; font-weight: 700;
  color: var(--accent-bright);
  text-shadow: 0 0 14px rgba(232, 198, 96, 0.45);
}
.security-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: var(--radius); margin-top: 12px;
  position: relative; z-index: 1;
}
.security-badge svg { color: var(--accent-bright); flex-shrink: 0; }
.security-badge-text { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.security-badge-text strong { color: var(--text-secondary); font-size: 12px; display: block; }

/* ── SECTION COMMON ─────────────────────────────────────── */
section { position: relative; z-index: 1; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-alt); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.22);
  padding: 5px 14px; border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px); font-weight: 700;
  line-height: 1.16; letter-spacing: -0.01em;
  color: var(--text-primary); margin-bottom: 14px;
}
.section-title span {
  background: linear-gradient(120deg, #FFF0A0 0%, #E8C660 45%, #C9A84C 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 15.5px; color: var(--text-secondary);
  max-width: 540px; line-height: 1.7;
}
.section-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
  border-radius: 2px; margin: 16px 0;
}
.section-header { margin-bottom: 44px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-header.centered .section-divider { margin: 16px auto; }
.section-header.centered .section-label { display: inline-flex; }

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── GAMES SECTION ─────────────────────────────────────── */
.games-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, transparent, rgba(7, 9, 15, 0.6) 30%, rgba(7, 9, 15, 0.6) 70%, transparent);
}
.games-section-inner { max-width: 1200px; margin: 0 auto; }
.games-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 36px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.game-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none;
  transition: transform 220ms var(--ease-out), box-shadow 220ms, border-color 220ms;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.30);
}
.game-thumb {
  position: relative; height: 130px;
  background: var(--game-gradient, linear-gradient(135deg, #172130, #07090F));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.game-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55));
}
.game-thumb-icon { font-size: 42px; position: relative; z-index: 1; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6)); }
.game-tag {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-family: var(--font-alt); font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; padding: 3px 8px; border-radius: var(--radius-full);
}
.game-tag.hot { background: rgba(220, 38, 38, 0.85); color: #FEF2F2; }
.game-tag.new { background: rgba(201, 168, 76, 0.90); color: #1a1200; }
.game-tag.vip { background: rgba(16, 185, 129, 0.85); color: #F0FDF4; }
.game-play-pill {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%) translateY(6px);
  z-index: 2; opacity: 0;
  font-family: var(--font-alt); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; color: #0C0A06;
  background: rgba(201, 168, 76, 0.92);
  padding: 4px 14px; border-radius: var(--radius-full);
  transition: opacity 200ms, transform 200ms var(--ease-out);
  white-space: nowrap;
}
.game-card:hover .game-play-pill { opacity: 1; transform: translateX(-50%) translateY(0); }
.game-meta { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.game-name { font-family: var(--font-alt); font-size: 13.5px; font-weight: 700; color: var(--text-primary); }
.game-genre { font-size: 12px; color: var(--text-muted); }
.game-stat-row {
  display: flex; gap: 10px; margin-top: 6px;
  font-size: 11px; color: var(--text-muted);
}
.game-stat-row strong { color: var(--text-accent); }

/* ── BONUS STRIP ────────────────────────────────────────── */
.bonus-strip {
  padding: 72px 24px;
  background: linear-gradient(135deg, rgba(7, 9, 15, 0.97) 0%, rgba(12, 16, 25, 0.99) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.bonus-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 198, 96, 0.45), transparent);
}
.bonus-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201, 168, 76, 0.05), transparent 70%);
  pointer-events: none;
}
.bonus-strip-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.bonus-urgency {
  font-family: var(--font-alt); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 6px;
}
.bonus-urgency::before { content: '◆ '; }
.bonus-layout {
  display: grid; grid-template-columns: 1fr auto;
  align-items: start; gap: 40px;
}
.bonus-timer-wrap {
  display: flex; align-items: center; gap: 14px; margin: 14px 0 22px;
  flex-wrap: wrap;
}
.timer-label {
  font-family: var(--font-alt); font-size: 12px;
  color: var(--text-muted); letter-spacing: 0.04em;
}
#bonus-timer {
  font-family: var(--font-mono); font-size: 28px; font-weight: 700;
  color: var(--accent-bright);
  text-shadow: 0 0 18px rgba(232, 198, 96, 0.55);
  transition: color 300ms;
}
#bonus-timer.low-time { color: #F87171; text-shadow: 0 0 18px rgba(248, 113, 113, 0.55); }
.bonus-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
#bonus-toast {
  font-size: 12.5px; color: var(--text-secondary);
  opacity: 0; transition: opacity 300ms;
  font-family: var(--font-alt);
}
#bonus-toast.show { opacity: 1; }
.bonus-tiers {
  display: flex; flex-direction: column; gap: 12px;
  min-width: 260px;
}
.bonus-tier {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 220ms, box-shadow 220ms;
}
.bonus-tier:hover { border-color: rgba(201, 168, 76, 0.32); box-shadow: var(--glow-soft); }
.bonus-tier-name { font-family: var(--font-alt); font-size: 13px; font-weight: 700; color: var(--text-primary); }
.bonus-tier-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.bonus-tier-amount {
  font-family: var(--font-mono); font-size: 16px; font-weight: 700;
  background: linear-gradient(120deg, #FFF0A0, #E8C660);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ABOUT SECTION ──────────────────────────────────────── */
.about-section { padding: 80px 24px; }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 32px;
}
.stat-box {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 220ms, box-shadow 220ms;
}
.stat-box:hover { border-color: rgba(201, 168, 76, 0.28); box-shadow: var(--glow-soft); }
.stat-value {
  font-family: var(--font-mono); font-size: 26px; font-weight: 700;
  background: linear-gradient(120deg, #FFF0A0, #E8C660);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: var(--text-muted); font-family: var(--font-alt); }
.about-commitments { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.commitment-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 220ms, box-shadow 220ms;
}
.commitment-item:hover { border-color: rgba(201, 168, 76, 0.25); box-shadow: var(--glow-soft); }
.commitment-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.commitment-title { font-family: var(--font-alt); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.commitment-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── FEATURES GRID ──────────────────────────────────────── */
.features-section { padding: 80px 24px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-top: 10px;
}
.feature-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 220ms var(--ease-out), border-color 220ms, box-shadow 220ms;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.20), transparent);
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.28);
  box-shadow: var(--shadow-card), var(--glow-soft);
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.feature-title { font-family: var(--font-alt); font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.feature-text { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  padding: 80px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201, 168, 76, 0.10), transparent 70%);
  pointer-events: none;
}
.cta-banner-inner { max-width: 680px; margin: 0 auto; position: relative; }
.cta-banner .section-title { margin-bottom: 18px; }
.cta-banner .section-sub { margin: 0 auto 36px; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── RESPONSIBLE GAMBLING CALLOUT ───────────────────────── */
.rg-callout {
  padding: 40px 24px;
  background: rgba(7, 9, 15, 0.85);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rg-callout-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.rg-text { display: flex; align-items: flex-start; gap: 16px; flex: 1; min-width: 280px; }
.rg-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.20);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.rg-title { font-family: var(--font-alt); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.rg-desc { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; max-width: 480px; }
.rg-logos {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.rg-logo-box {
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-alt); font-size: 12px; font-weight: 700;
  color: var(--text-muted);
  transition: border-color 200ms, color 200ms;
}
.rg-logo-box:hover { border-color: rgba(201, 168, 76, 0.25); color: var(--accent-bright); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
  position: relative; z-index: 1;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.35), transparent);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 30px; height: 30px; }
.footer-logo-text {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  background: linear-gradient(120deg, #FFF0A0 0%, #E8C660 45%, #C9A84C 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.7; max-width: 280px; }
.footer-badges {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px;
}
.footer-badge {
  font-family: var(--font-alt); font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em; padding: 3px 9px;
  border: 1px solid var(--border); border-radius: var(--radius-full);
  color: var(--text-muted);
}
.footer-col-title {
  font-family: var(--font-alt); font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13.5px; color: var(--text-muted);
  transition: color 200ms;
}
.footer-col ul li a:hover { color: var(--accent-bright); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-muted);
  transition: color 200ms, border-color 200ms, background 200ms;
  text-decoration: none;
}
.footer-social-link:hover {
  color: var(--accent-bright);
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.08);
}
.footer-bottom {
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: var(--text-muted); transition: color 200ms; }
.footer-legal a:hover { color: var(--accent-bright); }
.footer-disclaimer {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 11px; color: var(--text-muted);
  line-height: 1.7; max-width: 860px;
}

/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-section { padding: 80px 24px; }
.contact-inner { max-width: 1200px; margin: 0 auto; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-card {
  display: flex; gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 220ms, box-shadow 220ms;
}
.contact-card:hover { border-color: rgba(201, 168, 76, 0.25); box-shadow: var(--glow-soft); }
.contact-card-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.20);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-card-title { font-family: var(--font-alt); font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.contact-card-value { font-size: 13px; color: var(--text-secondary); }
.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.35), transparent);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label {
  font-family: var(--font-alt); font-size: 12px; font-weight: 600;
  color: var(--text-secondary); letter-spacing: 0.04em;
}
.form-input, .form-textarea {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px; padding: 10px 14px;
  transition: border-color 200ms, box-shadow 200ms;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.form-input.invalid, .form-textarea.invalid { border-color: #F87171; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-error {
  font-size: 11.5px; color: #F87171; font-family: var(--font-alt);
  display: none;
}
.form-error.show { display: block; }
#contact-success {
  display: none; padding: 14px 18px;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.30);
  border-radius: var(--radius);
  font-size: 13px; color: var(--emerald-bright);
  font-family: var(--font-alt);
}
#contact-success.show { display: block; }

/* ── PAGE HEADER (inner pages) ──────────────────────────── */
.page-header {
  padding: 72px 24px 56px;
  text-align: center; position: relative; z-index: 1;
  border-bottom: 1px solid var(--border);
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(201, 168, 76, 0.10), transparent 65%);
  pointer-events: none;
}
.page-header-inner { max-width: 720px; margin: 0 auto; position: relative; }
.page-header .section-label { display: inline-flex; margin-bottom: 16px; }
.page-header .section-title { font-size: clamp(28px, 4.5vw, 46px); }
.page-header .section-sub { margin: 0 auto; }

/* ── LEGAL CONTENT ──────────────────────────────────────── */
.legal-section { padding: 64px 24px; }
.legal-inner { max-width: 780px; margin: 0 auto; }
.legal-content { display: flex; flex-direction: column; gap: 32px; }
.legal-block {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.legal-block h2 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
.legal-block h3 { font-family: var(--font-alt); font-size: 14px; font-weight: 700; color: var(--text-secondary); margin: 16px 0 8px; }
.legal-block p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 10px; }
.legal-block ul { padding-left: 18px; list-style: disc; }
.legal-block ul li { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 6px; }
.legal-block a { color: var(--accent-bright); text-decoration: underline; text-underline-offset: 2px; }
.legal-meta { font-size: 12px; color: var(--text-muted); font-style: italic; margin-top: 12px; }

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-page-section { padding: 64px 24px; }
.about-page-inner { max-width: 1000px; margin: 0 auto; }
.about-page-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 10px;
}
.about-page-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color 220ms, box-shadow 220ms;
  position: relative; overflow: hidden;
}
.about-page-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.18), transparent);
}
.about-page-card:hover { border-color: rgba(201, 168, 76, 0.28); box-shadow: var(--glow-soft); }
.about-page-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }
.about-page-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }
.team-values { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.value-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 220ms, box-shadow 220ms;
}
.value-item:hover { border-color: rgba(201, 168, 76, 0.22); box-shadow: var(--glow-soft); }
.value-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.value-title { font-family: var(--font-alt); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.value-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── PLAY PAGE ──────────────────────────────────────────── */
.play-page { padding: 64px 24px; }
.play-inner { max-width: 1200px; margin: 0 auto; }
.play-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.game-frame-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.game-frame-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.50), transparent);
  z-index: 1;
}
.game-frame-wrap iframe { display: block; width: 100%; height: 600px; border: none; }
.play-sidebar { display: flex; flex-direction: column; gap: 20px; }
.play-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
}
.play-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.22), transparent);
}
.play-card-title { font-family: var(--font-alt); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.play-stat { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.play-stat:last-child { border-bottom: none; }
.play-stat-label { font-size: 13px; color: var(--text-secondary); }
.play-stat-value { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--accent-bright); }
.bet-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.bet-opt {
  padding: 8px; text-align: center;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 200ms, color 200ms, background 200ms;
}
.bet-opt.active, .bet-opt:hover {
  border-color: var(--accent-primary);
  color: var(--accent-bright);
  background: rgba(201, 168, 76, 0.10);
}
#spin-btn {
  width: 100%; padding: 14px;
  font-family: var(--font-alt); font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: #0C0A06;
  background: linear-gradient(120deg, #F5D070, #C9A84C);
  border: none; border-radius: var(--radius-lg); cursor: pointer;
  box-shadow: 0 10px 28px -8px rgba(201, 168, 76, 0.65);
  transition: transform 180ms var(--ease-snap), box-shadow 220ms, filter 220ms;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
#spin-btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 16px 36px -8px rgba(201, 168, 76, 0.75); }
#spin-btn:active { transform: translateY(0) scale(0.975); }
#spin-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
#spin-icon-el { font-size: 18px; transition: transform 600ms var(--ease-out); }
#win-msg {
  display: none; padding: 12px 16px;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius);
  font-family: var(--font-alt); font-size: 14px; font-weight: 700;
  color: var(--emerald-bright); text-align: center;
}
#win-msg.show { display: block; }
.reel-track {
  display: flex; gap: 12px; justify-content: center;
  padding: 12px 0;
}
.reel {
  width: 52px; height: 64px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  transition: border-color 300ms, box-shadow 300ms;
}
.reel.win-reel {
  border-color: var(--accent-bright);
  box-shadow: 0 0 20px rgba(232, 198, 96, 0.55);
}

/* ── AGE GATE ───────────────────────────────────────────── */
.age-gate {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(2, 3, 5, 0.96);
  backdrop-filter: blur(16px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate.show { display: flex; }
.age-gate-box {
  max-width: 440px; width: 100%;
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-strong), 0 0 60px rgba(201, 168, 76, 0.10);
  position: relative; overflow: hidden;
}
.age-gate-box::before {
  content: '';
  position: absolute; top: 0; left: 16px; right: 16px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 198, 96, 0.55), transparent);
}
.age-gate-icon { font-size: 42px; margin-bottom: 16px; }
.age-gate-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px;
}
.age-gate-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.6; }
.age-gate-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.age-gate-legal {
  margin-top: 18px; font-size: 11px; color: var(--text-muted);
  line-height: 1.6;
}
.age-gate-legal a { color: var(--accent-bright); text-decoration: underline; }
.bonus-redeem-spinning { opacity: 0.65; cursor: wait; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 680px; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .play-layout { grid-template-columns: 1fr; }
  .game-frame-wrap iframe { height: 480px; }
  .about-page-grid { grid-template-columns: 1fr; }
  .bonus-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 4px; position: absolute; top: 64px; left: 0; right: 0; background: rgba(3, 5, 7, 0.98); border-bottom: 1px solid var(--border); padding: 14px 16px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; width: 100%; }
  .nav-cta-wrap { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 60px 20px 56px; }
  .hero-title { font-size: clamp(30px, 7vw, 44px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .games-section, .bonus-strip, .about-section, .features-section, .cta-banner { padding: 56px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .trust-ribbon-inner { gap: 12px; }
  .trust-sep { display: none; }
  .preview-reel { width: 52px; height: 64px; font-size: 22px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .section-title { font-size: 24px; }
  .bonus-tiers { gap: 10px; }
  .about-stats { grid-template-columns: 1fr; }
  .contact-form { padding: 22px 18px; }
}
