/* ================================================================
   SkyLuxBet – style.css
   Theme: Cosmic Noir · Champagne Gold · Sky Blue · Ultra-Luxury Social Casino
   Design System: Token-based, deep glassmorphism, VIP micro-UX
   Domain: skyluxbet.com
   ================================================================ */

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

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Backgrounds – cosmic noir */
  --bg-dark:   #030308;
  --bg-soft:   #060610;
  --surface:   #09091A;
  --surface-2: #0D0D22;
  --surface-3: #12122E;

  /* Borders */
  --border:        rgba(255, 255, 255, 0.020);
  --border-strong: rgba(201, 162, 39, 0.55);
  --border-gold:   rgba(201, 162, 39, 0.16);

  /* Accent – Champagne Gold (primary) */
  --accent-primary: #C9A227;
  --accent-bright:  #F5D072;
  --accent-deep:    #9A7818;
  --accent-dim:     rgba(201, 162, 39, 0.08);
  --accent-glow:    rgba(201, 162, 39, 0.30);

  /* Sky Blue secondary (prestige sky) */
  --sky:        #3B82F6;
  --sky-bright: #60A5FA;
  --sky-dim:    rgba(59, 130, 246, 0.08);
  --sky-glow:   rgba(59, 130, 246, 0.22);

  /* Indigo deep accent */
  --indigo:     #6366F1;
  --indigo-dim: rgba(99, 102, 241, 0.08);

  /* Text */
  --text-primary:   #EEEEF8;
  --text-secondary: #7070A0;
  --text-muted:     #2A2A50;
  --text-accent:    #F5D072;

  /* Radius */
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-soft:   0 12px 40px rgba(0, 0, 0, 0.75);
  --shadow-card:   0 10px 52px rgba(0, 0, 0, 0.85), 0 1px 0 rgba(255,255,255,0.015);
  --shadow-strong: 0 32px 90px rgba(0, 0, 0, 0.95);

  /* Glow – Gold */
  --glow-soft:    0 0 36px rgba(201, 162, 39, 0.18);
  --glow-gold:    0 0 58px rgba(201, 162, 39, 0.42);
  --glow-strong:  0 0 90px rgba(245, 208, 114, 0.55);

  /* Glow – Sky Blue */
  --glow-sky:     0 0 44px rgba(59, 130, 246, 0.28);
  --glow-sky-soft:0 0 28px rgba(96, 165, 250, 0.16);

  /* Glass */
  --glass-bg:     rgba(3, 3, 8, 0.98);
  --glass-border: rgba(201, 162, 39, 0.06);

  /* Typography */
  --font-display: 'Syne', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', 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 80% 60% at 5% -10%,  rgba(59, 130, 246, 0.055) 0%, transparent 52%),
    radial-gradient(ellipse 55% 50% at 98%  2%,  rgba(201, 162, 39, 0.050) 0%, transparent 50%),
    radial-gradient(ellipse 70% 55% at 50% 115%, rgba(99, 102, 241, 0.045) 0%, transparent 55%),
    linear-gradient(168deg, #030308 0%, #050510 50%, #030308 100%);
  min-height: 100vh; overflow-x: hidden;
}

/* Geometric grid overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none; z-index: 0;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 75%);
}

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; }

/* ── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes cosmicDrift {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
  25%  { transform: translate(70px, -55px) scale(1.10) rotate(2deg); }
  50%  { transform: translate(-40px, 70px) scale(0.92) rotate(-1deg); }
  75%  { transform: translate(30px, -20px) scale(1.06) rotate(1deg); }
  100% { transform: translate(20px, -30px) scale(1.04) rotate(0.5deg); }
}

@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(260%) skewX(-12deg); }
}

@keyframes goldPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(201, 162, 39, 0.50); }
  50%       { text-shadow: 0 0 48px rgba(245, 208, 114, 0.95); }
}

@keyframes goldPulseBox {
  0%, 100% { box-shadow: 0 0 24px rgba(201, 162, 39, 0.28); }
  50%       { box-shadow: 0 0 52px rgba(245, 208, 114, 0.68); }
}

@keyframes skyPulseBox {
  0%, 100% { box-shadow: 0 0 18px rgba(59, 130, 246, 0.22); }
  50%       { box-shadow: 0 0 44px rgba(96, 165, 250, 0.55); }
}

@keyframes starGlow {
  0%   { opacity: 0.03; }
  50%  { opacity: 0.12; }
  100% { opacity: 0.03; }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes floatSpin {
  0%   { transform: translateY(0px) rotate(0deg); }
  50%  { transform: translateY(-6px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(201, 162, 39, 0.28); }
  50%       { border-color: rgba(245, 208, 114, 0.70); }
}

@keyframes scanline {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

/* ── AURORA / AMBIENT ──────────────────────────────────────── */
.aurora {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.aurora-blob {
  position: absolute; border-radius: 50%;
  filter: blur(240px); opacity: 0.07;
  animation: cosmicDrift 60s ease-in-out infinite alternate;
}
.aurora-blob-1 {
  width: 1100px; height: 1100px; top: -550px; left: -380px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.40), rgba(201, 162, 39, 0.15) 55%, transparent 75%);
  animation-duration: 72s;
}
.aurora-blob-2 {
  width: 780px; height: 780px; top: 28%; right: -340px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.28), transparent 65%);
  animation-duration: 45s; animation-delay: -26s;
}
.aurora-blob-3 {
  width: 940px; height: 940px; bottom: -440px; left: 16%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18), rgba(59, 130, 246, 0.08) 50%, transparent 70%);
  animation-duration: 80s; animation-delay: -42s;
}

/* Stars layer */
.aurora::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 7%   4%,  rgba(245,208,114,0.82), transparent),
    radial-gradient(1px 1px at 23%  9%,  rgba(96,165,250,0.60), transparent),
    radial-gradient(1.5px 1.5px at 42%  3%, rgba(255,255,255,0.85), transparent),
    radial-gradient(1px 1px at 62%  7%,  rgba(245,208,114,0.55), transparent),
    radial-gradient(1px 1px at 81%  5%,  rgba(255,255,255,0.48), transparent),
    radial-gradient(1.5px 1.5px at 91% 14%, rgba(96,165,250,0.68), transparent),
    radial-gradient(1px 1px at  3%  18%, rgba(245,208,114,0.35), transparent),
    radial-gradient(1px 1px at 71%   2%, rgba(255,255,255,0.42), transparent),
    radial-gradient(1px 1px at 50%  20%, rgba(96,165,250,0.38), transparent),
    radial-gradient(1.2px 1.2px at 33%  6%, rgba(255,255,255,0.34), transparent),
    radial-gradient(1px 1px at 88%  11%, rgba(245,208,114,0.44), transparent),
    radial-gradient(0.8px 0.8px at 15%  14%, rgba(255,255,255,0.30), transparent);
  animation: starGlow 13s ease-in-out infinite;
}

/* ── TRUST RIBBON ───────────────────────────────────────────── */
.trust-ribbon {
  position: relative; z-index: 10;
  background: rgba(3, 3, 8, 1);
  border-bottom: 1px solid rgba(201, 162, 39, 0.04);
  padding: 8px 0; overflow: hidden;
}
.trust-ribbon::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.55), rgba(245, 208, 114, 0.80), rgba(96, 165, 250, 0.40), transparent);
  pointer-events: none;
}
.trust-ribbon-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  color: var(--text-secondary); letter-spacing: 0.07em; white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; color: var(--sky-bright); }
.trust-sep { color: rgba(96, 165, 250, 0.24); font-size: 13px; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(3, 3, 8, 0.97);
  backdrop-filter: blur(60px) saturate(200%);
  -webkit-backdrop-filter: blur(60px) saturate(200%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.03);
  padding: 0 28px;
}
.nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(120deg, transparent, rgba(96, 165, 250, 0.60), rgba(245, 208, 114, 0.90) 50%, rgba(96, 165, 250, 0.45), transparent);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.nav-logo img { width: 42px; height: 42px; }
.nav-logo-text {
  font-family: var(--font-display); font-size: 17px; font-weight: 800;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, #EEEEF8 0%, #F5D072 30%, #C9A227 60%, #60A5FA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-logo-text em {
  font-style: normal; -webkit-text-fill-color: var(--sky-bright); color: var(--sky-bright); font-weight: 800;
}
.nav-pill {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  color: var(--sky-bright); border: 1px solid rgba(96, 165, 250, 0.35);
  padding: 3px 12px; border-radius: var(--radius-full); letter-spacing: 0.09em;
  background: rgba(59, 130, 246, 0.07);
}
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500;
  color: var(--text-secondary); padding: 7px 15px; border-radius: var(--radius);
  transition: color 220ms var(--ease-out), background 220ms var(--ease-out); letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(201, 162, 39, 0.05); }
.nav-links a.active { color: var(--accent-bright); background: rgba(201, 162, 39, 0.06); }
.nav-cta-wrap { margin-left: 16px; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 42px; height: 42px; margin-left: auto;
  padding: 4px; border-radius: var(--radius); background: rgba(201, 162, 39, 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: 9px; padding: 14px 36px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.07em; color: #030308;
  background: linear-gradient(135deg, #F5D072 0%, #C9A227 46%, #9A7818 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 14px 44px -10px rgba(201, 162, 39, 0.80),
              0 4px 0 rgba(255,255,255,0.015),
              inset 0 1px 0 rgba(255,255,255,0.35);
  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; text-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.28), transparent 52%); pointer-events: none;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -65%;
  width: 40%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.38), transparent);
  animation: shimmer 6s ease-in-out infinite; pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.022);
  box-shadow: 0 24px 60px -10px rgba(201, 162, 39, 0.96), inset 0 1px 0 rgba(255,255,255,0.35);
  filter: brightness(1.09);
}
.btn-primary:active { transform: translateY(0) scale(0.970); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 32px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--accent-bright);
  background: rgba(201, 162, 39, 0.04);
  border: 1.5px solid rgba(201, 162, 39, 0.26);
  border-radius: var(--radius-full);
  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, 162, 39, 0.09);
  border-color: rgba(245, 208, 114, 0.62);
  transform: translateY(-1px); box-shadow: var(--glow-soft);
}
.btn-ghost:active { transform: translateY(0); }

.btn-sky {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; color: #fff;
  background: linear-gradient(135deg, #93C5FD 0%, #3B82F6 50%, #1D4ED8 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 32px -8px rgba(59, 130, 246, 0.70), inset 0 1px 0 rgba(255,255,255,0.22);
  transition: transform 180ms var(--ease-snap), box-shadow 220ms, filter 220ms;
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-sky:hover { transform: translateY(-2px) scale(1.016); box-shadow: 0 20px 46px -8px rgba(59, 130, 246, 0.85); filter: brightness(1.08); }
.btn-sky:active { transform: translateY(0) scale(0.974); }

.btn-sm { padding: 9px 22px; font-size: 13px; }
.cta-microcopy { display: block; font-size: 11.5px; color: var(--text-muted); margin-top: 10px; letter-spacing: 0.02em; text-align: center; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero { position: relative; z-index: 1; padding: 120px 28px 104px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 72% at 50% -15%, rgba(59, 130, 246, 0.07), transparent 55%),
    radial-gradient(ellipse 48% 44% at 4% 65%, rgba(201, 162, 39, 0.04), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 680px; height: 680px;
  background: radial-gradient(ellipse at 82% 22%, rgba(201, 162, 39, 0.055), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 88px; position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky-bright);
  background: rgba(59, 130, 246, 0.08); border: 1px solid rgba(96, 165, 250, 0.28);
  padding: 5px 17px; border-radius: var(--radius-full); margin-bottom: 30px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.6vw, 64px); font-weight: 800;
  line-height: 1.03; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 26px;
}
.hero-title span {
  background: linear-gradient(120deg, #EEEEF8 0%, #F5D072 30%, #C9A227 65%, #60A5FA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title em {
  font-style: normal; display: block; font-size: 0.28em; font-weight: 600;
  background: linear-gradient(120deg, #60A5FA, #F5D072, #C9A227);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 0.18em; margin-top: 22px; font-family: var(--font-body);
}
.hero-sub { font-size: 17px; color: var(--text-secondary); max-width: 500px; line-height: 1.88; margin-bottom: 48px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.hero-trust { display: flex; align-items: center; gap: 26px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; font-family: var(--font-body); font-size: 12px; color: var(--text-muted); }
.hero-trust-item svg { color: var(--sky-bright); }

/* Preview card */
.hero-preview {
  background: linear-gradient(160deg, rgba(9, 9, 26, 0.99) 0%, rgba(13, 13, 34, 0.98) 100%);
  border: 1px solid rgba(201, 162, 39, 0.16);
  border-radius: var(--radius-xl); padding: 38px;
  box-shadow: var(--shadow-card), 0 0 120px rgba(59, 130, 246, 0.06);
  position: relative; overflow: hidden; backdrop-filter: blur(36px);
}
.hero-preview::before {
  content: ''; position: absolute; top: -1px; left: 18px; right: 18px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.70), rgba(245, 208, 114, 0.90), rgba(96, 165, 250, 0.50), transparent);
}
.hero-preview::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 86% 48% at 50% 0%, rgba(59, 130, 246, 0.04), transparent 58%);
  pointer-events: none;
}
.preview-label {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--sky-bright);
  background: rgba(59, 130, 246, 0.08); border: 1px solid rgba(96, 165, 250, 0.24);
  padding: 3px 14px; border-radius: var(--radius-full);
  display: inline-block; margin-bottom: 30px; position: relative; z-index: 1;
}
.preview-reels { display: flex; gap: 11px; justify-content: center; margin-bottom: 28px; position: relative; z-index: 1; }
.preview-reel {
  width: 68px; height: 80px; background: var(--surface-2);
  border: 1px solid rgba(201, 162, 39, 0.09);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 28px; transition: box-shadow 320ms, border-color 320ms;
}
.preview-reel.lit {
  border-color: var(--accent-bright);
  box-shadow: 0 0 32px rgba(201, 162, 39, 0.70), inset 0 1px 0 rgba(255,255,255,0.02);
  animation: goldPulseBox 2.6s ease-in-out infinite;
}
.preview-balance-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px; background: var(--surface);
  border: 1px solid rgba(201, 162, 39, 0.06);
  border-radius: var(--radius); margin-bottom: 22px; position: relative; z-index: 1;
}
.preview-bal-label { font-family: var(--font-body); font-size: 11px; color: var(--text-muted); letter-spacing: 0.07em; }
.preview-bal-value {
  font-family: var(--font-mono); font-size: 24px; font-weight: 700;
  color: var(--accent-bright); text-shadow: 0 0 28px rgba(201, 162, 39, 0.65);
  transition: color 300ms; animation: goldPulse 3.4s ease-in-out infinite;
}
.security-badge {
  display: flex; align-items: center; gap: 11px; padding: 14px 18px;
  background: rgba(59, 130, 246, 0.04); border: 1px solid rgba(96, 165, 250, 0.12);
  border-radius: var(--radius); margin-top: 18px; position: relative; z-index: 1;
}
.security-badge svg { color: var(--sky-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-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.17em; text-transform: uppercase; color: var(--sky-bright);
  background: rgba(59, 130, 246, 0.07); border: 1px solid rgba(96, 165, 250, 0.22);
  padding: 5px 16px; border-radius: var(--radius-full); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.6vw, 52px); font-weight: 800;
  line-height: 1.06; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 14px;
}
.section-title span {
  background: linear-gradient(120deg, #EEEEF8 0%, #F5D072 36%, #C9A227 70%, #60A5FA 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: 560px; line-height: 1.88; }
.section-divider {
  display: flex; align-items: center; gap: 10px;
  width: 100%; max-width: 80px; margin: 16px 0;
}
.section-divider::before {
  content: '';
  flex: 1; height: 2px;
  background: linear-gradient(90deg, var(--sky-bright), var(--accent-primary), rgba(96, 165, 250, 0.20), transparent);
  border-radius: 2px;
}
.section-header { margin-bottom: 54px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-header.centered .section-divider { margin: 16px auto; justify-content: center; }
.section-header.centered .section-label { display: inline-flex; }

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

/* ── GAMES SECTION ──────────────────────────────────────────── */
.games-section {
  padding: 100px 28px;
  background: linear-gradient(180deg, transparent, rgba(9, 9, 26, 0.80) 26%, rgba(9, 9, 26, 0.80) 74%, transparent);
}
.games-section-inner { max-width: 1240px; margin: 0 auto; }
.games-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 20px; }
.game-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid rgba(201, 162, 39, 0.05);
  border-radius: var(--radius-lg); overflow: hidden; text-decoration: none;
  transition: transform 230ms var(--ease-out), box-shadow 230ms, border-color 230ms;
}
.game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), 0 0 52px rgba(59, 130, 246, 0.14);
  border-color: rgba(201, 162, 39, 0.36);
}
.game-thumb {
  position: relative; height: 144px;
  background: var(--game-gradient, linear-gradient(135deg, #09091A, #030308));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.game-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 44%, rgba(0,0,0,0.70)); }
.game-thumb-icon { font-size: 50px; position: relative; z-index: 1; filter: drop-shadow(0 2px 18px rgba(0,0,0,0.82)); }
.game-tag {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.07em; padding: 3px 10px; border-radius: var(--radius-full);
}
.game-tag.hot { background: rgba(239, 68, 68, 0.92); color: #fff; }
.game-tag.new { background: rgba(245, 208, 114, 0.95); color: #030308; }
.game-tag.vip { background: linear-gradient(135deg, #F5D072, #9A7818); color: #030308; }
.game-play-pill {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%) translateY(7px);
  z-index: 2; opacity: 0; font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.07em; color: #030308;
  background: linear-gradient(135deg, #F5D072, #C9A227);
  padding: 4px 15px; border-radius: var(--radius-full);
  transition: opacity 200ms, transform 200ms var(--ease-out);
  white-space: nowrap; box-shadow: 0 4px 20px rgba(201, 162, 39, 0.60);
}
.game-card:hover .game-play-pill { opacity: 1; transform: translateX(-50%) translateY(0); }
.game-meta { padding: 16px 20px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.game-name { font-family: var(--font-body); 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(--accent-bright); }

/* ── BONUS STRIP ─────────────────────────────────────────────── */
.bonus-strip {
  padding: 92px 28px;
  background: linear-gradient(135deg, rgba(9, 9, 26, 1) 0%, rgba(13, 13, 34, 1) 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.05); border-bottom: 1px solid rgba(201, 162, 39, 0.05);
  position: relative; overflow: hidden;
}
.bonus-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.60), rgba(245, 208, 114, 0.80), rgba(96, 165, 250, 0.45), transparent);
}
.bonus-strip::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(59, 130, 246, 0.030), transparent 70%); pointer-events: none;
}
.bonus-strip-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }
.bonus-urgency { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sky-bright); margin-bottom: 6px; }
.bonus-urgency::before { content: '◈ '; color: var(--accent-bright); }
.bonus-layout { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 56px; }
.bonus-timer-wrap { display: flex; align-items: center; gap: 18px; margin: 18px 0 32px; flex-wrap: wrap; }
.timer-label { font-family: var(--font-body); font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; }
#bonus-timer {
  font-family: var(--font-mono); font-size: 40px; font-weight: 700; color: var(--accent-bright);
  text-shadow: 0 0 36px rgba(201, 162, 39, 0.80); transition: color 300ms; animation: goldPulse 3.4s ease-in-out infinite;
}
#bonus-timer.low-time { color: #F87171; text-shadow: 0 0 26px rgba(239, 68, 68, 0.65); animation: none; }
.bonus-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
#bonus-toast { font-size: 12.5px; color: var(--text-secondary); opacity: 0; transition: opacity 300ms; font-family: var(--font-body); }
#bonus-toast.show { opacity: 1; }
.bonus-tiers { display: flex; flex-direction: column; gap: 13px; min-width: 305px; }
.bonus-tier {
  display: flex; align-items: center; justify-content: space-between; padding: 18px 26px;
  background: var(--surface-2); border: 1px solid rgba(201, 162, 39, 0.06);
  border-radius: var(--radius-lg); transition: border-color 230ms, box-shadow 230ms;
}
.bonus-tier:hover { border-color: rgba(201, 162, 39, 0.46); box-shadow: var(--glow-soft); }
.bonus-tier-name { font-family: var(--font-body); 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: 17px; font-weight: 700;
  background: linear-gradient(120deg, #F5D072, #C9A227);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── ABOUT SECTION ──────────────────────────────────────────── */
.about-section { padding: 100px 28px; }
.about-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 84px; align-items: start; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 42px; }
.stat-box {
  padding: 30px; background: var(--surface); border: 1px solid rgba(201, 162, 39, 0.05);
  border-radius: var(--radius-lg); transition: border-color 230ms, box-shadow 230ms; position: relative; overflow: hidden;
}
.stat-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.30), rgba(201, 162, 39, 0.22), transparent);
}
.stat-box:hover { border-color: rgba(201, 162, 39, 0.42); box-shadow: var(--glow-soft); }
.stat-value {
  font-family: var(--font-mono); font-size: 32px; font-weight: 700;
  background: linear-gradient(120deg, #EEEEF8, #F5D072);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--text-muted); font-family: var(--font-body); }
.about-commitments { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.commitment-item {
  display: flex; gap: 18px; align-items: flex-start; padding: 26px;
  background: var(--surface); border: 1px solid rgba(201, 162, 39, 0.04);
  border-radius: var(--radius-lg); transition: border-color 230ms, box-shadow 230ms;
}
.commitment-item:hover { border-color: rgba(201, 162, 39, 0.28); box-shadow: var(--glow-soft); }
.commitment-icon {
  width: 50px; height: 50px; flex-shrink: 0; background: rgba(59, 130, 246, 0.07);
  border: 1px solid rgba(96, 165, 250, 0.22); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.commitment-title { font-family: var(--font-body); 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.76; }

/* ── FEATURES GRID ──────────────────────────────────────────── */
.features-section { padding: 100px 28px; }
.features-inner { max-width: 1240px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(292px, 1fr)); gap: 22px; margin-top: 10px; }
.feature-card {
  padding: 38px 34px; background: var(--surface); border: 1px solid rgba(201, 162, 39, 0.04);
  border-radius: var(--radius-lg); transition: transform 230ms var(--ease-out), border-color 230ms, box-shadow 230ms;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.30), rgba(201, 162, 39, 0.18), rgba(96, 165, 250, 0.12), transparent);
}
.feature-card:hover { transform: translateY(-7px); border-color: rgba(201, 162, 39, 0.34); box-shadow: var(--shadow-card), var(--glow-sky-soft); }
.feature-icon {
  width: 58px; height: 58px; background: rgba(59, 130, 246, 0.07); border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 28px;
}
.feature-title { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.feature-text { font-size: 14px; color: var(--text-secondary); line-height: 1.76; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner { padding: 100px 28px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 90% at 50% 50%, rgba(59, 130, 246, 0.040), transparent 68%); pointer-events: none;
}
.cta-banner-inner { max-width: 760px; margin: 0 auto; position: relative; }
.cta-banner .section-title { margin-bottom: 18px; }
.cta-banner .section-sub { margin: 0 auto 48px; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── RG CALLOUT ─────────────────────────────────────────────── */
.rg-callout { padding: 50px 28px; background: rgba(9, 9, 26, 0.98); border-top: 1px solid rgba(201, 162, 39, 0.04); border-bottom: 1px solid rgba(201, 162, 39, 0.04); }
.rg-callout-inner { max-width: 1240px; 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: 54px; height: 54px; flex-shrink: 0; background: rgba(59, 130, 246, 0.06); border: 1px solid rgba(96, 165, 250, 0.22); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.rg-title { font-family: var(--font-body); 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.72; max-width: 500px; }
.rg-logos { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rg-logo-box {
  padding: 10px 22px; background: rgba(255,255,255,0.001); border: 1px solid rgba(201, 162, 39, 0.08);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 12px; font-weight: 700; color: var(--text-muted);
  transition: border-color 200ms, color 200ms, background 200ms;
}
.rg-logo-box:hover { border-color: rgba(201, 162, 39, 0.48); color: var(--accent-bright); background: rgba(201, 162, 39, 0.06); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg-soft); border-top: 1px solid rgba(201, 162, 39, 0.03); padding: 76px 28px 44px; position: relative; z-index: 1; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.55), rgba(245, 208, 114, 0.72), rgba(96, 165, 250, 0.38), transparent); }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 60px; border-bottom: 1px solid rgba(201, 162, 39, 0.03); }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { width: 38px; height: 38px; }
.footer-logo-text {
  font-family: var(--font-display); font-size: 16px; font-weight: 800; letter-spacing: -0.01em;
  background: linear-gradient(120deg, #EEEEF8 0%, #F5D072 40%, #C9A227 70%, #60A5FA 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.88; max-width: 298px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.footer-badge { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; padding: 3px 11px; border: 1px solid rgba(201, 162, 39, 0.14); border-radius: var(--radius-full); color: var(--text-muted); }
.footer-col-title { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.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: 40px; height: 40px; background: rgba(201, 162, 39, 0.04); border: 1px solid rgba(201, 162, 39, 0.09);
  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, 162, 39, 0.48); background: rgba(201, 162, 39, 0.07); }
.footer-bottom { padding-top: 38px; 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: 24px; 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: 24px; padding-top: 24px; border-top: 1px solid rgba(201, 162, 39, 0.03); font-size: 11px; color: var(--text-muted); line-height: 1.88; max-width: 920px; }

/* ── CONTACT FORM ───────────────────────────────────────────── */
.contact-section { padding: 100px 28px; }
.contact-inner { max-width: 1240px; margin: 0 auto; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-card { display: flex; gap: 18px; padding: 26px; background: var(--surface); border: 1px solid rgba(201, 162, 39, 0.05); border-radius: var(--radius-lg); transition: border-color 230ms, box-shadow 230ms; }
.contact-card:hover { border-color: rgba(201, 162, 39, 0.28); box-shadow: var(--glow-soft); }
.contact-card-icon { width: 50px; height: 50px; flex-shrink: 0; background: rgba(59, 130, 246, 0.07); border: 1px solid rgba(96, 165, 250, 0.22); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-card-title { font-family: var(--font-body); 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: 42px;
  background: var(--surface); border: 1px solid rgba(201, 162, 39, 0.06);
  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(96, 165, 250, 0.65), rgba(245, 208, 114, 0.80), rgba(96, 165, 250, 0.45), 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-body); 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 rgba(201, 162, 39, 0.08); border-radius: var(--radius); color: var(--text-primary); font-size: 14px; padding: 12px 17px; 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(--sky-bright); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14); }
.form-input.invalid, .form-textarea.invalid { border-color: #EF4444; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: 11.5px; color: #F87171; font-family: var(--font-body); display: none; }
.form-error.show { display: block; }
#contact-success { display: none; padding: 14px 20px; background: rgba(201, 162, 39, 0.07); border: 1px solid rgba(201, 162, 39, 0.36); border-radius: var(--radius); font-size: 13px; color: var(--accent-bright); font-family: var(--font-body); }
#contact-success.show { display: block; }

/* ── PAGE HEADER ─────────────────────────────────────────────── */
.page-header { padding: 88px 28px 70px; text-align: center; position: relative; z-index: 1; border-bottom: 1px solid rgba(201, 162, 39, 0.04); }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 72% 80% at 50% 0%, rgba(59, 130, 246, 0.055), transparent 62%); pointer-events: none; }
.page-header-inner { max-width: 740px; margin: 0 auto; position: relative; }
.page-header .section-label { display: inline-flex; margin-bottom: 18px; }
.page-header .section-title { font-size: clamp(22px, 4vw, 50px); }
.page-header .section-sub { margin: 0 auto; }

/* ── LEGAL CONTENT ───────────────────────────────────────────── */
.legal-section { padding: 76px 28px; }
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-primary); margin: 42px 0 12px; border-bottom: 1px solid rgba(201, 162, 39, 0.08); padding-bottom: 9px; letter-spacing: 0.02em; }
.legal-content h2:first-of-type { margin-top: 8px; }
.legal-content h3 { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--accent-bright); margin: 22px 0 9px; }
.legal-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.92; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.legal-content ul li { font-size: 14px; color: var(--text-secondary); line-height: 1.90; margin-bottom: 6px; }
.legal-content a { color: var(--sky-bright); text-decoration: underline; text-underline-offset: 2px; }
.legal-alert { background: linear-gradient(135deg, rgba(59, 130, 246, 0.07) 0%, rgba(201, 162, 39, 0.03) 100%); border: 1px solid rgba(59, 130, 246, 0.24); border-radius: var(--radius); padding: 18px 22px; font-size: 14px; color: var(--text-secondary); line-height: 1.70; margin-bottom: 8px; }
.legal-alert strong { color: var(--sky-bright); }
.legal-block { padding: 38px; background: var(--surface); border: 1px solid rgba(201, 162, 39, 0.04); border-radius: var(--radius-lg); }
.legal-block h2 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 13px; }
.legal-block h3 { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--text-secondary); margin: 18px 0 9px; }
.legal-block p { font-size: 14px; color: var(--text-secondary); line-height: 1.90; 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.90; margin-bottom: 6px; }
.legal-block a { color: var(--sky-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: 76px 28px; }
.about-page-inner { max-width: 1040px; margin: 0 auto; }
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 10px; }
.about-page-card { padding: 38px; background: var(--surface); border: 1px solid rgba(201, 162, 39, 0.05); border-radius: var(--radius-xl); transition: border-color 230ms, box-shadow 230ms; 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(96, 165, 250, 0.30), rgba(201, 162, 39, 0.18), rgba(96, 165, 250, 0.12), transparent); }
.about-page-card:hover { border-color: rgba(201, 162, 39, 0.36); box-shadow: var(--glow-soft); }
.about-page-card h3 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; letter-spacing: 0.01em; }
.about-page-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.90; }
.team-values { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.value-item { display: flex; gap: 15px; align-items: flex-start; padding: 26px; background: var(--surface); border: 1px solid rgba(201, 162, 39, 0.04); border-radius: var(--radius-lg); transition: border-color 230ms, box-shadow 230ms; }
.value-item:hover { border-color: rgba(201, 162, 39, 0.28); box-shadow: var(--glow-soft); }
.value-icon { width: 50px; height: 50px; flex-shrink: 0; background: rgba(59, 130, 246, 0.07); border: 1px solid rgba(96, 165, 250, 0.20); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.value-title { font-family: var(--font-body); 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.72; }

/* ── PLAY PAGE ───────────────────────────────────────────────── */
.play-page { padding: 76px 28px; }
.play-inner { max-width: 1240px; margin: 0 auto; }
.play-layout { display: grid; grid-template-columns: 1fr 400px; gap: 36px; align-items: start; }
.game-frame-wrap { background: var(--surface); border: 1px solid rgba(201, 162, 39, 0.07); 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(96, 165, 250, 0.75), rgba(245, 208, 114, 0.90), rgba(96, 165, 250, 0.55), 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: 28px; background: var(--surface); border: 1px solid rgba(201, 162, 39, 0.06); 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(96, 165, 250, 0.40), rgba(245, 208, 114, 0.28), rgba(96, 165, 250, 0.20), transparent); }
.play-card-title { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.play-stat { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(201, 162, 39, 0.04); }
.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: 10px; text-align: center; background: var(--surface-2); border: 1.5px solid rgba(201, 162, 39, 0.06); 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, 162, 39, 0.08); }
#spin-btn {
  width: 100%; padding: 17px; font-family: var(--font-body); font-size: 15px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #030308;
  background: linear-gradient(135deg, #F5D072, #C9A227, #9A7818);
  border: none; border-radius: var(--radius-full); cursor: pointer;
  box-shadow: 0 12px 40px -8px rgba(201, 162, 39, 0.82);
  transition: transform 180ms var(--ease-snap), box-shadow 220ms, filter 220ms;
  display: flex; align-items: center; justify-content: center; gap: 10px; position: relative; overflow: hidden;
}
#spin-btn::after { content: ''; position: absolute; top: 0; left: -65%; width: 40%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,0.30), transparent); animation: shimmer 6s ease-in-out infinite; pointer-events: none; }
#spin-btn:hover { transform: translateY(-2px); filter: brightness(1.10); box-shadow: 0 22px 52px -8px rgba(201, 162, 39, 0.96); }
#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: 14px 20px; background: rgba(201, 162, 39, 0.08); border: 1px solid rgba(201, 162, 39, 0.42); border-radius: var(--radius); font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--accent-bright); text-align: center; }
#win-msg.show { display: block; }
.reel-track { display: flex; gap: 12px; justify-content: center; padding: 12px 0; }
.reel { width: 60px; height: 72px; background: var(--surface-2); border: 1.5px solid rgba(201, 162, 39, 0.07); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 26px; transition: border-color 320ms, box-shadow 320ms; }
.reel.win-reel { border-color: var(--accent-bright); box-shadow: 0 0 32px rgba(201, 162, 39, 0.72); }

/* ── AGE GATE ────────────────────────────────────────────────── */
.age-gate { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(3, 3, 8, 0.98); backdrop-filter: blur(48px); align-items: center; justify-content: center; padding: 24px; }
.age-gate.show { display: flex; }
.age-gate-box { max-width: 520px; width: 100%; background: var(--surface); border: 1px solid rgba(201, 162, 39, 0.28); border-radius: var(--radius-xl); padding: 58px 52px; text-align: center; box-shadow: var(--shadow-strong), 0 0 120px rgba(59, 130, 246, 0.08); position: relative; overflow: hidden; }
.age-gate-box::before { content: ''; position: absolute; top: 0; left: 18px; right: 18px; height: 1px; background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.70), rgba(245, 208, 114, 0.95), rgba(96, 165, 250, 0.52), transparent); }
.age-gate-box::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 88% 56% at 50% 0%, rgba(59, 130, 246, 0.045), transparent 60%); pointer-events: none; }
.age-gate-icon { font-size: 54px; margin-bottom: 24px; animation: floatSpin 4.2s ease-in-out infinite; }
.age-gate-title { font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -0.01em; color: var(--text-primary); margin-bottom: 12px; }
.age-gate-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 38px; line-height: 1.74; }
.age-gate-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.age-gate-legal { margin-top: 22px; font-size: 11px; color: var(--text-muted); line-height: 1.72; position: relative; z-index: 1; }
.age-gate-legal a { color: var(--sky-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: 740px; gap: 56px; }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .play-layout { grid-template-columns: 1fr; }
  .game-frame-wrap iframe { height: 500px; }
  .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: 72px; left: 0; right: 0; background: rgba(3, 3, 8, 0.99); border-bottom: 1px solid rgba(201, 162, 39, 0.06); padding: 14px 18px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 15px; width: 100%; }
  .nav-cta-wrap { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 72px 22px 68px; }
  .hero-title { font-size: clamp(24px, 7vw, 46px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .games-section, .bonus-strip, .about-section, .features-section, .cta-banner { padding: 68px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .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: 60px; height: 74px; font-size: 24px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 24px; }
  .section-title { font-size: 22px; }
  .bonus-tiers { gap: 10px; }
  .about-stats { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 20px; }
  .age-gate-box { padding: 44px 26px; }
}
