/* ============================================================
   royalmangobet – style.css
   Design System: Deep dark · Mango gold accent · Luxury VIP
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Background layers */
  --bg-dark:        #080610;
  --bg-soft:        #100E1C;
  --bg-card:        #13112099;
  --bg-card-solid:  #13112F;
  --bg-nav:         rgba(8, 6, 16, 0.88);

  /* Accent palette – Mango Gold */
  --accent-primary: #F5A623;
  --accent-warm:    #E8760A;
  --accent-glow:    rgba(245, 166, 35, 0.35);
  --accent-glow-sm: rgba(245, 166, 35, 0.18);
  --accent-rgb:     245, 166, 35;

  /* Supporting – Royal Purple */
  --purple:         #6B3FA0;
  --purple-soft:    rgba(107, 63, 160, 0.25);

  /* Text */
  --text-primary:   #F0ECE8;
  --text-muted:     #8A849E;
  --text-faint:     #4A4560;
  --text-gold:      #F5A623;

  /* UI tokens */
  --radius:         14px;
  --radius-sm:      8px;
  --radius-lg:      22px;
  --radius-pill:    999px;

  --shadow-soft:    0 4px 24px rgba(0,0,0,.55);
  --shadow-card:    0 8px 40px rgba(0,0,0,.65), 0 1px 0 rgba(245,166,35,.08) inset;
  --glow-soft:      0 0 28px rgba(245,166,35,.22);
  --glow-btn:       0 0 20px rgba(245,166,35,.45), 0 4px 12px rgba(0,0,0,.4);

  --border:         rgba(255,255,255,.07);
  --border-gold:    rgba(245,166,35,.25);

  --transition:     cubic-bezier(.4,0,.2,1);
  --dur:            220ms;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

/* ── AURORA BACKGROUND ──────────────────────────────────────── */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.13;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}
.aurora-blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #F5A623 0%, transparent 70%);
  top: -200px; left: -200px;
  animation-duration: 20s;
}
.aurora-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #6B3FA0 0%, transparent 70%);
  top: 30%; right: -150px;
  animation-duration: 25s;
  animation-delay: -5s;
}
.aurora-blob-3 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #E8760A 0%, transparent 70%);
  bottom: -150px; left: 30%;
  animation-duration: 22s;
  animation-delay: -10s;
}
@keyframes aurora-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.08); }
}

/* All content above aurora */
body > *:not(.aurora) { position: relative; z-index: 1; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 2rem;
  height: 68px;
  background: var(--bg-nav);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(var(--accent-rgb), .4));
}
.nav-logo-icon img { width: 100%; height: 100%; }
.nav-logo-text {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text-primary);
}
.nav-logo-text em {
  font-style: normal;
  color: var(--text-gold);
  margin-left: .18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  display: block;
  padding: .45rem .85rem;
  border-radius: var(--radius-pill);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--dur) var(--transition), background var(--dur) var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,.06);
}
.nav-links a.active { color: var(--text-gold); }

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .8rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(var(--accent-rgb),.12) 0%, rgba(107,63,160,.12) 100%);
  border: 1px solid var(--border-gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-gold);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.05);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--dur) var(--transition), opacity var(--dur) var(--transition);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .015em;
  transition:
    transform var(--dur) var(--transition),
    box-shadow var(--dur) var(--transition),
    background var(--dur) var(--transition),
    opacity var(--dur) var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:active { transform: scale(.96); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-warm) 100%);
  color: #0D0A14;
  box-shadow: var(--glow-btn);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 32px rgba(var(--accent-rgb),.6), 0 8px 20px rgba(0,0,0,.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, #C8A96E 0%, #A07840 100%);
  color: #0D0A14;
  box-shadow: 0 0 20px rgba(200,169,110,.3), 0 4px 12px rgba(0,0,0,.4);
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 32px rgba(200,169,110,.5), 0 8px 20px rgba(0,0,0,.45);
}
.btn-gold:disabled {
  opacity: .45;
  transform: none;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────────── */
.section-label {
  display: inline-block;
  padding: .3rem .85rem;
  border-radius: var(--radius-pill);
  background: rgba(var(--accent-rgb), .1);
  border: 1px solid rgba(var(--accent-rgb), .2);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-primary);
  letter-spacing: -.02em;
}
.section-title em {
  font-style: italic;
  color: var(--text-gold);
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
  border-radius: 3px;
  margin: 1.25rem 0;
}

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur) var(--transition), transform var(--dur) var(--transition);
}
.card:hover {
  border-color: var(--border-gold);
}
.card-accent-top {
  border-top: 2px solid var(--accent-primary);
}

/* ── ICON BOXES ─────────────────────────────────────────────── */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(var(--accent-rgb), .1);
  border: 1px solid rgba(var(--accent-rgb), .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  overflow: hidden;
}
.icon-box img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.icon-box-gold {
  background: rgba(var(--accent-rgb), .08);
  border-color: rgba(var(--accent-rgb), .22);
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--transition), transform .55s var(--transition);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── SECTION SPACING ────────────────────────────────────────── */
.section {
  padding: 5.5rem 1.5rem;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  max-width: 860px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(var(--accent-rgb), .08);
  border: 1px solid rgba(var(--accent-rgb), .18);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-gold);
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}
.hero-eyebrow span { color: var(--text-gold); }

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: 1.5rem;
}
.hero-gold {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #FFC96B 50%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title em {
  font-style: italic;
  color: var(--text-muted);
  font-size: .75em;
  display: block;
  margin-top: .25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}
.hero-microcopy {
  font-size: .82rem;
  color: var(--text-faint);
  letter-spacing: .03em;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
}
.hero-trust-item svg {
  width: 13px;
  height: 13px;
  color: var(--text-gold);
  flex-shrink: 0;
}

/* ── HERO PREVIEW (SLOT PREVIEW) ────────────────────────────── */
.hero-preview {
  padding: 0 1.5rem 4rem;
  display: flex;
  justify-content: center;
}
.hero-preview-card {
  background: linear-gradient(160deg, rgba(20,16,35,.95) 0%, rgba(8,6,16,.98) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-card), var(--glow-soft);
  text-align: center;
}

.preview-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 1.25rem;
  opacity: .8;
}

.preview-reels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.preview-reel {
  width: 56px;
  height: 56px;
  background: rgba(var(--accent-rgb), .07);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  transition: transform .12s var(--transition), box-shadow .12s var(--transition);
}
.preview-reel.lit {
  background: rgba(var(--accent-rgb), .18);
  border-color: var(--accent-primary);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), .45);
  transform: scale(1.06);
}

.preview-balance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: .25rem;
}
.preview-balance-label {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.preview-balance-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-gold);
  font-variant-numeric: tabular-nums;
}
.preview-spin-btn {
  width: 100%;
  margin-top: 1rem !important;
}

/* ── BONUS STRIP ────────────────────────────────────────────── */
.bonus-strip {
  background: linear-gradient(180deg, rgba(var(--accent-rgb), .04) 0%, transparent 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bonus-inner { text-align: center; }
.bonus-header { margin-bottom: 2.5rem; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.bonus-card {
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform var(--dur) var(--transition), box-shadow var(--dur) var(--transition);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 20px rgba(var(--accent-rgb),.12);
}
.bonus-tier {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.bonus-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-gold);
  margin-bottom: .5rem;
  text-shadow: 0 0 20px rgba(var(--accent-rgb),.4);
}
.bonus-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.bonus-timer-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.bonus-timer-pill {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 1.25rem;
  background: rgba(var(--accent-rgb), .07);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
}
.bonus-timer-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.bonus-timer-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-gold);
  font-variant-numeric: tabular-nums;
  min-width: 4.5ch;
  text-align: center;
  transition: color .3s;
}
.bonus-timer-value.low-time { color: #FF6B6B; }

.bonus-actions { display: flex; justify-content: center; margin-bottom: 1rem; }
.bonus-redeem-spinning { opacity: .7; }
.bonus-toast {
  min-height: 1.5rem;
  opacity: 0;
  font-size: .875rem;
  color: var(--text-gold);
  transition: opacity .3s;
  padding: .5rem 0;
}
.bonus-toast.show { opacity: 1; }

/* ── ABOUT STRIP ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-body .section-title { margin-bottom: 1rem; }
.about-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: .975rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: border-color var(--dur) var(--transition);
}
.stat-box:hover { border-color: var(--border-gold); }
.stat-box-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-gold);
  margin-bottom: .4rem;
}
.stat-box-label {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── FEATURES ───────────────────────────────────────────────── */
.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  padding: 2rem 1.75rem;
  transition: transform var(--dur) var(--transition);
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card .icon-box { margin-bottom: 1.25rem; }
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .65rem;
  color: var(--text-primary);
}
.feature-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how { background: linear-gradient(180deg, transparent, rgba(var(--accent-rgb),.03) 50%, transparent); }
.how-inner {
  max-width: 800px;
  margin: 0 auto;
}
.how-header {
  text-align: center;
  margin-bottom: 3rem;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent-primary), transparent);
}
.how-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: border-color var(--dur) var(--transition), transform var(--dur) var(--transition);
}
.how-step:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}
.how-step-num {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-warm));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0D0A14;
  box-shadow: 0 0 16px rgba(var(--accent-rgb),.4);
  position: relative;
  z-index: 1;
}
.how-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .45rem;
  color: var(--text-primary);
}
.how-step p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ── SUPPORT / WELLBEING ────────────────────────────────────── */
.support-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.support-links-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.support-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  transition: transform var(--dur) var(--transition), border-color var(--dur) var(--transition);
  text-decoration: none;
}
.support-link-card:hover {
  transform: translateX(4px);
  border-color: var(--border-gold);
}
.support-link-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .2rem;
}
.support-link-desc {
  font-size: .8rem;
  color: var(--text-muted);
}
.support-link-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--text-gold);
  flex-shrink: 0;
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),.08) 0%, rgba(107,63,160,.06) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.cta-banner-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-banner-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.cta-banner-inner h2 em { color: var(--text-gold); }
.cta-banner-inner p {
  color: var(--text-muted);
  font-size: .975rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 0;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-disclaimer {
  font-size: .8rem;
  color: var(--text-faint);
  line-height: 1.65;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 3rem;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand { max-width: 260px; }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand-tagline {
  font-size: .82rem;
  color: var(--text-faint);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-socials {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
}
.footer-socials a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: .3rem .7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: color var(--dur) var(--transition), border-color var(--dur) var(--transition);
}
.footer-socials a:hover {
  color: var(--text-gold);
  border-color: var(--border-gold);
}

.footer-col-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color var(--dur) var(--transition);
}
.footer-col a:hover { color: var(--text-gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .8rem;
  color: var(--text-faint);
}

/* SSL + Age badges */
.ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .28rem .7rem;
  border-radius: var(--radius-pill);
  background: rgba(93,187,99,.08);
  border: 1px solid rgba(93,187,99,.18);
  font-size: .72rem;
  font-weight: 700;
  color: #5DBB63;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .1);
  border: 2px solid var(--border-gold);
  font-size: .72rem;
  font-weight: 800;
  color: var(--text-gold);
  flex-shrink: 0;
}

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.about-hero {
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  max-width: 720px;
  margin: 0 auto;
}
.about-mission { padding: 3rem 1.5rem; }
.about-mission-card { padding: 2.5rem 3rem; max-width: 820px; margin: 0 auto; }
.about-mission-card p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: .75rem;
  font-size: .975rem;
}

.about-pillars { padding: 4rem 1.5rem; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.pillar-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.pillar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.pillar-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

.about-commitment { padding: 4rem 1.5rem; }
.commitment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.commit-list { display: flex; flex-direction: column; gap: .85rem; }
.commit-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .925rem;
  color: var(--text-muted);
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  transition: border-color var(--dur) var(--transition);
}
.commit-item:hover { border-color: var(--border-gold); }
.commit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  flex-shrink: 0;
  margin-top: .4rem;
  box-shadow: 0 0 8px rgba(var(--accent-rgb),.5);
}

/* ── PLAY PAGE ──────────────────────────────────────────────── */
.play-header {
  text-align: center;
  padding: 3.5rem 1.5rem 1.5rem;
}
.disclaimer-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .3rem .9rem;
  margin-bottom: 1rem;
  letter-spacing: .02em;
}

.play-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: .75rem 1.5rem 2rem;
  flex-wrap: wrap;
}
.play-stat {
  text-align: center;
  padding: .85rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  min-width: 140px;
}
.play-stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.play-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-gold);
  font-variant-numeric: tabular-nums;
}

.play-main { padding: 0 1.5rem 4rem; max-width: 1000px; margin: 0 auto; }
.game-card { overflow: hidden; padding: 0; }
.game-card iframe { display: block; }

.play-disclaimer {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  color: var(--text-faint);
  line-height: 1.65;
  text-align: center;
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-hero {
  text-align: center;
  padding: 6rem 1.5rem 3.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.contact-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.contact-info-card {
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
}
.contact-info-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
}
.info-sub { font-size: .8rem; color: var(--text-muted); }
.info-val {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-gold);
  word-break: break-all;
}
a.info-val:hover { text-decoration: underline; }

.form-wrap { padding: 2.5rem; }
.form-wrap-header { margin-bottom: 2rem; }
.form-wrap-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
.form-wrap-header p { font-size: .875rem; color: var(--text-muted); }

.form-body { display: flex; flex-direction: column; gap: 1.25rem; }
.field-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.field { display: flex; flex-direction: column; gap: .5rem; }
.field label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: .02em;
}
.req { color: var(--accent-primary); }

.field input,
.field textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: .9rem;
  padding: .75rem 1rem;
  outline: none;
  transition: border-color var(--dur) var(--transition), box-shadow var(--dur) var(--transition);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }
.field input:focus,
.field textarea:focus {
  border-color: rgba(var(--accent-rgb), .5);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .1);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field input.invalid,
.field textarea.invalid { border-color: rgba(255,100,100,.5); }

.field-error {
  font-size: .78rem;
  color: #FF6B6B;
  display: none;
}
.field-error.show { display: block; }

.submit-row { display: flex; justify-content: flex-start; }
.success-note {
  display: none;
  padding: .85rem 1.25rem;
  background: rgba(93,187,99,.08);
  border: 1px solid rgba(93,187,99,.2);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: #5DBB63;
  font-weight: 600;
}
.success-note.show { display: block; }

.rp-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.rp-note a { color: var(--text-gold); text-decoration: underline; }

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.legal-hero {
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  max-width: 680px;
  margin: 0 auto;
}
.legal-main {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.legal-card {
  padding: 2.25rem 2.5rem;
}
.legal-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .85rem;
  color: var(--text-primary);
}
.legal-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: .65rem;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul {
  list-style: disc;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.legal-card li {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.legal-card a { color: var(--text-gold); text-decoration: underline; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .support-inner,
  .commitment-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .bonus-grid,
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav { padding: 0 1rem; gap: .75rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(8,6,16,.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: .25rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-actions,
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }

  .preview-reels { gap: .45rem; }
  .preview-reel { width: 48px; height: 48px; font-size: 1.4rem; }

  .contact-info-row { grid-template-columns: 1fr; }
  .field-duo { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { max-width: 100%; }

  .section { padding: 3.5rem 1rem; }
  .hero { padding: 5rem 1rem 3rem; }
  .bonus-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-trust { gap: .85rem; }
  .play-stats { gap: .75rem; }
  .play-stat { min-width: unset; flex: 1; }
  .how-steps::before { display: none; }
}
