/* =============================================================
   matanibet — Premium Social Casino Stylesheet
   Token-based design system · Deep dark + Emerald + Gold accent
   ============================================================= */

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

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Surfaces */
  --bg-dark:        #03060A;
  --bg-soft:        #060B0E;
  --surface:        #0A1411;
  --surface-2:      #0E1B17;
  --surface-elev:   #132721;
  --surface-glass:  rgba(14, 27, 23, 0.62);

  /* Borders */
  --border-soft:    rgba(52, 211, 153, 0.08);
  --border:         rgba(52, 211, 153, 0.14);
  --border-strong:  rgba(52, 211, 153, 0.28);

  /* Primary accent — Emerald */
  --accent-primary: #10B981;
  --accent-bright:  #34D399;
  --accent-soft:    #6EE7B7;
  --accent-deep:    #047857;
  --accent-glow:    rgba(52, 211, 153, 0.55);

  /* Supporting accent — Warm Gold (VIP highlight) */
  --gold:           #FACC15;
  --gold-bright:    #FDE68A;
  --gold-deep:      #B45309;
  --gold-glow:      rgba(250, 204, 21, 0.42);

  /* Text */
  --text-primary:   #ECFDF5;
  --text-secondary: #B3D4C8;
  --text-muted:     #67877B;

  /* Radius */
  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  22px;
  --radius-xl:  30px;

  /* Shadows */
  --shadow-soft:    0 14px 40px -14px rgba(0, 0, 0, 0.78);
  --shadow-strong:  0 32px 80px -22px rgba(0, 0, 0, 0.92);
  --glow-soft:      0 0 32px rgba(16, 185, 129, 0.22);
  --glow-strong:    0 0 60px rgba(16, 185, 129, 0.50);
  --glow-gold:      0 0 30px rgba(250, 204, 21, 0.30);

  /* Typography */
  --font-display: 'Sora', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-alt:     'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET / BASE ────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

*::selection { background: rgba(52, 211, 153, 0.32); color: var(--text-primary); }

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

body {
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(16, 185, 129, 0.10), transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(250, 204, 21, 0.05), transparent 70%),
    radial-gradient(ellipse 70% 50% at 0% 80%, rgba(4, 120, 87, 0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

/* ── AURORA BACKDROP ────────────────────────────────────────── */
.aurora { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  animation: auroraFloat 22s ease-in-out infinite;
  will-change: transform;
}
.aurora-blob-1 {
  width: 540px; height: 540px;
  top: -120px; left: -120px;
  background: radial-gradient(circle, #10B981 0%, transparent 65%);
}
.aurora-blob-2 {
  width: 480px; height: 480px;
  top: 30%; right: -140px;
  background: radial-gradient(circle, #FACC15 0%, transparent 65%);
  opacity: 0.18;
  animation-delay: -7s;
}
.aurora-blob-3 {
  width: 620px; height: 620px;
  bottom: -180px; left: 30%;
  background: radial-gradient(circle, #047857 0%, transparent 65%);
  animation-delay: -14s;
}

@keyframes auroraFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.08); }
  66%       { transform: translate(-30px, 25px) scale(0.94); }
}

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

@keyframes mtbPulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45); }
  100% { box-shadow: 0 0 0 14px rgba(52, 211, 153, 0); }
}

@keyframes mtbShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes mtbTimerPulse {
  0%, 100% { text-shadow: 0 0 14px rgba(52, 211, 153, 0.45); }
  50%      { text-shadow: 0 0 26px rgba(52, 211, 153, 0.85); }
}

/* ── TRUST RIBBON ───────────────────────────────────────────── */
.trust-ribbon {
  position: relative; z-index: 5;
  background: linear-gradient(90deg, rgba(4, 120, 87, 0.18), rgba(10, 20, 17, 0.25), rgba(4, 120, 87, 0.18));
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(14px);
}
.trust-ribbon::after {
  content: ''; display: block; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  opacity: 0.4;
}
.trust-ribbon-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 600;
  font-family: var(--font-alt);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-secondary);
}
.trust-item svg { flex-shrink: 0; color: var(--accent-bright); }
.trust-sep { color: rgba(52, 211, 153, 0.42); font-size: 13px; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 11, 14, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border-soft);
}
.nav::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.45), transparent);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 20px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 12px; }
.nav-logo img {
  width: 40px; height: 40px;
  filter: drop-shadow(0 0 14px rgba(52, 211, 153, 0.40));
  transition: filter 300ms var(--ease-out);
}
.nav-logo:hover img { filter: drop-shadow(0 0 22px rgba(52, 211, 153, 0.75)); }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.nav-logo-text em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.nav-pill {
  font-family: var(--font-alt);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  color: var(--accent-soft);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.22);
}
.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: 9px 14px; border-radius: var(--radius-sm);
  transition: color 250ms var(--ease-out), background 250ms var(--ease-out);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent-bright);
  background: rgba(52, 211, 153, 0.06);
}
.nav-links a.active { color: var(--accent-bright); }
.nav-cta-wrap { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px; padding: 9px;
  flex-direction: column; justify-content: space-between;
  border-radius: 10px; border: 1px solid var(--border);
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--accent-bright);
  border-radius: 2px;
  transition: transform 280ms var(--ease-out), opacity 280ms;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  font-family: var(--font-alt);
  font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #03130D;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-bright) 45%, var(--accent-primary) 100%);
  border: 1px solid rgba(167, 243, 208, 0.35);
  border-radius: 999px;
  box-shadow: 0 10px 30px -8px rgba(16, 185, 129, 0.55), inset 0 1px 0 rgba(255,255,255,0.25);
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 220ms var(--ease-spring), box-shadow 280ms var(--ease-out), filter 240ms;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.30) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
}
.btn-primary:hover::before { animation: mtbShimmer 900ms ease forwards; }
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 18px 44px -10px rgba(16, 185, 129, 0.80), inset 0 1px 0 rgba(255,255,255,0.30);
}
.btn-primary:active { transform: translateY(0) scale(0.975); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-alt);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(52, 211, 153, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transition: background 240ms var(--ease-out), border-color 240ms, color 240ms, transform 200ms var(--ease-out);
}
.btn-ghost:hover {
  background: rgba(52, 211, 153, 0.10);
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  transform: translateY(-1px);
}
.btn-ghost:active { transform: translateY(0); }
.btn-sm { padding: 8px 18px; font-size: 12px; }

.cta-microcopy {
  display: block;
  font-size: 11.5px; color: var(--text-muted);
  font-family: var(--font-alt); letter-spacing: 0.06em;
  margin-top: 14px;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 84px 24px 96px;
  position: relative; z-index: 1; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 540px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.16), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -120px; right: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.08), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.9fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero-content { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.10), rgba(250, 204, 21, 0.08));
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-bright);
}
.hero-eyebrow svg { color: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.hero-title span:nth-of-type(2) {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-bright) 45%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-title em {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-alt);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent-soft);
}

.hero-sub {
  font-size: 16px; line-height: 1.72;
  color: var(--text-secondary);
  max-width: 540px;
}
.hero-sub strong {
  color: var(--accent-bright);
  font-weight: 700;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: 8px;
}
.hero-trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  font-family: var(--font-alt);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-secondary);
}
.hero-trust-item svg { color: var(--accent-bright); }

/* Hero preview card (glassmorphism) */
.hero-preview {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, rgba(14, 27, 23, 0.85), rgba(10, 20, 17, 0.60));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.hero-preview::before {
  content: '';
  position: absolute; top: 0; left: 20px; right: 20px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), var(--gold), transparent);
}
.hero-preview::after {
  content: '';
  position: absolute; inset: -1px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(16, 185, 129, 0.10), transparent 65%);
  pointer-events: none;
  border-radius: inherit;
}

.preview-label {
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-bright);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 22px; position: relative; z-index: 1;
}

.preview-reels {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  margin-bottom: 22px; position: relative; z-index: 1;
}
.preview-reel {
  height: 76px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 320ms, box-shadow 320ms, transform 320ms;
}
.preview-reel.lit {
  border-color: var(--accent-bright);
  box-shadow: 0 0 22px rgba(52, 211, 153, 0.70), inset 0 0 16px rgba(52, 211, 153, 0.18);
  transform: translateY(-2px);
}

.preview-balance-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  background: rgba(3, 6, 10, 0.55);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.preview-bal-label {
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
}
.preview-bal-value {
  font-family: var(--font-mono);
  font-size: 22px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.security-badge {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 14px 16px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-top: 16px;
  position: relative; z-index: 1;
}
.security-badge svg { color: var(--accent-bright); flex-shrink: 0; margin-top: 1px; }
.security-badge-text { font-size: 11.5px; color: var(--text-muted); line-height: 1.50; }
.security-badge-text strong {
  display: block;
  color: var(--text-secondary);
  font-size: 12px; letter-spacing: 0.05em;
  font-family: var(--font-alt);
}

/* ── SECTION SCAFFOLDING ────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 14px;
}
.section-label svg { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 800;
  line-height: 1.10;
  letter-spacing: -0.022em;
  color: var(--text-primary);
}
.section-title span {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.section-sub {
  font-size: 15px; line-height: 1.74;
  color: var(--text-secondary);
  max-width: 620px;
  margin-top: 14px;
}

.section-divider {
  width: 56px; height: 3px; margin-top: 20px;
  background: linear-gradient(90deg, var(--accent-bright), var(--gold));
  border-radius: 3px;
  position: relative;
}
.section-divider::after {
  content: '';
  position: absolute; left: 64px; top: 1px;
  width: 24px; height: 1px;
  background: rgba(52, 211, 153, 0.4);
}

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 14px auto 0; }
.section-header.centered .section-divider { margin: 18px auto; }
.section-header.centered .section-label { display: inline-flex; }
.section-header.centered .section-divider::after { display: none; }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── GAMES SECTION ──────────────────────────────────────────── */
.games-section { padding: 92px 24px; position: relative; z-index: 1; }
.games-section-inner { max-width: 1240px; margin: 0 auto; }
.games-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 38px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.game-card {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 320ms var(--ease-out), border-color 320ms, box-shadow 320ms;
}
.game-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.55), transparent);
  opacity: 0; transition: opacity 320ms;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 28px 60px -22px rgba(0, 0, 0, 0.85), 0 0 40px rgba(16, 185, 129, 0.18);
}
.game-card:hover::before { opacity: 1; }

.game-thumb {
  position: relative; height: 168px;
  background: var(--game-gradient, linear-gradient(135deg, #0E1B17, #03060A));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.game-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(3, 6, 10, 0.65) 100%);
}
.game-thumb-icon {
  font-size: 52px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.75));
}
.game-tag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  padding: 4px 10px;
  font-family: var(--font-alt);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #03130D;
  border-radius: 999px;
}
.game-tag.hot { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); }
.game-tag.new { background: linear-gradient(135deg, var(--accent-soft), var(--accent-bright)); }
.game-tag.vip { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #FEF3C7; }

.game-play-pill {
  position: absolute; left: 50%; bottom: 14px;
  transform: translateX(-50%) translateY(8px);
  z-index: 2;
  padding: 7px 14px;
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(3, 6, 10, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(52, 211, 153, 0.45);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
}
.game-card:hover .game-play-pill { opacity: 1; transform: translateX(-50%) translateY(0); }

.game-meta { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.game-name {
  font-family: var(--font-alt);
  font-size: 14px; font-weight: 700;
  color: var(--text-primary); letter-spacing: -0.005em;
}
.game-genre { font-size: 12px; color: var(--text-muted); }
.game-stat-row {
  display: flex; justify-content: space-between;
  margin-top: 8px; padding-top: 10px;
  border-top: 1px solid var(--border-soft);
  font-size: 11.5px; color: var(--text-muted);
  font-family: var(--font-alt);
}
.game-stat-row strong { color: var(--accent-bright); font-family: var(--font-mono); }

/* ── BONUS STRIP ────────────────────────────────────────────── */
.bonus-strip {
  padding: 92px 24px;
  background: linear-gradient(180deg, var(--bg-soft), var(--surface));
  position: relative; z-index: 1; overflow: hidden;
}
.bonus-strip::before {
  content: '';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), var(--gold), transparent);
}
.bonus-strip::after {
  content: '';
  position: absolute; right: -120px; bottom: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.12), transparent 65%);
  pointer-events: none;
}
.bonus-strip-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }

.bonus-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-alt);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.bonus-urgency::before { content: '◈'; color: var(--gold); }

.bonus-layout { display: grid; grid-template-columns: 1fr 0.9fr; gap: 56px; align-items: center; }

.bonus-timer-wrap {
  display: flex; align-items: center; gap: 14px;
  margin: 26px 0 22px;
}
.timer-label {
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
}
#bonus-timer {
  font-family: var(--font-mono);
  font-size: 28px; font-weight: 700;
  color: var(--accent-bright);
  letter-spacing: 0.03em;
  text-shadow: 0 0 18px rgba(52, 211, 153, 0.50);
  animation: mtbTimerPulse 1.6s ease-in-out infinite;
}
#bonus-timer.low-time {
  color: #F87171;
  text-shadow: 0 0 22px rgba(248, 113, 113, 0.65);
  animation: none;
}

.bonus-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
#bonus-toast {
  display: block;
  margin-top: 18px;
  font-size: 12.5px; color: var(--accent-soft);
  opacity: 0; transition: opacity 260ms;
  font-family: var(--font-alt);
}
#bonus-toast.show { opacity: 1; }

.bonus-tiers { display: flex; flex-direction: column; gap: 12px; min-width: 280px; }
.bonus-tier {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  background: rgba(14, 27, 23, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 280ms var(--ease-out), border-color 280ms, box-shadow 280ms;
}
.bonus-tier:hover {
  border-color: var(--border-strong);
  box-shadow: var(--glow-soft);
  transform: translateX(3px);
}
.bonus-tier-name {
  font-family: var(--font-alt);
  font-size: 13.5px; font-weight: 700;
  color: var(--text-primary); letter-spacing: 0.01em;
}
.bonus-tier-sub { font-size: 11.5px; color: var(--text-muted); margin-top: 3px; }
.bonus-tier-amount {
  font-family: var(--font-mono);
  font-size: 18px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.bonus-redeem-spinning { opacity: 0.65; cursor: wait; }

/* ── ABOUT STRIP ────────────────────────────────────────────── */
.about-section { padding: 96px 24px; position: relative; z-index: 1; }
.about-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 32px;
}
.stat-box {
  padding: 24px 20px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: transform 280ms var(--ease-out), border-color 280ms, box-shadow 280ms;
}
.stat-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  opacity: 0.4;
}
.stat-box:hover {
  border-color: var(--border-strong);
  box-shadow: var(--glow-soft);
  transform: translateY(-2px);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  background: linear-gradient(135deg, var(--accent-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px; color: var(--text-muted);
  font-family: var(--font-alt); letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-commitments { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.commitment-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: border-color 280ms, box-shadow 280ms;
}
.commitment-item:hover { border-color: var(--border); box-shadow: var(--glow-soft); }
.commitment-icon {
  font-size: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(52, 211, 153, 0.32));
}
.commitment-title {
  font-family: var(--font-alt);
  font-size: 14.5px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px; letter-spacing: 0.01em;
}
.commitment-text { font-size: 13px; color: var(--text-secondary); line-height: 1.68; }

/* ── FEATURES ───────────────────────────────────────────────── */
.features-section { padding: 96px 24px; position: relative; z-index: 1; }
.features-inner { max-width: 1240px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 12px;
}
.feature-card {
  padding: 30px 26px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: transform 320ms var(--ease-out), border-color 320ms, box-shadow 320ms;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  opacity: 0.5;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, 0.85), var(--glow-soft);
}
.feature-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(250, 204, 21, 0.10));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 18px;
  filter: drop-shadow(0 0 14px rgba(52, 211, 153, 0.32));
}
.feature-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.feature-text { font-size: 14px; color: var(--text-secondary); line-height: 1.74; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  padding: 96px 24px;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  text-align: center;
  position: relative; z-index: 1; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.15), transparent 65%);
  pointer-events: none;
}
.cta-banner-inner { max-width: 760px; margin: 0 auto; position: relative; }
.cta-banner .section-title { margin-bottom: 0; }
.cta-banner .section-sub { margin: 14px auto 40px; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── RESPONSIBLE GAMBLING CALLOUT ───────────────────────────── */
.rg-callout {
  padding: 38px 24px;
  background: linear-gradient(90deg, rgba(4, 120, 87, 0.12), rgba(10, 20, 17, 0.4), rgba(250, 204, 21, 0.05));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  position: relative; z-index: 1;
}
.rg-callout-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap;
}
.rg-text { display: flex; align-items: flex-start; gap: 16px; flex: 1; min-width: 280px; }
.rg-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  flex-shrink: 0;
}
.rg-title {
  font-family: var(--font-alt);
  font-size: 14px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px; letter-spacing: 0.01em;
}
.rg-desc {
  font-size: 12.5px; color: var(--text-secondary); line-height: 1.66;
  max-width: 560px;
}
.rg-desc a {
  color: var(--accent-bright);
  text-decoration: underline; text-underline-offset: 2px;
}
.rg-logos { display: flex; gap: 10px; flex-wrap: wrap; }
.rg-logo-box {
  padding: 9px 14px;
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(3, 6, 10, 0.45);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 240ms, color 240ms, background 240ms;
}
.rg-logo-box:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  background: rgba(52, 211, 153, 0.08);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  padding: 72px 24px 32px;
  background: var(--bg-soft);
  position: relative; z-index: 1;
  border-top: 1px solid var(--border-soft);
}
.footer::before {
  content: '';
  position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), var(--gold), transparent);
  opacity: 0.6;
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.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; filter: drop-shadow(0 0 10px rgba(52, 211, 153, 0.34)); }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.footer-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.78; max-width: 320px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.footer-badge {
  padding: 5px 10px;
  font-family: var(--font-alt);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--accent-soft);
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.footer-col-title {
  font-family: var(--font-alt);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-bright);
  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-secondary);
  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: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid var(--border);
  color: var(--accent-bright);
  font-family: var(--font-alt);
  font-weight: 700;
  transition: background 240ms, border-color 240ms, transform 240ms;
}
.footer-social-link:hover {
  background: rgba(52, 211, 153, 0.16);
  border-color: var(--accent-bright);
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.footer-copy {
  font-size: 12px; color: var(--text-muted);
  font-family: var(--font-alt); letter-spacing: 0.04em;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 12px; color: var(--text-muted);
  transition: color 200ms;
  font-family: var(--font-alt); letter-spacing: 0.04em;
}
.footer-legal a:hover { color: var(--accent-bright); }
.footer-disclaimer {
  margin-top: 24px;
  font-size: 11.5px; color: var(--text-muted); line-height: 1.78;
  font-family: var(--font-alt);
  max-width: 1100px;
}
.footer-disclaimer a {
  color: var(--accent-bright);
  text-decoration: underline; text-underline-offset: 2px;
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-section { padding: 92px 24px; position: relative; z-index: 1; }
.contact-inner { max-width: 1240px; margin: 0 auto; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: border-color 280ms, box-shadow 280ms;
}
.contact-card:hover { border-color: var(--border); box-shadow: var(--glow-soft); }
.contact-card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid var(--border);
  border-radius: 12px;
  flex-shrink: 0;
}
.contact-card-title {
  font-family: var(--font-alt);
  font-size: 13px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px; letter-spacing: 0.02em;
}
.contact-card-value { font-size: 13.5px; color: var(--text-secondary); }
.contact-card-value a { color: var(--accent-bright); }

.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  padding: 38px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.contact-form::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), var(--gold), transparent);
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label {
  font-family: var(--font-alt);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--text-muted);
}
.form-input, .form-textarea {
  padding: 13px 16px;
  background: rgba(3, 6, 10, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 240ms, background 240ms, box-shadow 240ms;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-bright);
  background: rgba(16, 185, 129, 0.05);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.15);
}
.form-input.invalid, .form-textarea.invalid { border-color: #F87171; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-error {
  display: none;
  font-size: 11.5px; color: #F87171;
  font-family: var(--font-alt);
}
.form-error.show { display: block; }
#contact-success {
  display: none;
  padding: 14px 16px;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--accent-bright);
  font-size: 13px;
  font-family: var(--font-alt); font-weight: 600;
}
#contact-success.show { display: block; }

/* ── PAGE HEADER (sub-pages) ────────────────────────────────── */
.page-header {
  padding: 86px 24px 56px;
  text-align: center;
  position: relative; z-index: 1;
}
.page-header::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 320px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.10), transparent 65%);
  pointer-events: none;
}
.page-header-inner { max-width: 760px; margin: 0 auto; position: relative; }
.page-header .section-label { display: inline-flex; margin-bottom: 18px; }
.page-header .section-title { font-size: clamp(30px, 4.6vw, 54px); }
.page-header .section-sub { margin: 14px auto 0; }

/* ── LEGAL PAGES (optional structure for long-form text) ────── */
.legal-section { padding: 72px 24px; position: relative; z-index: 1; }
.legal-inner { max-width: 840px; margin: 0 auto; }
.legal-content { display: flex; flex-direction: column; gap: 0; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--text-primary);
  margin: 38px 0 13px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 10px; letter-spacing: -0.01em;
}
.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: 22px 0 10px; letter-spacing: 0.02em;
}
.legal-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.86; margin-bottom: 12px; }
.legal-content ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.legal-content ul li { font-size: 14px; color: var(--text-secondary); line-height: 1.84; margin-bottom: 7px; }
.legal-content ul li::marker { color: var(--accent-bright); }
.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 7px; border-radius: 4px;
  color: var(--accent-bright);
}
.legal-content strong { color: var(--text-primary); }
.legal-alert {
  padding: 16px 18px;
  background: rgba(250, 204, 21, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: var(--radius);
  margin: 16px 0;
  font-size: 13px; color: var(--text-secondary);
}
.legal-alert strong { color: var(--gold); }
.legal-meta { font-size: 12px; color: var(--text-muted); font-style: italic; margin-top: 12px; }

/* ── ABOUT PAGE (sub-page card grid, also used by legal pages) ─ */
.about-page-section { padding: 72px 24px; position: relative; z-index: 1; }
.about-page-inner { max-width: 1080px; margin: 0 auto; }
.about-page-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; margin-top: 12px;
}
.about-page-card {
  padding: 26px 24px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: transform 320ms var(--ease-out), border-color 320ms, box-shadow 320ms;
}
.about-page-card::before {
  content: '';
  position: absolute; top: 0; left: 22px; right: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  opacity: 0.4;
}
.about-page-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--glow-soft);
  transform: translateY(-3px);
}
.about-page-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 11px; letter-spacing: -0.01em;
}
.about-page-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.82; }
.about-page-card strong { color: var(--accent-bright); }

.team-values { display: flex; flex-direction: column; gap: 16px; margin-top: 12px; }
.value-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: border-color 280ms, box-shadow 280ms;
}
.value-item:hover { border-color: var(--border); box-shadow: var(--glow-soft); }
.value-icon {
  font-size: 26px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(52, 211, 153, 0.30));
}
.value-title {
  font-family: var(--font-alt);
  font-size: 14px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px; letter-spacing: 0.02em;
}
.value-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.68; }

/* ── PLAY PAGE ──────────────────────────────────────────────── */
.play-page { padding: 72px 24px; position: relative; z-index: 1; }
.play-inner { max-width: 1240px; margin: 0 auto; }
.play-layout { display: grid; grid-template-columns: 1fr 400px; gap: 34px; align-items: start; }

.game-frame-wrap {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-strong);
}
.game-frame-wrap::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), var(--gold), transparent);
  z-index: 2;
}
.game-frame-wrap iframe { display: block; width: 100%; height: 640px; border: none; }

.play-sidebar { display: flex; flex-direction: column; gap: 20px; }
.play-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.play-card::before {
  content: '';
  position: absolute; top: 0; left: 22px; right: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  opacity: 0.4;
}
.play-card-title {
  font-family: var(--font-alt);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
}
.play-stat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-soft);
}
.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(--gold);
}

.bet-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.bet-opt {
  padding: 11px 8px;
  background: rgba(3, 6, 10, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  transition: background 220ms, border-color 220ms, color 220ms, transform 200ms;
}
.bet-opt.active, .bet-opt:hover {
  background: rgba(52, 211, 153, 0.10);
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}
.bet-opt:active { transform: scale(0.96); }

#spin-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; gap: 10px;
  padding: 16px;
  font-family: var(--font-alt);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #03130D;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-bright) 50%, var(--accent-primary));
  border: 1px solid rgba(167, 243, 208, 0.4);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px -10px rgba(16, 185, 129, 0.70), inset 0 1px 0 rgba(255,255,255,0.30);
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 220ms var(--ease-out), filter 240ms, box-shadow 280ms;
}
#spin-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.30) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
}
#spin-btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 18px 42px -8px rgba(16, 185, 129, 0.90); }
#spin-btn:hover::after { animation: mtbShimmer 900ms ease forwards; }
#spin-btn:active { transform: translateY(0) scale(0.975); }
#spin-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
#spin-icon-el { font-size: 18px; transition: transform 600ms var(--ease-out); }

#win-msg {
  display: none; padding: 14px 18px;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-alt);
  font-size: 14px; font-weight: 700;
  color: var(--accent-bright);
  text-align: center; letter-spacing: 0.02em;
  margin-top: 14px;
}
#win-msg.show { display: block; }

.reel-track {
  display: flex; gap: 12px; justify-content: center;
  padding: 12px 0;
}
.reel {
  width: 56px; height: 68px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  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 22px rgba(52, 211, 153, 0.70);
}

/* ── AGE GATE ───────────────────────────────────────────────── */
.age-gate {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(3, 6, 10, 0.97);
  backdrop-filter: blur(32px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate.show { display: flex; }
.age-gate-box {
  max-width: 520px; width: 100%;
  background: linear-gradient(165deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  text-align: center;
  box-shadow: var(--shadow-strong), 0 0 90px rgba(16, 185, 129, 0.18);
  position: relative; overflow: hidden;
}
.age-gate-box::before {
  content: '';
  position: absolute; top: 0; left: 20px; right: 20px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), var(--gold), transparent);
}
.age-gate-box::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(16, 185, 129, 0.08), transparent 60%);
  pointer-events: none;
}
.age-gate-icon {
  font-size: 52px;
  margin-bottom: 22px;
  animation: mtbFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 22px rgba(52, 211, 153, 0.55));
}
.age-gate-title {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.age-gate-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.age-gate-sub { font-size: 14.5px; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.70; }
.age-gate-sub strong { color: var(--accent-bright); }
.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(--accent-bright); text-decoration: underline; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; max-width: 740px; 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: 540px; }
  .about-page-grid  { grid-template-columns: 1fr; }
  .bonus-layout     { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; gap: 4px;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(6, 11, 14, 0.99);
    border-bottom: 1px solid var(--border-soft);
    padding: 16px 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links a    { padding: 12px 14px; width: 100%; }
  .nav-cta-wrap   { display: none; }
  .nav-toggle     { display: flex; }
  .nav-pill       { display: none; }

  .hero           { padding: 68px 20px 64px; }
  .hero-title     { font-size: clamp(30px, 7vw, 46px); }
  .hero-actions   { flex-direction: column; align-items: flex-start; }
  .hero-actions > * { width: 100%; }

  .games-section, .bonus-strip, .about-section,
  .features-section, .cta-banner { padding: 70px 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   { height: 64px; font-size: 24px; }
  .bonus-tiers    { min-width: 0; }
  .rg-callout-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title     { font-size: 28px; }
  .section-title  { font-size: 26px; }
  .bonus-tiers    { gap: 10px; }
  .about-stats    { grid-template-columns: 1fr; }
  .contact-form   { padding: 26px 20px; }
  .age-gate-box   { padding: 40px 26px; }
  .age-gate-title { font-size: 24px; }
  .nav-logo-text  { font-size: 17px; }
  .preview-reels  { gap: 6px; }
  .preview-reel   { height: 56px; font-size: 22px; }
}
