/* ============================================================
   BurjGrandCasino – style.css
   Theme: Desert Gold · Midnight Sky · Dubai Luxury Social Casino
   Design System: Token-based, glassmorphism, premium micro-UX
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Backgrounds – deep midnight with desert warmth */
  --bg-dark:    #050408;
  --bg-soft:    #080611;
  --surface:    #0C0A18;
  --surface-2:  #110F22;
  --surface-3:  #181530;

  /* Borders */
  --border:        rgba(255, 255, 255, 0.022);
  --border-strong: rgba(212, 175, 55, 0.55);
  --border-gold:   rgba(212, 175, 55, 0.22);

  /* Accent – Desert Gold (primary) */
  --accent-primary: #D4AF37;
  --accent-bright:  #F5D478;
  --accent-deep:    #997B20;
  --accent-dim:     rgba(212, 175, 55, 0.10);
  --accent-glow:    rgba(212, 175, 55, 0.38);

  /* Sapphire (prestige supporting) */
  --sapphire:        #1A3A7A;
  --sapphire-bright: #2D5FBF;
  --sapphire-dim:    rgba(26, 58, 122, 0.14);
  --sapphire-glow:   rgba(45, 95, 191, 0.28);

  /* Emerald accent */
  --emerald:        #0F7A52;
  --emerald-bright: #16B87A;
  --emerald-dim:    rgba(15, 122, 82, 0.10);

  /* Text – warm sand/pearl tones */
  --text-primary:   #F8F2E0;
  --text-secondary: #C4B08A;
  --text-muted:     #4A3E2A;
  --text-accent:    #F5D478;

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

  /* Shadows */
  --shadow-soft:   0 4px 24px rgba(0, 0, 0, 0.96);
  --shadow-card:   0 8px 40px rgba(0, 0, 0, 0.98), 0 1px 0 rgba(255,255,255,0.003);
  --shadow-strong: 0 24px 72px rgba(0, 0, 0, 0.99);

  /* Glow – Desert Gold */
  --glow-soft:    0 0 24px rgba(212, 175, 55, 0.22);
  --glow-gold:    0 0 36px rgba(212, 175, 55, 0.40);
  --glow-strong:  0 0 64px rgba(245, 212, 120, 0.52);

  /* Glass */
  --glass-bg:     rgba(5, 4, 8, 0.97);
  --glass-border: rgba(212, 175, 55, 0.09);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-alt:     'DM Sans', -apple-system, sans-serif;
  --font-mono:    'Space 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 70% 50% at 10% -5%,   rgba(212, 175, 55, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 92%  8%,   rgba(26, 58, 122, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 110%, rgba(212, 175, 55, 0.05) 0%, transparent 55%),
    linear-gradient(165deg, #050408 0%, #080611 50%, #050408 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle diamond grid lattice */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.016) 1px, transparent 1px);
  background-size: 52px 52px;
  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; }

/* ── KEYFRAMES ──────────────────────────────────────────── */
@keyframes desertDrift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(60px, -44px) scale(1.06); }
  66%  { transform: translate(-32px, 58px) scale(0.96); }
  100% { transform: translate(34px, -18px) scale(1.04); }
}

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

@keyframes goldPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.70); }
  50%       { text-shadow: 0 0 40px rgba(245, 212, 120, 0.85); }
}

@keyframes goldPulseBox {
  0%, 100% { box-shadow: 0 0 18px rgba(212, 175, 55, 0.32); }
  50%       { box-shadow: 0 0 38px rgba(245, 212, 120, 0.62); }
}

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

@keyframes desertGlow {
  0%   { opacity: 0.08; }
  50%  { opacity: 0.15; }
  100% { opacity: 0.08; }
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.3); }
}

/* ── AURORA AMBIENT (Desert Night Sky) ──────────────────── */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.09;
  animation: desertDrift 38s ease-in-out infinite alternate;
}
.aurora-blob-1 {
  width: 920px; height: 920px;
  top: -440px; left: -320px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.20), transparent 65%);
  animation-duration: 46s;
}
.aurora-blob-2 {
  width: 660px; height: 660px;
  top: 30%; right: -260px;
  background: radial-gradient(circle, rgba(26, 58, 122, 0.14), transparent 65%);
  animation-duration: 32s; animation-delay: -16s;
}
.aurora-blob-3 {
  width: 760px; height: 760px;
  bottom: -360px; left: 20%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.09), transparent 65%);
  animation-duration: 52s; animation-delay: -28s;
}

/* Desert stars */
.aurora::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 8%, rgba(245,212,120,0.7), transparent),
    radial-gradient(1px 1px at 28% 15%, rgba(245,212,120,0.5), transparent),
    radial-gradient(1.5px 1.5px at 45% 5%, rgba(245,212,120,0.8), transparent),
    radial-gradient(1px 1px at 67% 12%, rgba(245,212,120,0.6), transparent),
    radial-gradient(1px 1px at 83% 7%, rgba(245,212,120,0.5), transparent),
    radial-gradient(1.5px 1.5px at 92% 18%, rgba(245,212,120,0.7), transparent),
    radial-gradient(1px 1px at 5% 22%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 76% 3%, rgba(255,255,255,0.5), transparent);
  animation: desertGlow 8s ease-in-out infinite;
}

/* ── TRUST RIBBON ──────────────────────────────────────── */
.trust-ribbon {
  position: relative; z-index: 10;
  background: rgba(5, 4, 8, 0.99);
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  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(212, 175, 55, 0.70), rgba(245, 212, 120, 0.35), 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: 600;
  color: var(--text-secondary); letter-spacing: 0.05em;
  white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; color: var(--accent-bright); }
.trust-sep { color: rgba(212, 175, 55, 0.35); font-size: 13px; }

/* ── NAVIGATION ────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5, 4, 8, 0.97);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.05);
  padding: 0 24px;
}
.nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.80), rgba(245, 212, 120, 0.38) 65%, transparent);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  flex-shrink: 0; text-decoration: none;
}
.nav-logo img { width: 40px; height: 40px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, #F8F2E0 0%, #F5D478 45%, #D4AF37 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(--accent-bright);
  color: var(--accent-bright);
  font-weight: 700;
}
.nav-pill {
  font-family: var(--font-alt); font-size: 10px; font-weight: 700;
  color: var(--accent-bright); border: 1px solid rgba(212, 175, 55, 0.40);
  padding: 2px 10px; border-radius: var(--radius-full); letter-spacing: 0.07em;
  background: rgba(212, 175, 55, 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 13px; 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(212, 175, 55, 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: 38px; height: 38px; margin-left: auto;
  padding: 4px; border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.06);
}
.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: 13px 32px;
  font-family: var(--font-alt); font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; color: #050408;
  background: linear-gradient(135deg, #F5D478 0%, #D4AF37 50%, #997B20 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px -10px rgba(212, 175, 55, 0.80),
              0 4px 0 rgba(255,255,255,0.006),
              inset 0 1px 0 rgba(255,255,255,0.30);
  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.15);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.24), transparent 55%);
  pointer-events: none;
}
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.34), transparent);
  animation: shimmer 3.8s ease-in-out infinite;
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 22px 46px -10px rgba(212, 175, 55, 0.95),
              0 4px 0 rgba(255,255,255,0.006),
              inset 0 1px 0 rgba(255,255,255,0.30);
  filter: brightness(1.10);
}
.btn-primary:active { transform: translateY(0) scale(0.974); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 28px;
  font-family: var(--font-alt); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--accent-bright);
  background: rgba(212, 175, 55, 0.05);
  border: 1.5px solid rgba(212, 175, 55, 0.34);
  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(212, 175, 55, 0.12);
  border-color: rgba(245, 212, 120, 0.65);
  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: 13px 30px;
  font-family: var(--font-alt); font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; color: #050408;
  background: linear-gradient(135deg, #F5D478 0%, #D4AF37 50%, #9B6B12 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px -8px rgba(212, 175, 55, 0.68),
              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-orange:hover {
  transform: translateY(-2px) scale(1.016);
  box-shadow: 0 18px 36px -8px rgba(212, 175, 55, 0.85);
  filter: brightness(1.08);
}
.btn-orange:active { transform: translateY(0) scale(0.974); }

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

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

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  padding: 110px 24px 92px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 50% -10%, rgba(212, 175, 55, 0.09), transparent 60%),
    radial-gradient(ellipse 44% 40% at 10% 55%, rgba(26, 58, 122, 0.05), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 560px; height: 560px;
  background: radial-gradient(ellipse at 78% 22%, rgba(212, 175, 55, 0.06), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 76px;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-alt); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.32);
  padding: 5px 15px; border-radius: var(--radius-full);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 58px);
  font-weight: 800; line-height: 1.06;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-title span {
  background: linear-gradient(120deg, #F8F2E0 0%, #F5D478 45%, #D4AF37 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title em {
  font-style: normal; display: block;
  font-size: 0.36em; font-weight: 600;
  background: linear-gradient(120deg, #F5D478, #D4AF37);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.12em;
  margin-top: 16px;
  font-family: var(--font-alt);
}
.hero-sub {
  font-size: 16.5px; color: var(--text-secondary);
  max-width: 500px; line-height: 1.80;
  margin-bottom: 42px;
}
.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.hero-trust {
  display: flex; align-items: center; gap: 22px;
  margin-top: 32px; 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 – Dubai glass tower aesthetic */
.hero-preview {
  background: linear-gradient(160deg, rgba(12, 10, 24, 0.99) 0%, rgba(17, 15, 34, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-card), 0 0 100px rgba(212, 175, 55, 0.07);
  position: relative; overflow: hidden;
  backdrop-filter: blur(28px);
}
.hero-preview::before {
  content: '';
  position: absolute; top: -1px; left: 18px; right: 18px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.95), rgba(245, 212, 120, 0.58), transparent);
}
.hero-preview::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 44% at 50% 0%, rgba(212, 175, 55, 0.055), transparent 60%);
  pointer-events: none;
}
.preview-label {
  font-family: var(--font-alt); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.30);
  padding: 3px 12px; border-radius: var(--radius-full);
  display: inline-block; margin-bottom: 26px;
  position: relative; z-index: 1;
}
.preview-reels {
  display: flex; gap: 10px;
  justify-content: center; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.preview-reel {
  width: 64px; height: 76px;
  background: var(--surface-2);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.003);
  transition: box-shadow 300ms, border-color 300ms;
}
.preview-reel.lit {
  border-color: var(--accent-bright);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.70), inset 0 1px 0 rgba(255,255,255,0.003);
  animation: goldPulseBox 2s ease-in-out infinite;
}
.preview-balance-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.09);
  border-radius: var(--radius);
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.preview-bal-label {
  font-family: var(--font-alt); font-size: 11px;
  color: var(--text-muted); letter-spacing: 0.05em;
}
.preview-bal-value {
  font-family: var(--font-mono); font-size: 22px; font-weight: 700;
  color: var(--accent-bright);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.70);
  transition: color 300ms;
  animation: goldPulse 2.8s ease-in-out infinite;
}
.security-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius); margin-top: 14px;
  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.15em; text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.26);
  padding: 5px 14px; border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.6vw, 46px); font-weight: 800;
  line-height: 1.1; letter-spacing: 0.02em;
  color: var(--text-primary); margin-bottom: 14px;
}
.section-title span {
  background: linear-gradient(120deg, #F8F2E0 0%, #F5D478 45%, #D4AF37 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.80;
}
.section-divider {
  width: 54px; height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-bright), rgba(245, 212, 120, 0.30), transparent);
  border-radius: 2px; margin: 16px 0;
}
.section-header { margin-bottom: 50px; }
.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(24px);
  transition: opacity 0.60s var(--ease-out), transform 0.60s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── GAMES SECTION ─────────────────────────────────────── */
.games-section {
  padding: 92px 24px;
  background: linear-gradient(180deg, transparent, rgba(11, 9, 22, 0.76) 30%, rgba(11, 9, 22, 0.76) 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: 42px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 22px;
}
.game-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.08);
  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(-6px);
  box-shadow: var(--shadow-card), 0 0 44px rgba(212, 175, 55, 0.20);
  border-color: rgba(212, 175, 55, 0.42);
}
.game-thumb {
  position: relative; height: 136px;
  background: var(--game-gradient, linear-gradient(135deg, #0C0A18, #110F22));
  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.62));
}
.game-thumb-icon { font-size: 46px; position: relative; z-index: 1; filter: drop-shadow(0 2px 14px rgba(0,0,0,0.72)); }
.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.07em; padding: 3px 9px; border-radius: var(--radius-full);
}
.game-tag.hot { background: rgba(180, 50, 30, 0.90); color: #F8F2E0; }
.game-tag.new { background: rgba(212, 175, 55, 0.92); color: #050408; }
.game-tag.vip { background: linear-gradient(135deg, #D4AF37, #997B20); color: #050408; }
.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.07em; color: #050408;
  background: linear-gradient(135deg, #F5D478, #D4AF37);
  padding: 4px 14px; border-radius: var(--radius-full);
  transition: opacity 200ms, transform 200ms var(--ease-out);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.58);
}
.game-card:hover .game-play-pill { opacity: 1; transform: translateX(-50%) translateY(0); }
.game-meta { padding: 15px 17px; 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(--accent-bright); }

/* ── BONUS STRIP ────────────────────────────────────────── */
.bonus-strip {
  padding: 84px 24px;
  background: linear-gradient(135deg, rgba(11, 9, 22, 0.99) 0%, rgba(17, 15, 34, 1.00) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.07);
  border-bottom: 1px solid rgba(212, 175, 55, 0.07);
  position: relative; overflow: hidden;
}
.bonus-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.70), rgba(245, 212, 120, 0.35), transparent);
}
.bonus-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 64% 76% at 50% 50%, rgba(212, 175, 55, 0.038), 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.18em; 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: 50px;
}
.bonus-timer-wrap {
  display: flex; align-items: center; gap: 16px; margin: 16px 0 28px;
  flex-wrap: wrap;
}
.timer-label {
  font-family: var(--font-alt); font-size: 12px;
  color: var(--text-muted); letter-spacing: 0.05em;
}
#bonus-timer {
  font-family: var(--font-mono); font-size: 34px; font-weight: 700;
  color: var(--accent-bright);
  text-shadow: 0 0 28px rgba(212, 175, 55, 0.76);
  transition: color 300ms;
  animation: goldPulse 2.8s ease-in-out infinite;
}
#bonus-timer.low-time { color: #F87171; text-shadow: 0 0 22px rgba(248, 113, 113, 0.62); 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-alt);
}
#bonus-toast.show { opacity: 1; }
.bonus-tiers {
  display: flex; flex-direction: column; gap: 12px;
  min-width: 290px;
}
.bonus-tier {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  background: var(--surface-2);
  border: 1px solid rgba(212, 175, 55, 0.09);
  border-radius: var(--radius-lg);
  transition: border-color 220ms, box-shadow 220ms;
}
.bonus-tier:hover { border-color: rgba(212, 175, 55, 0.48); 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, #F5D478, #D4AF37);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ABOUT SECTION ──────────────────────────────────────── */
.about-section { padding: 92px 24px; }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 76px; align-items: start;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 38px;
}
.stat-box {
  padding: 26px;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-lg);
  transition: border-color 220ms, box-shadow 220ms;
  position: relative; overflow: hidden;
}
.stat-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.28), transparent);
}
.stat-box:hover { border-color: rgba(212, 175, 55, 0.44); box-shadow: var(--glow-soft); }
.stat-value {
  font-family: var(--font-mono); font-size: 30px; font-weight: 700;
  background: linear-gradient(120deg, #F8F2E0, #F5D478);
  -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: 17px; align-items: flex-start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: var(--radius-lg);
  transition: border-color 220ms, box-shadow 220ms;
}
.commitment-item:hover { border-color: rgba(212, 175, 55, 0.30); box-shadow: var(--glow-soft); }
.commitment-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.24);
  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.70; }

/* ── FEATURES GRID ──────────────────────────────────────── */
.features-section { padding: 92px 24px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(284px, 1fr));
  gap: 22px; margin-top: 10px;
}
.feature-card {
  padding: 34px 30px;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.06);
  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(212, 175, 55, 0.28), rgba(245, 212, 120, 0.14), transparent);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.40);
  box-shadow: var(--shadow-card), var(--glow-soft);
}
.feature-icon {
  width: 54px; height: 54px;
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 24px;
}
.feature-title { font-family: var(--font-alt); font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 9px; }
.feature-text { font-size: 14px; color: var(--text-secondary); line-height: 1.70; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  padding: 92px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 74% 86% at 50% 50%, rgba(212, 175, 55, 0.058), transparent 70%);
  pointer-events: none;
}
.cta-banner-inner { max-width: 720px; margin: 0 auto; position: relative; }
.cta-banner .section-title { margin-bottom: 18px; }
.cta-banner .section-sub { margin: 0 auto 42px; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── RESPONSIBLE GAMBLING CALLOUT ───────────────────────── */
.rg-callout {
  padding: 46px 24px;
  background: rgba(11, 9, 22, 0.97);
  border-top: 1px solid rgba(212, 175, 55, 0.06);
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}
.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: 50px; height: 50px; flex-shrink: 0;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.22);
  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.66; max-width: 490px; }
.rg-logos {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.rg-logo-box {
  padding: 10px 20px;
  background: rgba(255,255,255,0.004);
  border: 1px solid rgba(212, 175, 55, 0.10);
  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, background 200ms;
}
.rg-logo-box:hover { border-color: rgba(212, 175, 55, 0.50); color: var(--accent-bright); background: rgba(212, 175, 55, 0.08); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid rgba(212, 175, 55, 0.05);
  padding: 70px 24px 38px;
  position: relative; z-index: 1;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.58), rgba(245, 212, 120, 0.28), transparent);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 11px; }
.footer-logo img { width: 36px; height: 36px; }
.footer-logo-text {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, #F8F2E0 0%, #F5D478 45%, #D4AF37 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.80; max-width: 295px; }
.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.05em; padding: 3px 10px;
  border: 1px solid rgba(212, 175, 55, 0.18); 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.13em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 18px;
}
.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: 38px; height: 38px;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.11);
  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(212, 175, 55, 0.50);
  background: rgba(212, 175, 55, 0.09);
}
.footer-bottom {
  padding-top: 34px;
  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: 20px; 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: 22px; padding-top: 22px;
  border-top: 1px solid rgba(212, 175, 55, 0.04);
  font-size: 11px; color: var(--text-muted);
  line-height: 1.80; max-width: 900px;
}

/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-section { padding: 92px 24px; }
.contact-inner { max-width: 1200px; margin: 0 auto; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-card {
  display: flex; gap: 17px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: var(--radius-lg);
  transition: border-color 220ms, box-shadow 220ms;
}
.contact-card:hover { border-color: rgba(212, 175, 55, 0.30); box-shadow: var(--glow-soft); }
.contact-card-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.22);
  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: 38px;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.08);
  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(212, 175, 55, 0.70), rgba(245, 212, 120, 0.32), 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 rgba(212, 175, 55, 0.10);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px; padding: 12px 16px;
  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(212, 175, 55, 0.15);
}
.form-input.invalid, .form-textarea.invalid { border-color: #F87171; }
.form-textarea { resize: vertical; min-height: 116px; }
.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(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: var(--radius);
  font-size: 13px; color: var(--accent-bright);
  font-family: var(--font-alt);
}
#contact-success.show { display: block; }

/* ── PAGE HEADER (inner pages) ──────────────────────────── */
.page-header {
  padding: 82px 24px 64px;
  text-align: center; position: relative; z-index: 1;
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 64% 76% at 50% 0%, rgba(212, 175, 55, 0.058), 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: 18px; }
.page-header .section-title { font-size: clamp(22px, 3.8vw, 48px); }
.page-header .section-sub { margin: 0 auto; }

/* ── LEGAL CONTENT ──────────────────────────────────────── */
.legal-section { padding: 72px 24px; }
.legal-inner { max-width: 800px; margin: 0 auto; }
.legal-content { display: flex; flex-direction: column; gap: 0; }
.legal-content h2 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-primary); margin: 38px 0 12px; border-bottom: 1px solid rgba(212, 175, 55, 0.10); padding-bottom: 8px; letter-spacing: 0.04em; }
.legal-content h2:first-of-type { margin-top: 8px; }
.legal-content h3 { font-family: var(--font-alt); font-size: 14px; font-weight: 700; color: var(--accent-bright); margin: 20px 0 8px; }
.legal-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.86; 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.84; margin-bottom: 6px; }
.legal-content a { color: var(--accent-bright); text-decoration: underline; text-underline-offset: 2px; }
.legal-content code { font-family: var(--font-mono); font-size: 12.5px; background: var(--surface-2); padding: 2px 6px; border-radius: 4px; color: var(--accent-bright); }
.legal-alert {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.07) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.64;
  margin-bottom: 8px;
}
.legal-alert strong { color: var(--accent-bright); }
.legal-block {
  padding: 34px;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: var(--radius-lg);
}
.legal-block h2 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 13px; letter-spacing: 0.03em; }
.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.84; 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.84; 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: 72px 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: 34px;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.06);
  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(212, 175, 55, 0.26), rgba(245, 212, 120, 0.12), transparent);
}
.about-page-card:hover { border-color: rgba(212, 175, 55, 0.40); 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.03em; }
.about-page-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.84; }
.team-values { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.value-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.05);
  border-radius: var(--radius-lg);
  transition: border-color 220ms, box-shadow 220ms;
}
.value-item:hover { border-color: rgba(212, 175, 55, 0.30); box-shadow: var(--glow-soft); }
.value-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.20);
  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.66; }

/* ── PLAY PAGE ──────────────────────────────────────────── */
.play-page { padding: 72px 24px; }
.play-inner { max-width: 1200px; margin: 0 auto; }
.play-layout { display: grid; grid-template-columns: 1fr 395px; gap: 34px; align-items: start; }
.game-frame-wrap {
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.10);
  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(212, 175, 55, 0.90), rgba(245, 212, 120, 0.58), 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: 26px;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.08);
  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(212, 175, 55, 0.36), rgba(245, 212, 120, 0.18), transparent);
}
.play-card-title { font-family: var(--font-alt); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; 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(212, 175, 55, 0.05); }
.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: 9px; text-align: center;
  background: var(--surface-2);
  border: 1.5px solid rgba(212, 175, 55, 0.08);
  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(212, 175, 55, 0.09);
}
#spin-btn {
  width: 100%; padding: 16px;
  font-family: var(--font-alt); font-size: 15px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: #050408;
  background: linear-gradient(135deg, #F5D478, #D4AF37, #997B20);
  border: none; border-radius: var(--radius-lg); cursor: pointer;
  box-shadow: 0 10px 34px -8px rgba(212, 175, 55, 0.80);
  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;
  text-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
#spin-btn::after {
  content: '';
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.28), transparent);
  animation: shimmer 3.8s ease-in-out infinite;
  pointer-events: none;
}
#spin-btn:hover { transform: translateY(-2px); filter: brightness(1.10); box-shadow: 0 20px 44px -8px rgba(212, 175, 55, 0.95); }
#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: 13px 18px;
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: var(--radius);
  font-family: var(--font-alt); 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: 56px; height: 68px;
  background: var(--surface-2);
  border: 1.5px solid rgba(212, 175, 55, 0.09);
  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 24px rgba(212, 175, 55, 0.72);
}

/* ── AGE GATE ───────────────────────────────────────────── */
.age-gate {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(5, 4, 8, 0.98);
  backdrop-filter: blur(36px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate.show { display: flex; }
.age-gate-box {
  max-width: 490px; width: 100%;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: var(--radius-xl);
  padding: 52px 46px;
  text-align: center;
  box-shadow: var(--shadow-strong), 0 0 100px rgba(212, 175, 55, 0.12);
  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(212, 175, 55, 0.95), rgba(245, 212, 120, 0.58), transparent);
}
.age-gate-box::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 82% 52% at 50% 0%, rgba(212, 175, 55, 0.055), transparent 62%);
  pointer-events: none;
}
.age-gate-icon { font-size: 50px; margin-bottom: 22px; animation: burjFloat 3s ease-in-out infinite; }
.age-gate-title {
  font-family: var(--font-display); font-size: 23px; font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-primary); margin-bottom: 12px;
}
.age-gate-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 34px; line-height: 1.68; }
.age-gate-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.age-gate-legal {
  margin-top: 20px; font-size: 11px; color: var(--text-muted);
  line-height: 1.68; position: relative; z-index: 1;
}
.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: 720px; gap: 52px; }
  .about-inner { grid-template-columns: 1fr; gap: 52px; }
  .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: 70px; left: 0; right: 0; background: rgba(5, 4, 8, 0.99); border-bottom: 1px solid rgba(212, 175, 55, 0.08); 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: 66px 20px 62px; }
  .hero-title { font-size: clamp(24px, 6.5vw, 42px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .games-section, .bonus-strip, .about-section, .features-section, .cta-banner { padding: 62px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .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: 56px; height: 68px; font-size: 22px; }
}

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