/* ============================================================
   megaspinroulette – Global Stylesheet
   Ultra-Premium VIP Design | megaspinroulette.com
   Identity: Obsidian Black / Emerald / Royal Gold / Ivory
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:opsz,wght@14..32,100..900&display=swap');

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

:root {
  --bg:          #06060E;
  --bg-2:        #0A0A14;
  --surface:     #0E0E1A;
  --surface-2:   #141422;
  --surface-3:   #1A1A2E;
  --border:      rgba(52,211,153,.10);
  --border-2:    rgba(245,158,11,.12);
  --border-accent: rgba(52,211,153,.30);

  --accent:        #10B981;
  --accent-bright: #34D399;
  --accent-dim:    rgba(52,211,153,.05);
  --accent-glow:   rgba(52,211,153,.45);
  --emerald:       #34D399;
  --emerald-dim:   rgba(52,211,153,.05);
  --emerald-2:     #6EE7B7;
  --emerald-light: #A7F3D0;

  --gold:          #F59E0B;
  --gold-bright:   #FBBF24;
  --gold-deep:     #D97706;
  --gold-dim:      rgba(245,158,11,.06);
  --gold-glow:     rgba(245,158,11,.35);

  --neon:        #34D399;
  --neon-dim:    rgba(52,211,153,.04);
  --neon-warm:   #F59E0B;

  --amber:       #FBBF24;
  --amber-dim:   rgba(251,191,36,.05);

  --win:         #34D399;

  --text:        #EAEEF5;
  --text-2:      rgba(234,238,245,.48);
  --muted:       rgba(176,186,205,.48);
  --error:       #EF4444;
  --success:     #34D399;

  --font-display: 'Rajdhani', sans-serif;
  --font-accent:  'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --page-x:      clamp(1.25rem, 6vw, 5rem);
  --section-y:   clamp(4.5rem, 10vw, 8rem);
  --radius-lg:   14px;
  --radius-md:   10px;
  --radius-sm:   6px;
  --radius-pill: 99px;

  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

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

body {
  background:
    radial-gradient(ellipse 65% 40% at 10% -8%, rgba(52,211,153,.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 90% 5%, rgba(245,158,11,.05) 0%, transparent 45%),
    radial-gradient(ellipse 55% 40% at 50% 108%, rgba(52,211,153,.04) 0%, transparent 55%),
    radial-gradient(ellipse 30% 22% at 72% 58%, rgba(245,158,11,.02) 0%, transparent 40%),
    linear-gradient(168deg, #06060E 0%, #0A0A14 40%, #04040C 100%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  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.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(52,211,153,.006) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,211,153,.006) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}

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

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

.aurora-blob-1 {
  width: 950px; height: 620px;
  top: -300px; left: -240px;
  background: radial-gradient(ellipse, rgba(52,211,153,.18) 0%, transparent 65%);
}
.aurora-blob-2 {
  width: 700px; height: 480px;
  top: -40px; right: -220px;
  background: radial-gradient(ellipse, rgba(245,158,11,.08) 0%, transparent 60%);
  animation-delay: -14s;
  animation-duration: 32s;
}
.aurora-blob-3 {
  width: 520px; height: 380px;
  bottom: 6%; left: 28%;
  background: radial-gradient(ellipse, rgba(52,211,153,.06) 0%, transparent 65%);
  animation-delay: -22s;
  animation-duration: 42s;
}
@keyframes aurora-drift {
  from { transform: translate(0, 0) scale(1) rotate(0deg); }
  to   { transform: translate(3%, 5%) scale(1.10) rotate(3deg); }
}

/* ── 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: 74px;
  background: rgba(6,6,14,.94);
  backdrop-filter: blur(48px) saturate(180%);
  -webkit-backdrop-filter: blur(48px) saturate(180%);
  border-bottom: 1px solid rgba(52,211,153,.08);
  box-shadow:
    0 12px 55px rgba(0,0,0,.80),
    0 0 45px rgba(52,211,153,.03),
    0 1px 0 rgba(52,211,153,.03) inset;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #0E0E1A 0%, #1A1A2E 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(52,211,153,.20);
  box-shadow:
    0 0 20px rgba(52,211,153,.18),
    0 0 40px rgba(245,158,11,.06),
    inset 0 1px 0 rgba(255,255,255,.02);
  flex-shrink: 0;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.nav-logo-icon img {
  width: 26px;
  height: 26px;
  display: block;
  filter:
    drop-shadow(0 0 8px rgba(52,211,153,.35))
    drop-shadow(0 0 18px rgba(245,158,11,.12));
  transition: transform .35s var(--ease-spring), filter .35s var(--ease);
}
.nav-logo:hover .nav-logo-icon {
  box-shadow:
    0 0 30px rgba(52,211,153,.40),
    0 0 60px rgba(245,158,11,.14),
    0 0 85px rgba(52,211,153,.08);
  transform: scale(1.04);
}
.nav-logo:hover .nav-logo-icon img {
  transform: translateY(-1px) rotate(-12deg) scale(1.1);
  filter:
    drop-shadow(0 0 12px rgba(52,211,153,.50))
    drop-shadow(0 0 28px rgba(245,158,11,.25));
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text);
  line-height: 1;
  text-transform: uppercase;
}
.nav-logo-text em {
  font-style: normal;
  background: linear-gradient(135deg, var(--emerald-light), var(--accent-bright), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.nav-links a {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: .20em;
  text-transform: uppercase;
  transition: color .25s var(--ease), text-shadow .25s var(--ease);
  position: relative;
  padding-bottom: 2px;
  font-family: var(--font-accent);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transition: width .32s var(--ease-out);
  box-shadow: 0 0 8px rgba(52,211,153,.35);
  border-radius: 1px;
}
.nav-links a:hover {
  color: var(--text);
  text-shadow: 0 0 18px rgba(52,211,153,.15);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active {
  color: var(--accent-bright);
  text-shadow: 0 0 16px rgba(52,211,153,.22);
}
.nav-links a.active::after {
  width: 100%;
  background: linear-gradient(90deg, var(--emerald), var(--accent-bright));
}

.nav-pill {
  font-size: .56rem;
  font-weight: 600;
  color: var(--accent-bright);
  background: linear-gradient(135deg, rgba(52,211,153,.05), rgba(245,158,11,.03));
  border: 1px solid rgba(52,211,153,.16);
  padding: .32rem .85rem;
  border-radius: var(--radius-pill);
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-accent);
  box-shadow: 0 0 16px rgba(52,211,153,.06);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; 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: .58rem;
  font-weight: 600;
  color: var(--emerald);
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-family: var(--font-accent);
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px rgba(52,211,153,.75), 0 0 18px rgba(52,211,153,.35);
  animation: dot-pulse 2.8s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(52,211,153,.75), 0 0 18px rgba(52,211,153,.35); }
  50%       { opacity: .4; box-shadow: 0 0 3px rgba(52,211,153,.25); }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .03em;
  text-shadow: 0 4px 28px rgba(0,0,0,.60);
  text-transform: uppercase;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--accent-bright) 35%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.btn-primary {
  background: linear-gradient(130deg, #34D399 0%, #10B981 25%, #F59E0B 55%, #D97706 85%, #FBBF24 100%);
  color: #060610;
  border: 1px solid rgba(52,211,153,.22);
  box-shadow:
    0 0 32px rgba(52,211,153,.25),
    0 0 65px rgba(245,158,11,.10),
    0 0 100px rgba(52,211,153,.05);
  text-shadow: none;
  font-weight: 700;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, #A7F3D0 0%, #FBBF24 50%, #34D399 100%);
  opacity: 0;
  transition: opacity .28s var(--ease);
  pointer-events: none;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.28) 35%,
    rgba(52,211,153,.25) 50%,
    rgba(245,158,11,.18) 65%,
    transparent 100%
  );
  transform: translateX(-130%);
  opacity: 0;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 18px 55px rgba(52,211,153,.32),
    0 0 100px rgba(245,158,11,.16),
    0 0 130px rgba(52,211,153,.10);
}
.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%); }
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(52,211,153,.18);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  transform: translateY(-2px);
  background: rgba(52,211,153,.03);
  box-shadow:
    0 0 28px rgba(52,211,153,.10),
    0 0 60px rgba(245,158,11,.04);
  text-shadow: 0 0 14px rgba(52,211,153,.18);
}

.btn-gold {
  background: linear-gradient(130deg, #A7F3D0 0%, #34D399 30%, #10B981 60%, #F59E0B 120%);
  color: #060610;
  font-weight: 700;
  border: 1px solid rgba(52,211,153,.28);
  text-shadow: none;
  box-shadow:
    0 0 28px rgba(52,211,153,.28),
    0 0 55px rgba(52,211,153,.10),
    0 0 85px rgba(245,158,11,.05),
    inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 38px rgba(52,211,153,.42),
    0 0 85px rgba(245,158,11,.12),
    0 14px 42px rgba(0,0,0,.30);
}

.btn-primary-pulse {
  animation: btn-pulse-glow 3s ease-in-out infinite;
}
@keyframes btn-pulse-glow {
  0%, 100% {
    box-shadow:
      0 0 32px rgba(52,211,153,.25),
      0 0 65px rgba(245,158,11,.10);
  }
  50% {
    box-shadow:
      0 0 50px rgba(52,211,153,.42),
      0 0 95px rgba(245,158,11,.20),
      0 0 125px rgba(52,211,153,.12);
  }
}

.btn:focus-visible,
.btn-ghost:focus-visible,
.btn-primary:focus-visible,
.btn-gold:focus-visible {
  outline: 2px solid rgba(52,211,153,.80);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(245,158,11,.10), 0 0 35px rgba(52,211,153,.15);
}
.btn:active { transform: translateY(0) scale(.97); }
.btn:disabled { opacity: .30; cursor: not-allowed; transform: none !important; }

/* ── CARDS ── */
.card {
  background: linear-gradient(165deg, rgba(52,211,153,.02) 0%, var(--surface) 50%, rgba(6,6,14,.96) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 18px 55px rgba(0,0,0,.50),
    inset 0 1px 0 rgba(255,255,255,.012);
  transition:
    border-color .3s var(--ease),
    transform .3s var(--ease),
    box-shadow .3s var(--ease);
}
.card:hover {
  border-color: rgba(52,211,153,.20);
  transform: translateY(-5px);
  box-shadow:
    0 26px 75px rgba(0,0,0,.60),
    0 0 50px rgba(52,211,153,.05),
    0 0 28px rgba(245,158,11,.02),
    inset 0 1px 0 rgba(52,211,153,.02);
}
.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(--emerald), var(--gold), var(--emerald-2));
  box-shadow: 0 0 12px rgba(52,211,153,.30);
}

.icon-box {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(52,211,153,.07), rgba(52,211,153,.02));
  border: 1px solid rgba(52,211,153,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(52,211,153,.08);
  transition: box-shadow .28s var(--ease), transform .28s var(--ease);
}
.card:hover .icon-box {
  box-shadow: 0 0 25px rgba(52,211,153,.18);
  transform: scale(1.05);
}
.icon-box-gold {
  background: linear-gradient(135deg, rgba(245,158,11,.06), rgba(245,158,11,.02));
  border-color: rgba(245,158,11,.12);
  box-shadow: 0 0 14px rgba(245,158,11,.06);
}

/* ── DIVIDER ── */
.divider {
  width: 70px; height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), transparent);
  margin: 1.5rem 0;
  box-shadow: 0 0 10px rgba(52,211,153,.22);
  border-radius: 1px;
}

/* ── FADE-IN ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s 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 {
  position: relative;
  z-index: 1;
  padding: clamp(6rem, 14vw, 11rem) var(--page-x) clamp(4rem, 8vw, 6.5rem);
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  border-radius: 50%;
  border: 1px solid rgba(52,211,153,.03);
  pointer-events: none;
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 980px;
  height: 980px;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,.02);
  pointer-events: none;
  z-index: -1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-accent);
  font-size: .6rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: .24em;
  text-transform: uppercase;
  border: 1px solid rgba(52,211,153,.14);
  padding: .42rem 1.5rem;
  border-radius: var(--radius-pill);
  margin-bottom: 2.6rem;
  background: linear-gradient(135deg, rgba(52,211,153,.04), rgba(245,158,11,.02));
  box-shadow: 0 0 24px rgba(52,211,153,.04), inset 0 1px 0 rgba(255,255,255,.02);
}
.hero-eyebrow span { color: var(--accent-bright); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 7.2rem);
  font-weight: 700;
  line-height: .96;
  letter-spacing: .04em;
  text-shadow:
    0 8px 50px rgba(0,0,0,.75),
    0 0 45px rgba(52,211,153,.08),
    0 0 22px rgba(245,158,11,.04);
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--accent-bright) 35%, var(--gold-bright) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  filter: drop-shadow(0 0 25px rgba(52,211,153,.25));
}
.hero-title .hero-gold {
  background: linear-gradient(135deg, #A7F3D0 0%, #34D399 45%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(52,211,153,.35));
}

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

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

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

/* Mini slot preview */
.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(162deg, rgba(52,211,153,.03) 0%, rgba(14,14,26,.97) 100%);
  border: 1px solid rgba(52,211,153,.16);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow:
    0 38px 110px rgba(0,0,0,.75),
    0 0 0 1px rgba(245,158,11,.03),
    0 0 100px rgba(52,211,153,.04),
    0 0 50px rgba(245,158,11,.02);
  position: relative;
  overflow: hidden;
}
.hero-preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald-2));
  box-shadow: 0 0 18px rgba(52,211,153,.40);
}
.hero-preview-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,211,153,.06), transparent);
}
.preview-label {
  font-family: var(--font-accent);
  font-size: .56rem;
  color: var(--muted);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-align: center;
}
.preview-reels {
  display: flex;
  justify-content: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
}
.preview-reel {
  width: 80px; height: 80px;
  background: linear-gradient(160deg, rgba(52,211,153,.03) 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.1rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  box-shadow: inset 0 2px 10px rgba(0,0,0,.45);
}
.preview-reel.lit {
  border-color: var(--emerald);
  transform: scale(1.06);
  box-shadow:
    0 0 22px rgba(52,211,153,.30),
    0 0 45px rgba(245,158,11,.08),
    inset 0 0 14px rgba(52,211,153,.05);
}
.preview-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.2rem;
  background: rgba(6,6,14,.78);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(52,211,153,.07);
  box-shadow: inset 0 1px 0 rgba(52,211,153,.02);
}
.preview-balance-label {
  font-family: var(--font-accent);
  font-size: .58rem;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.preview-balance-val {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--emerald-light), var(--accent-bright), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(52,211,153,.25));
}
.preview-spin-btn { width: 100%; margin-top: 1rem; }

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

.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.2rem;
}
.stat-box {
  background: linear-gradient(160deg, rgba(52,211,153,.03) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.5rem;
  text-align: center;
  transition: border-color .28s var(--ease), box-shadow .28s var(--ease), transform .28s 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(52,211,153,.12), transparent);
}
.stat-box:hover {
  border-color: rgba(52,211,153,.22);
  box-shadow: 0 0 35px rgba(52,211,153,.05), 0 10px 35px rgba(0,0,0,.30);
  transform: translateY(-3px);
}
.stat-box-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--emerald-light), var(--accent-bright), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .45rem;
  letter-spacing: .01em;
  filter: drop-shadow(0 0 18px rgba(52,211,153,.15));
}
.stat-box-label { font-size: .76rem; 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(52,211,153,.03) 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 4rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}
.feature-card { padding: 2.4rem 2rem; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.2rem 0 .7rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.feature-card p { font-size: .9rem; color: var(--text-2); line-height: 1.78; }

/* 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: 4rem; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--emerald), rgba(245,158,11,.18), var(--gold));
  box-shadow: 0 0 8px rgba(52,211,153,.10);
}
.how-step { text-align: center; }
.how-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--emerald);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.6rem;
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-bright);
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 28px rgba(52,211,153,.15),
    0 0 55px rgba(245,158,11,.05);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.how-step:hover .how-step-num {
  box-shadow:
    0 0 38px rgba(52,211,153,.30),
    0 0 75px rgba(245,158,11,.10);
  transform: scale(1.08);
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.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.2rem; }
.support-link-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.7rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: all .28s var(--ease);
}
.support-link-card:hover {
  background: var(--surface-2);
  border-color: rgba(52,211,153,.18);
  transform: translateX(8px);
  box-shadow: -5px 0 22px rgba(52,211,153,.03);
}
.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(--emerald); transform: translate(3px,-3px); }

/* 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(52,211,153,.06) 0%, transparent 60%),
    linear-gradient(145deg, rgba(245,158,11,.04) 0%, var(--surface) 40%, var(--bg-2) 100%);
  border: 1px solid rgba(52,211,153,.16);
  border-radius: var(--radius-lg);
  padding: clamp(3.2rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 100px rgba(52,211,153,.03),
    0 0 200px rgba(245,158,11,.02);
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), var(--gold), var(--emerald-2), transparent);
  box-shadow: 0 0 16px rgba(52,211,153,.30);
}
.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,211,153,.10), transparent);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.cta-banner h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--emerald-light), var(--accent-bright), var(--gold-bright));
  -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.6rem; }
.cta-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   HOME: megaspinroulette VIP Boost Bonus
   ============================================================ */
.bonus-strip {
  padding: var(--section-y) var(--page-x);
  background:
    radial-gradient(circle at 12% 10%, rgba(245,158,11,.08) 0%, transparent 40%),
    radial-gradient(circle at 88% 30%, rgba(52,211,153,.05) 0%, transparent 42%),
    radial-gradient(circle at 50% 90%, rgba(52,211,153,.03) 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.8rem;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}
.bonus-card {
  padding: 2.2rem 1.7rem;
  position: relative;
  overflow: hidden;
  border-color: rgba(52,211,153,.12);
  background: linear-gradient(172deg, rgba(52,211,153,.03) 0%, rgba(14,14,26,.92) 100%);
}
.bonus-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 30% 20%, rgba(52,211,153,.16) 0%, transparent 55%),
    radial-gradient(circle at 70% 10%, rgba(245,158,11,.10) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.bonus-card:hover::before { opacity: 1; }

.bonus-tier {
  font-family: var(--font-accent);
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--emerald);
}
.bonus-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--emerald-light), var(--accent-bright), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
  margin: .8rem 0 .45rem;
  filter: drop-shadow(0 0 20px rgba(52,211,153,.15));
}
.bonus-desc { color: var(--text-2); font-size: .9rem; line-height: 1.74; }

.bonus-timer-row { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.bonus-timer-pill {
  width: 100%;
  max-width: 580px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.3rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(52,211,153,.12);
  background: linear-gradient(135deg, rgba(52,211,153,.03) 0%, rgba(6,6,14,.82) 100%);
  box-shadow: 0 0 55px rgba(52,211,153,.02), inset 0 1px 0 rgba(52,211,153,.02);
}
.bonus-timer-label {
  font-family: var(--font-accent);
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .6rem;
  font-weight: 600;
}
.bonus-timer-value {
  font-family: var(--font-accent);
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--emerald-light), var(--accent-bright), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(52,211,153,.15));
}
.bonus-timer-value.low-time {
  animation: nova-flicker 1.1s ease-in-out infinite;
}
.bonus-actions { display: flex; justify-content: center; gap: 1.2rem; }
.bonus-toast {
  text-align: center;
  margin-top: 1.3rem;
  min-height: 1.25em;
  font-size: .92rem;
  color: var(--text-2);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s 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(52,211,153,.10)); }
  50%       { filter: brightness(1.8) drop-shadow(0 0 32px rgba(245,158,11,.22)); }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(5.5rem, 11vw, 9.5rem) 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, 5rem);
}
.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(52,211,153,.03) 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.5rem;
  max-width: 1140px;
  margin: 3.2rem auto 0;
}
.pillar-card { padding: 2.4rem 1.9rem; }
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1rem 0 .55rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.pillar-card p { font-size: .88rem; color: var(--text-2); line-height: 1.72; }

.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: 1.1rem; margin-top: 1.5rem; }
.commit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(145deg, rgba(52,211,153,.03) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .9rem;
  color: var(--text-2);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.commit-item:hover {
  border-color: rgba(52,211,153,.16);
  box-shadow: 0 0 22px rgba(52,211,153,.04);
  transform: translateX(4px);
}
.commit-dot {
  width: 8px; height: 8px;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .48rem;
  box-shadow: 0 0 10px rgba(52,211,153,.35);
}
.about-cta { position: relative; z-index: 1; }

/* ============================================================
   PLAY PAGE
   ============================================================ */
.play-header {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(4.5rem, 9vw, 7.5rem) var(--page-x) 2rem;
}
.play-header p.disclaimer-tag {
  font-family: var(--font-accent);
  font-size: .6rem;
  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: .58rem;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.play-stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--emerald-light), var(--accent-bright), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.01em;
  filter: drop-shadow(0 0 18px rgba(52,211,153,.15));
}

.play-main {
  position: relative; z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--page-x) 6rem;
}
.game-card { margin-bottom: 1.8rem; }
.game-top {
  background: linear-gradient(152deg, rgba(52,211,153,.03) 0%, rgba(245,158,11,.02) 100%);
  padding: 2.8rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.win-message {
  min-height: 2rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--emerald-light), var(--accent-bright), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .04em;
  opacity: 0;
  transition: opacity .3s;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(52,211,153,.24));
}
.win-message.show { opacity: 1; }

.reels { display: flex; justify-content: center; gap: 1rem; }
.reel {
  width: 94px; height: 94px;
  background: linear-gradient(160deg, rgba(52,211,153,.03) 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.6rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 14px rgba(0,0,0,.50);
}
.reel.spinning .reel-sym { animation: sym-blur .07s steps(1) infinite; }
.reel.win-reel {
  border-color: var(--emerald);
  box-shadow:
    0 0 28px rgba(52,211,153,.30),
    0 0 55px rgba(245,158,11,.08),
    inset 0 0 14px rgba(52,211,153,.05);
  animation: reel-pulse .5s ease 3;
}
@keyframes reel-pulse {
  0%,100% { box-shadow: 0 0 28px rgba(52,211,153,.30); }
  50%      { box-shadow: 0 0 55px rgba(245,158,11,.18); }
}
@keyframes sym-blur { to {} }

.game-controls { padding: 2rem 2.8rem; }
.bet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.bet-row-label {
  font-family: var(--font-accent);
  font-size: .6rem;
  color: var(--muted);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.bet-options { display: flex; gap: .6rem; flex-wrap: wrap; }
.bet-opt {
  padding: .4rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-accent);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.bet-opt:hover, .bet-opt.active {
  border-color: var(--emerald);
  color: var(--accent-bright);
  background: var(--emerald-dim);
  box-shadow: 0 0 14px rgba(52,211,153,.12);
  transform: translateY(-1px);
}
.spin-row { display: flex; justify-content: center; }
.spin-btn-el { min-width: 210px; justify-content: center; font-size: .86rem; }
.spin-icon-el { display: inline-block; transition: transform .2s; }

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

.play-disclaimer {
  background: linear-gradient(145deg, rgba(52,211,153,.02) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.72;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(5.5rem, 11vw, 9.5rem) 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.5rem;
  margin-bottom: 2.8rem;
}
.contact-info-card { padding: 2.1rem; }
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem 0 .3rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.contact-info-card .info-sub { font-size: .8rem; color: var(--muted); margin-bottom: .4rem; }
.contact-info-card .info-val { font-size: .93rem; color: var(--emerald); font-weight: 500; text-decoration: none; }
.contact-info-card a.info-val:hover { text-decoration: underline; }

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

.field-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.field:last-child { margin-bottom: 0; }
.field label {
  font-family: var(--font-accent);
  font-size: .64rem;
  color: var(--text-2);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.field label .req { color: var(--emerald); margin-left: 1px; }
.field input,
.field textarea {
  background: linear-gradient(160deg, rgba(52,211,153,.012) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .9rem 1.2rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 400;
  outline: none;
  width: 100%;
  transition: border-color .25s, box-shadow .25s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(52,211,153,.08), 0 0 18px rgba(52,211,153,.04);
}
.field input.invalid,
.field textarea.invalid { border-color: var(--error); }
.field textarea { min-height: 160px; 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: 2rem; }
.success-note {
  display: none;
  background: rgba(52,211,153,.04);
  border: 1px solid rgba(52,211,153,.12);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  font-size: .9rem;
  color: var(--success);
  text-align: center;
  margin-top: 1.5rem;
}
.success-note.show { display: block; }

.rp-note {
  background: linear-gradient(145deg, rgba(52,211,153,.02) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
}
.rp-note a { color: var(--emerald); text-decoration: none; }
.rp-note a:hover { text-decoration: underline; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(5.5rem, 11vw, 9.5rem) 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.5rem;
}
.legal-card { padding: 2.2rem 2.5rem; }
.legal-card h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .9rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.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(--emerald); text-decoration: none; }
.legal-card a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 4.5rem var(--page-x) 2.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(52,211,153,.02) 0%, transparent 60%),
    rgba(6,6,14,.92);
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-disclaimer {
  font-size: .78rem;
  color: var(--muted);
  padding-bottom: 2.8rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.8rem;
  max-width: 700px;
  line-height: 1.72;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.4rem;
  margin-bottom: 2.8rem;
}
.footer-brand-tagline {
  font-size: .84rem;
  color: var(--muted);
  margin-top: .9rem;
  max-width: 260px;
  line-height: 1.65;
}
.footer-col-title {
  font-family: var(--font-accent);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a {
  font-size: .84rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s, transform .2s;
}
.footer-col a:hover { color: var(--emerald); transform: translateX(2px); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--border);
}
.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.footer-socials a {
  font-size: 0.6rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  line-height: 1;
  font-family: var(--font-accent);
  letter-spacing: .06em;
}
.footer-socials a:hover {
  color: var(--emerald);
  border-color: rgba(52,211,153,.14);
  box-shadow: 0 0 14px rgba(52,211,153,.05);
  transform: translateY(-1px);
}
.footer-copy { font-size: .78rem; color: var(--muted); }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--emerald);
  font-family: var(--font-accent);
  font-size: .66rem;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: .01em;
  box-shadow: 0 0 14px rgba(52,211,153,.12), 0 0 28px rgba(245,158,11,.04);
}

/* ============================================================
   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: 74px; left: 0; right: 0;
    background: rgba(6,6,14,.98);
    backdrop-filter: blur(40px);
    border-bottom: 1px solid var(--border);
    padding: 1.8rem var(--page-x);
    gap: 1.4rem;
    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.6rem; }
  .form-wrap-header   { padding: 1.8rem; }
  .legal-card         { padding: 1.6rem; }
  .reels              { gap: .5rem; }
  .reel               { width: 68px; height: 68px; font-size: 1.8rem; }
  .preview-reel       { width: 62px; height: 62px; font-size: 1.55rem; }
  .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; }
}
