/* ============================================================
   jackpotvipzone – Global Stylesheet
   Ultra-Premium VIP Casino Design | jackpotvipzone.com
   Identity: Obsidian Black / Imperial Gold / Electric Purple / Neon
   ============================================================ */

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

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

:root {
  /* ── Palette: obsidian black + imperial gold + electric purple ── */
  --bg:          #030308;
  --bg-2:        #060410;
  --surface:     #0B0918;
  --surface-2:   #100D20;
  --surface-3:   #16122A;
  --border:      rgba(139,92,246,.24);
  --border-2:    rgba(212,175,55,.32);
  --border-gold: rgba(240,192,64,.45);

  /* Primary accent: Imperial Gold */
  --accent:        #D4AF37;
  --accent-bright: #FFD700;
  --accent-dim:    rgba(212,175,55,.14);
  --accent-glow:   rgba(212,175,55,.55);
  --gold:          #FFD700;
  --gold-dim:      rgba(255,215,0,.14);
  --gold-2:        #F0C040;

  /* Secondary: Electric Purple */
  --purple:        #7C3AED;
  --purple-bright: #A78BFA;
  --purple-dim:    rgba(124,58,237,.16);
  --purple-glow:   rgba(124,58,237,.50);

  /* Tertiary: Neon Magenta */
  --neon:        #E040FB;
  --neon-dim:    rgba(224,64,251,.12);
  --neon-teal:   #00F5D4;

  /* Win green */
  --win:         #00E676;

  --text:        #FAF7F0;
  --text-2:      rgba(250,247,240,.66);
  --muted:       rgba(200,188,160,.72);
  --error:       #FF3D57;
  --success:     #00E676;

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-accent:  'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --page-x:      clamp(1.25rem, 6vw, 5rem);
  --section-y:   clamp(4rem, 9vw, 7.5rem);
  --radius-lg:   24px;
  --radius-md:   14px;
  --radius-sm:   10px;
  --radius-pill: 99px;

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

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

body {
  background:
    radial-gradient(ellipse 80% 50% at 8% -10%, rgba(124,58,237,.28) 0%, transparent 45%),
    radial-gradient(ellipse 60% 40% at 92% 8%, rgba(212,175,55,.16) 0%, transparent 40%),
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(124,58,237,.22) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(224,64,251,.08) 0%, transparent 40%),
    linear-gradient(175deg, #030308 0%, #060410 40%, #040210 100%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.72;
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: var(--font-body); cursor: pointer; }
ul, ol { list-style: none; }

/* ── NOISE + GRID OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.032'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

/* Subtle grid overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── AURORA (more dramatic) ── */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
  animation: aurora-drift 28s ease-in-out infinite alternate;
}

.nav-logo-img,
.footer-logo-img { display: none; }

.aurora-blob-1 {
  width: 900px; height: 600px;
  top: -280px; left: -220px;
  background: radial-gradient(ellipse, rgba(124,58,237,.35) 0%, transparent 68%);
}
.aurora-blob-2 {
  width: 700px; height: 480px;
  top: -30px; right: -200px;
  background: radial-gradient(ellipse, rgba(212,175,55,.14) 0%, transparent 65%);
  animation-delay: -10s;
  animation-duration: 22s;
}
.aurora-blob-3 {
  width: 500px; height: 380px;
  bottom: 8%; left: 30%;
  background: radial-gradient(ellipse, rgba(124,58,237,.18) 0%, transparent 70%);
  animation-delay: -18s;
  animation-duration: 32s;
}
@keyframes aurora-drift {
  from { transform: translate(0, 0) scale(1) rotate(0deg); }
  to   { transform: translate(2%, 4%) scale(1.10) rotate(2deg); }
}

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 var(--page-x);
  height: 72px;
  background: rgba(3,3,8,.88);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border-bottom: 1px solid rgba(212,175,55,.26);
  box-shadow:
    0 8px 48px rgba(0,0,0,.70),
    0 0 40px rgba(124,58,237,.08),
    0 1px 0 rgba(212,175,55,.10) inset;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, #110D24 0%, #1C1636 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(212,175,55,.36);
  box-shadow:
    0 0 20px rgba(124,58,237,.35),
    0 0 40px rgba(212,175,55,.20),
    0 0 64px rgba(124,58,237,.12);
  flex-shrink: 0;
  transition: box-shadow .3s var(--ease);
}
.nav-logo-icon img {
  width: 28px;
  height: 28px;
  display: block;
  filter:
    drop-shadow(0 0 8px rgba(212,175,55,.50))
    drop-shadow(0 0 18px rgba(124,58,237,.32));
  transition: transform .30s var(--ease), filter .30s var(--ease);
}
.nav-logo:hover .nav-logo-icon {
  box-shadow:
    0 0 28px rgba(124,58,237,.50),
    0 0 56px rgba(212,175,55,.28),
    0 0 80px rgba(124,58,237,.18);
}
.nav-logo:hover .nav-logo-icon img {
  transform: translateY(-1px) rotate(-10deg) scale(1.08);
  filter:
    drop-shadow(0 0 14px rgba(212,175,55,.65))
    drop-shadow(0 0 28px rgba(124,58,237,.42));
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.nav-logo-text em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s var(--ease);
  position: relative;
  padding-bottom: 2px;
  font-family: var(--font-accent);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--purple), var(--accent-bright));
  transition: width .28s var(--ease-out);
  box-shadow: 0 0 8px rgba(212,175,55,.60);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent-bright); }
.nav-links a.active::after { width: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-bright)); }

/* Age pill */
.nav-pill {
  font-size: .62rem;
  font-weight: 700;
  color: var(--accent-bright);
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(124,58,237,.10));
  border: 1px solid rgba(212,175,55,.32);
  padding: .30rem .90rem;
  border-radius: var(--radius-pill);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-accent);
  box-shadow: 0 0 18px rgba(212,175,55,.16);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 23px; height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all .25s;
}

/* ── UTILITY CLASSES ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: var(--page-x);
  padding-right: var(--page-x);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .60rem;
  font-weight: 700;
  color: var(--purple-bright);
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-family: var(--font-accent);
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 8px rgba(167,139,250,.80);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(167,139,250,.80); }
  50%       { opacity: .5; box-shadow: 0 0 3px rgba(167,139,250,.40); }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0,0,0,.50);
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-body {
  font-size: clamp(.9rem, 1.5vw, 1.03rem);
  color: var(--text-2);
  max-width: 640px;
  line-height: 1.82;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .92rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .26s var(--ease);
  cursor: pointer;
  border: none;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

/* Primary: Gold-to-Purple power gradient */
.btn-primary {
  background: linear-gradient(125deg, #D4AF37 0%, #7C3AED 55%, #E040FB 100%);
  color: #fff;
  border: 1px solid rgba(212,175,55,.35);
  box-shadow:
    0 0 32px rgba(124,58,237,.50),
    0 0 65px rgba(212,175,55,.22),
    0 0 100px rgba(224,64,251,.14);
  text-shadow: 0 1px 6px rgba(0,0,0,.45);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, #FFD700 0%, #A78BFA 55%, #F06AFF 100%);
  opacity: 0;
  transition: opacity .26s var(--ease);
  pointer-events: none;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(255,255,255,.22) 36%,
    rgba(255,215,0,.32) 50%,
    rgba(167,139,250,.20) 66%,
    transparent 100%
  );
  transform: translateX(-130%);
  opacity: 0;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 56px rgba(124,58,237,.65),
    0 0 100px rgba(212,175,55,.32),
    0 0 130px rgba(224,64,251,.22);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover::after {
  opacity: 1;
  animation: btn-shimmer 1s var(--ease) both;
}
.btn-primary:active::after { opacity: .7; }

@keyframes btn-shimmer {
  0%   { transform: translateX(-130%); }
  55%  { transform: translateX(0%); }
  100% { transform: translateX(130%); }
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(212,175,55,.34);
}
.btn-ghost:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  transform: translateY(-2px);
  background: rgba(212,175,55,.05);
  box-shadow:
    0 0 28px rgba(212,175,55,.22),
    0 0 65px rgba(124,58,237,.12);
}

/* Gold */
.btn-gold {
  background: linear-gradient(130deg, #FFD700 0%, #D4AF37 48%, #7C3AED 120%);
  color: #050308;
  font-weight: 700;
  border: 1px solid rgba(212,175,55,.36);
  text-shadow: none;
  box-shadow:
    0 0 26px rgba(212,175,55,.44),
    0 0 58px rgba(212,175,55,.22),
    0 0 80px rgba(124,58,237,.14),
    0 0 0 1px rgba(212,175,55,.14) inset;
}
.btn-gold:hover {
  opacity: .94;
  transform: translateY(-3px);
  box-shadow:
    0 0 36px rgba(212,175,55,.60),
    0 0 80px rgba(124,58,237,.24),
    0 12px 40px rgba(0,0,0,.30);
}

/* Pulse glow CTA variant */
.btn-primary-pulse {
  animation: btn-pulse-glow 2.5s ease-in-out infinite;
}
@keyframes btn-pulse-glow {
  0%, 100% {
    box-shadow:
      0 0 32px rgba(124,58,237,.50),
      0 0 65px rgba(212,175,55,.22);
  }
  50% {
    box-shadow:
      0 0 48px rgba(124,58,237,.75),
      0 0 90px rgba(212,175,55,.38),
      0 0 120px rgba(224,64,251,.25);
  }
}

.btn:focus-visible,
.btn-ghost:focus-visible,
.btn-primary:focus-visible,
.btn-gold:focus-visible {
  outline: 2px solid rgba(212,175,55,.90);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(124,58,237,.20), 0 0 34px rgba(212,175,55,.28);
}
.btn:active { transform: translateY(0) scale(.98); }
.btn:disabled { opacity: .36; cursor: not-allowed; transform: none !important; }

/* ── CARDS ── */
.card {
  background: linear-gradient(160deg, rgba(124,58,237,.05) 0%, var(--surface) 55%, rgba(3,3,8,.95) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 16px 52px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.032),
    inset 0 0 0 0 rgba(212,175,55,0);
  transition:
    border-color .28s var(--ease),
    transform .28s var(--ease),
    box-shadow .28s var(--ease);
}
.card:hover {
  border-color: rgba(212,175,55,.40);
  transform: translateY(-4px);
  box-shadow:
    0 24px 68px rgba(0,0,0,.55),
    0 0 50px rgba(124,58,237,.14),
    inset 0 1px 0 rgba(212,175,55,.06);
}
.card-accent-top {
  position: relative;
  overflow: hidden;
}
.card-accent-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--accent-bright), var(--neon));
  box-shadow: 0 0 12px rgba(212,175,55,.50);
}

.icon-box {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--purple-dim);
  border: 1px solid rgba(124,58,237,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(124,58,237,.20);
}
.icon-box-gold {
  background: var(--gold-dim);
  border-color: rgba(212,175,55,.28);
  box-shadow: 0 0 16px rgba(212,175,55,.18);
}

/* ── DIVIDER ── */
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--accent-bright), transparent);
  margin: 1.5rem 0;
  box-shadow: 0 0 10px rgba(212,175,55,.35);
}

/* ── FADE-IN ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .70s var(--ease-out), transform .70s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(5.5rem, 13vw, 10.5rem) var(--page-x) clamp(4rem, 8vw, 6.5rem);
  text-align: center;
}

/* Decorative ring behind hero content */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.06);
  pointer-events: none;
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,.04);
  pointer-events: none;
  z-index: -1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-accent);
  font-size: .65rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .24em;
  text-transform: uppercase;
  border: 1px solid rgba(124,58,237,.36);
  padding: .38rem 1.4rem;
  border-radius: var(--radius-pill);
  margin-bottom: 2.4rem;
  background: linear-gradient(135deg, rgba(124,58,237,.08), rgba(212,175,55,.04));
  box-shadow: 0 0 24px rgba(124,58,237,.12);
}
.hero-eyebrow span { color: var(--purple-bright); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 9vw, 7rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-shadow:
    0 8px 50px rgba(0,0,0,.70),
    0 0 40px rgba(124,58,237,.22),
    0 0 20px rgba(212,175,55,.14);
  margin-bottom: 1.8rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 60%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  filter: drop-shadow(0 0 24px rgba(212,175,55,.45));
}
.hero-title .hero-gold {
  background: linear-gradient(135deg, #FFE082 0%, #FFD700 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255,215,0,.55));
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.82;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .42rem;
  font-size: .75rem;
  color: var(--muted);
  font-family: var(--font-accent);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-trust-item svg { width: 13px; height: 13px; color: var(--purple-bright); }

/* Mini slot preview in hero */
.hero-preview {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
  padding: 0 var(--page-x) clamp(3.5rem, 7vw, 5.5rem);
}
.hero-preview-card {
  background: linear-gradient(158deg, rgba(124,58,237,.10) 0%, rgba(11,9,24,.96) 100%);
  border: 1px solid rgba(212,175,55,.32);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow:
    0 36px 110px rgba(0,0,0,.72),
    0 0 0 1px rgba(124,58,237,.16),
    0 0 100px rgba(124,58,237,.14),
    0 0 50px rgba(212,175,55,.10);
  position: relative;
  overflow: hidden;
}
.hero-preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--accent-bright), var(--neon));
  box-shadow: 0 0 18px rgba(212,175,55,.60);
}
.hero-preview-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.20), transparent);
}
.preview-label {
  font-family: var(--font-accent);
  font-size: .60rem;
  color: var(--muted);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  text-align: center;
}
.preview-reels {
  display: flex;
  justify-content: center;
  gap: .7rem;
  margin-bottom: 1.4rem;
}
.preview-reel {
  width: 78px; height: 78px;
  background: linear-gradient(155deg, rgba(124,58,237,.08) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: inset 0 2px 8px rgba(0,0,0,.40);
}
.preview-reel.lit {
  border-color: var(--accent-bright);
  box-shadow:
    0 0 22px rgba(212,175,55,.45),
    0 0 44px rgba(124,58,237,.22),
    inset 0 0 14px rgba(212,175,55,.10);
}
.preview-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  background: rgba(3,3,8,.72);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212,175,55,.16);
  box-shadow: inset 0 1px 0 rgba(212,175,55,.06);
}
.preview-balance-label {
  font-family: var(--font-accent);
  font-size: .65rem;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.preview-balance-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(212,175,55,.45));
}
.preview-spin-btn { width: 100%; margin-top: 1rem; }

/* ── HOME SECTIONS ── */
.section { position: relative; z-index: 1; }

/* About strip */
.about-strip { padding: var(--section-y) var(--page-x); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}
.about-body p { color: var(--text-2); margin-bottom: 1.1rem; font-size: .97rem; }
.about-body p:last-child { margin-bottom: 0; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.stat-box {
  background: linear-gradient(155deg, rgba(124,58,237,.06) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  text-align: center;
  transition: border-color .24s var(--ease), box-shadow .24s var(--ease), transform .24s var(--ease);
  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,.25), transparent);
}
.stat-box:hover {
  border-color: rgba(212,175,55,.38);
  box-shadow: 0 0 34px rgba(124,58,237,.12), 0 8px 32px rgba(0,0,0,.30);
  transform: translateY(-2px);
}
.stat-box-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .40rem;
  letter-spacing: .02em;
  filter: drop-shadow(0 0 18px rgba(212,175,55,.32));
}
.stat-box-label { font-size: .78rem; color: var(--muted); line-height: 1.45; }

/* Features */
.features {
  padding: var(--section-y) var(--page-x);
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(124,58,237,.10) 0%, transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.8rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1140px;
  margin: 0 auto;
}
.feature-card { padding: 2.2rem 1.9rem; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 1.1rem 0 .65rem;
}
.feature-card p { font-size: .9rem; color: var(--text-2); line-height: 1.76; }

/* How it works */
.how { padding: var(--section-y) var(--page-x); }
.how-inner { max-width: 1140px; margin: 0 auto; }
.how-header { max-width: 580px; margin-bottom: 3.8rem; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 33px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--purple), rgba(212,175,55,.35), var(--accent));
  box-shadow: 0 0 8px rgba(212,175,55,.20);
}
.how-step { text-align: center; }
.how-step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--surface), var(--surface-3));
  border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 26px rgba(124,58,237,.30),
    0 0 52px rgba(212,175,55,.12);
}
.how-step-num {
  background: var(--surface-2);
}
.how-step-num-inner {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.how-step p { font-size: .88rem; color: var(--text-2); }

/* Support */
.support {
  padding: var(--section-y) var(--page-x);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.support-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
}
.support-links-grid { display: flex; flex-direction: column; gap: 1.1rem; }
.support-link-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.3rem 1.6rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: all .24s var(--ease);
}
.support-link-card:hover {
  background: var(--surface-2);
  border-color: rgba(212,175,55,.32);
  transform: translateX(6px);
  box-shadow: -4px 0 20px rgba(212,175,55,.08);
}
.support-link-name { font-weight: 600; font-size: .96rem; margin-bottom: .15rem; }
.support-link-desc { font-size: .8rem; color: var(--muted); }
.support-link-arrow { margin-left: auto; color: var(--muted); font-size: .9rem; transition: color .2s, transform .2s; }
.support-link-card:hover .support-link-arrow { color: var(--accent-bright); transform: translate(2px,-2px); }

/* Home CTA Banner */
.cta-banner {
  margin: var(--section-y) auto;
  max-width: 1140px;
  padding: 0 var(--page-x);
}
.cta-banner-inner {
  background:
    radial-gradient(ellipse 80% 80% at 50% 120%, rgba(124,58,237,.18) 0%, transparent 60%),
    linear-gradient(140deg, rgba(124,58,237,.12) 0%, var(--surface) 40%, var(--bg-2) 100%);
  border: 1px solid rgba(212,175,55,.32);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 5.5vw, 5.5rem) clamp(2rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 100px rgba(124,58,237,.12),
    0 0 200px rgba(212,175,55,.06);
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--accent-bright), var(--neon), transparent);
  box-shadow: 0 0 16px rgba(212,175,55,.50);
}
.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.24), transparent);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.cta-banner h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-banner p { color: var(--text-2); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   HOME: jackpotvipzone VIP Boost Bonus
   ============================================================ */
.bonus-strip {
  padding: var(--section-y) var(--page-x);
  background:
    radial-gradient(circle at 12% 10%, rgba(124,58,237,.20) 0%, transparent 40%),
    radial-gradient(circle at 88% 30%, rgba(212,175,55,.12) 0%, transparent 42%),
    radial-gradient(circle at 50% 90%, rgba(224,64,251,.08) 0%, transparent 40%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.bonus-inner { max-width: 1140px; margin: 0 auto; }
.bonus-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.6rem;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2rem;
}
.bonus-card {
  padding: 2.1rem 1.6rem;
  position: relative;
  overflow: hidden;
  border-color: rgba(212,175,55,.30);
  background: linear-gradient(172deg, rgba(124,58,237,.12) 0%, rgba(11,9,24,.88) 100%);
}
.bonus-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 30% 20%, rgba(124,58,237,.32) 0%, transparent 55%),
    radial-gradient(circle at 70% 10%, rgba(212,175,55,.22) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .28s var(--ease);
  pointer-events: none;
}
.bonus-card:hover::before { opacity: 1; }

.bonus-tier {
  font-family: var(--font-accent);
  font-size: .66rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--purple-bright);
}
.bonus-amount {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
  margin: .75rem 0 .40rem;
  filter: drop-shadow(0 0 20px rgba(212,175,55,.32));
}
.bonus-desc { color: var(--text-2); font-size: .9rem; line-height: 1.74; }

.bonus-timer-row { display: flex; justify-content: center; margin-bottom: 1.4rem; }
.bonus-timer-pill {
  width: 100%;
  max-width: 580px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,175,55,.30);
  background:
    linear-gradient(135deg, rgba(124,58,237,.06) 0%, rgba(3,3,8,.80) 100%);
  box-shadow: 0 0 54px rgba(124,58,237,.07), inset 0 1px 0 rgba(212,175,55,.06);
}
.bonus-timer-label {
  font-family: var(--font-accent);
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .65rem;
  font-weight: 600;
}
.bonus-timer-value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(212,175,55,.32));
}
.bonus-timer-value.low-time {
  animation: nova-flicker 1.1s ease-in-out infinite;
}
.bonus-actions { display: flex; justify-content: center; gap: 1.1rem; }
.bonus-toast {
  text-align: center;
  margin-top: 1.2rem;
  min-height: 1.25em;
  font-size: .92rem;
  color: var(--text-2);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.bonus-toast.show { opacity: 1; transform: none; }
.bonus-redeem-spinning {
  animation: bonus-redeem-spin .85s var(--ease) both;
}
@keyframes bonus-redeem-spin {
  0%   { transform: translateY(0) rotate(0deg); }
  35%  { transform: translateY(-2px) rotate(14deg); }
  70%  { transform: translateY(0) rotate(-10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes nova-flicker {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 16px rgba(124,58,237,.20)); }
  50%       { filter: brightness(1.8) drop-shadow(0 0 32px rgba(212,175,55,.38)); }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) var(--page-x) clamp(3.5rem, 6vw, 5.5rem);
}
.about-hero .section-title { max-width: 660px; margin: .5rem auto 1.25rem; }
.about-hero .section-body { margin: 0 auto; text-align: center; }

.about-mission {
  position: relative; z-index: 1;
  padding: 0 var(--page-x) var(--section-y);
}
.about-mission-card {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.8rem);
}
.about-mission-card p { color: var(--text-2); font-size: .97rem; margin-bottom: 1rem; max-width: 780px; }
.about-mission-card p:last-child { margin-bottom: 0; }

.about-pillars {
  position: relative; z-index: 1;
  padding: var(--section-y) var(--page-x);
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(124,58,237,.10) 0%, transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1140px;
  margin: 3rem auto 0;
}
.pillar-card { padding: 2.2rem 1.8rem; }
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin: .95rem 0 .5rem;
}
.pillar-card p { font-size: .88rem; color: var(--text-2); line-height: 1.70; }

.about-commitment {
  position: relative; z-index: 1;
  padding: var(--section-y) var(--page-x);
}
.commitment-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
}
.commit-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.commit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.15rem 1.4rem;
  background: linear-gradient(140deg, rgba(124,58,237,.06) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .9rem;
  color: var(--text-2);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.commit-item:hover {
  border-color: rgba(212,175,55,.26);
  box-shadow: 0 0 22px rgba(124,58,237,.08);
}
.commit-dot {
  width: 8px; height: 8px;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple));
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .48rem;
  box-shadow: 0 0 10px rgba(124,58,237,.55);
}
.about-cta { position: relative; z-index: 1; }

/* ============================================================
   PLAY PAGE
   ============================================================ */
.play-header {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) var(--page-x) 2rem;
}
.play-header p.disclaimer-tag {
  font-family: var(--font-accent);
  font-size: .66rem;
  color: var(--muted);
  letter-spacing: .20em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.play-header .section-title { max-width: 560px; margin: .5rem auto 0; }

.play-stats {
  position: relative; z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  flex-wrap: wrap;
  padding: 2rem var(--page-x) 2.5rem;
}
.play-stat { text-align: center; }
.play-stat-label {
  font-family: var(--font-accent);
  font-size: .63rem;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.play-stat-value {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.01em;
  filter: drop-shadow(0 0 18px rgba(212,175,55,.32));
}

.play-main {
  position: relative; z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--page-x) 6rem;
}
.game-card { margin-bottom: 1.6rem; }
.game-top {
  background: linear-gradient(148deg, rgba(124,58,237,.10) 0%, rgba(212,175,55,.05) 100%);
  padding: 2.6rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.win-message {
  min-height: 2rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(212,175,55,.42));
}
.win-message.show { opacity: 1; }

.reels { display: flex; justify-content: center; gap: .9rem; }
.reel {
  width: 92px; height: 92px;
  background: linear-gradient(155deg, rgba(124,58,237,.08) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 12px rgba(0,0,0,.45);
}
.reel.spinning .reel-sym { animation: sym-blur .07s steps(1) infinite; }
.reel.win-reel {
  border-color: var(--accent-bright);
  box-shadow:
    0 0 28px rgba(212,175,55,.48),
    0 0 56px rgba(124,58,237,.20),
    inset 0 0 14px rgba(212,175,55,.12);
  animation: reel-pulse .5s ease 3;
}
@keyframes reel-pulse {
  0%,100% { box-shadow: 0 0 28px rgba(212,175,55,.48); }
  50%      { box-shadow: 0 0 58px rgba(124,58,237,.32); }
}
@keyframes sym-blur { to {} }

.game-controls { padding: 1.9rem 2.6rem; }
.bet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.bet-row-label {
  font-family: var(--font-accent);
  font-size: .66rem;
  color: var(--muted);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.bet-options { display: flex; gap: .55rem; flex-wrap: wrap; }
.bet-opt {
  padding: .36rem .95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-accent);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .2s;
}
.bet-opt:hover, .bet-opt.active {
  border-color: var(--purple);
  color: var(--accent-bright);
  background: var(--purple-dim);
  box-shadow: 0 0 14px rgba(124,58,237,.22);
}
.spin-row { display: flex; justify-content: center; }
.spin-btn-el { min-width: 210px; justify-content: center; font-size: .94rem; }
.spin-icon-el { display: inline-block; transition: transform .2s; }

.paytable {
  padding: 1.6rem 2.6rem 2.4rem;
  border-top: 1px solid var(--border);
}
.paytable h3 {
  font-family: var(--font-accent);
  font-size: .63rem;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.paytable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
  gap: .65rem;
}
.pay-item { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-2); }
.pay-mult { color: var(--accent-bright); font-weight: 600; }

.play-disclaimer {
  background: linear-gradient(140deg, rgba(124,58,237,.05) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.7rem;
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.70;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) var(--page-x) clamp(3rem, 6vw, 5rem);
}
.contact-hero .section-title { max-width: 540px; margin: .5rem auto 1.25rem; }
.contact-hero .section-body { margin: 0 auto; }

.contact-main {
  position: relative; z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--page-x) 6rem;
}
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.6rem;
}
.contact-info-card { padding: 2rem; }
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin: .95rem 0 .3rem;
}
.contact-info-card .info-sub { font-size: .8rem; color: var(--muted); margin-bottom: .4rem; }
.contact-info-card .info-val { font-size: .93rem; color: var(--accent-bright); font-weight: 500; text-decoration: none; }
.contact-info-card a.info-val:hover { text-decoration: underline; }

.form-wrap { margin-bottom: 1.6rem; }
.form-wrap-header {
  padding: 2.3rem 2.9rem 1.7rem;
  border-bottom: 1px solid var(--border);
}
.form-wrap-header h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: .40rem;
}
.form-wrap-header p { font-size: .9rem; color: var(--text-2); }
.form-body { padding: 2.3rem 2.9rem 3rem; }

.field-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}
.field { display: flex; flex-direction: column; gap: .46rem; margin-bottom: 1.4rem; }
.field:last-child { margin-bottom: 0; }
.field label {
  font-family: var(--font-accent);
  font-size: .72rem;
  color: var(--text-2);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.field label .req { color: var(--purple-bright); margin-left: 1px; }
.field input,
.field textarea {
  background: linear-gradient(155deg, rgba(124,58,237,.04) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .86rem 1.1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color .22s, box-shadow .22s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,.16);
}
.field input.invalid,
.field textarea.invalid { border-color: var(--error); }
.field textarea { min-height: 155px; resize: none; line-height: 1.67; }
.field-error { font-size: .76rem; color: var(--error); display: none; }
.field-error.show { display: block; }

.submit-row { display: flex; justify-content: flex-end; margin-top: 1.9rem; }
.success-note {
  display: none;
  background: rgba(0,230,118,.06);
  border: 1px solid rgba(0,230,118,.22);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  font-size: .9rem;
  color: var(--success);
  text-align: center;
  margin-top: 1.4rem;
}
.success-note.show { display: block; }

.rp-note {
  background: linear-gradient(140deg, rgba(124,58,237,.05) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.7rem;
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
}
.rp-note a { color: var(--accent-bright); text-decoration: none; }
.rp-note a:hover { text-decoration: underline; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) var(--page-x) clamp(3rem, 6vw, 5rem);
}
.legal-hero .section-title { max-width: 620px; margin: .5rem auto 1.25rem; }
.legal-hero .section-body { margin: 0 auto; }

.legal-main {
  position: relative; z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--page-x) 6rem;
  display: grid;
  gap: 1.4rem;
}
.legal-card { padding: 2.1rem 2.3rem; }
.legal-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.legal-card p,
.legal-card li { color: var(--text-2); font-size: .93rem; line-height: 1.82; }
.legal-card ul { list-style: disc; margin-left: 1.25rem; }
.legal-card a { color: var(--accent-bright); text-decoration: none; }
.legal-card a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER (shared)
   ============================================================ */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 4rem var(--page-x) 2.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124,58,237,.07) 0%, transparent 60%),
    rgba(3,3,8,.82);
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-disclaimer {
  font-size: .78rem;
  color: var(--muted);
  padding-bottom: 2.6rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.6rem;
  max-width: 700px;
  line-height: 1.70;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.2rem;
  margin-bottom: 2.6rem;
}
.footer-brand-tagline {
  font-size: .84rem;
  color: var(--muted);
  margin-top: .85rem;
  max-width: 250px;
  line-height: 1.65;
}
.footer-col-title {
  font-family: var(--font-accent);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .84rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2.1rem;
  border-top: 1px solid var(--border);
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-socials a {
  font-size: 0.70rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all 0.22s var(--ease);
  line-height: 1;
  font-family: var(--font-accent);
  letter-spacing: .06em;
}
.footer-socials a:hover {
  color: var(--accent-bright);
  border-color: rgba(212,175,55,.28);
  box-shadow: 0 0 14px rgba(212,175,55,.12);
}
.footer-copy { font-size: .78rem; color: var(--muted); }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--purple);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  color: var(--purple-bright);
  letter-spacing: .01em;
  box-shadow: 0 0 14px rgba(124,58,237,.24);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .features-grid,
  .how-steps      { grid-template-columns: 1fr 1fr; }
  .pillars-grid   { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
  .bonus-grid     { grid-template-columns: 1fr; }
  .about-grid,
  .support-inner,
  .commitment-inner { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(3,3,8,.98);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border);
    padding: 1.6rem var(--page-x);
    gap: 1.3rem;
    z-index: 499;
  }
  .nav-toggle { display: flex; }
  .features-grid,
  .how-steps          { grid-template-columns: 1fr; }
  .pillars-grid       { grid-template-columns: 1fr; }
  .contact-info-row   { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .field-duo          { grid-template-columns: 1fr; }
  .form-body          { padding: 1.5rem; }
  .form-wrap-header   { padding: 1.7rem; }
  .legal-card         { padding: 1.5rem; }
  .reels              { gap: .5rem; }
  .reel               { width: 66px; height: 66px; font-size: 1.75rem; }
  .preview-reel       { width: 60px; height: 60px; font-size: 1.5rem; }
  .about-stats        { grid-template-columns: 1fr 1fr; }
  .bonus-timer-pill   { flex-direction: column; align-items: flex-start; }
  .bonus-actions      { flex-direction: column; }
}

@media (max-width: 380px) {
  .reel   { width: 56px; height: 56px; font-size: 1.5rem; }
  .reels  { gap: .35rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .aurora-blob { animation: none !important; }
  .reveal { transition: none !important; transform: none !important; opacity: 1 !important; }
  .bonus-timer-value.low-time { animation: none !important; }
  .bonus-redeem-spinning { animation: none !important; }
  .btn-primary:hover::after { animation: none !important; }
  .btn-primary-pulse { animation: none !important; }
  .section-label::before { animation: none !important; }
}
