/* ============================================================
   roulettenova – Global Stylesheet
   Premium dark casino design | roulettenova.com
   Identity: Deep black / ember-crimson / gold / electric-blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?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: noir + ember + gold + electric blue ── */
  --bg:          #030304;
  --bg-2:        #09080d;
  --surface:     #100e18;
  --surface-2:   #16131f;
  --border:      rgba(220,60,60,.22);
  --border-2:    rgba(212,165,50,.28);

  /* Primary accent: molten gold */
  --accent:      #e8b84b;
  --accent-dim:  rgba(232,184,75,.14);
  --accent-glow: rgba(232,184,75,.44);
  --gold:        #f0c050;
  --gold-dim:    rgba(240,192,80,.16);

  /* Secondary: ember / crimson */
  --ember:       #e8423a;
  --ember-dim:   rgba(232,66,58,.14);
  --ember-glow:  rgba(232,66,58,.40);

  /* Tertiary: electric blue */
  --sky:         #3da8ff;
  --sky-dim:     rgba(61,168,255,.14);
  --sky-glow:    rgba(61,168,255,.38);

  /* Neon spark */
  --neon:        #ffe347;
  --neon-dim:    rgba(255,227,71,.12);

  --text:        #f5f2e8;
  --text-2:      rgba(245,242,232,.70);
  --muted:       rgba(190,175,150,.80);
  --error:       #ff4b4b;
  --success:     #3fffa8;

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

  /* Spacing */
  --page-x:     clamp(1.25rem, 6vw, 5rem);
  --section-y:  clamp(4rem, 9vw, 7rem);
  --radius-lg:  20px;
  --radius-md:  12px;
  --radius-sm:  8px;
  --radius-pill: 99px;

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

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

body {
  background:
    radial-gradient(ellipse at 5% -8%, rgba(232,66,58,.28) 0%, transparent 38%),
    radial-gradient(ellipse at 95% 8%, rgba(61,168,255,.14) 0%, transparent 34%),
    radial-gradient(ellipse at 50% 105%, rgba(232,184,75,.20) 0%, transparent 44%),
    linear-gradient(165deg, #030304 0%, #0a090e 50%, #060508 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 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.030'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

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

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

.aurora-blob-1 {
  width: 720px; height: 480px;
  top: -200px; left: -140px;
  background: radial-gradient(ellipse, rgba(232,66,58,.26) 0%, transparent 70%);
}
.aurora-blob-2 {
  width: 580px; height: 400px;
  top: 20px; right: -160px;
  background: radial-gradient(ellipse, rgba(61,168,255,.14) 0%, transparent 68%);
  animation-delay: -8s;
  animation-duration: 20s;
}
.aurora-blob-3 {
  width: 420px; height: 320px;
  bottom: 8%; left: 28%;
  background: radial-gradient(ellipse, rgba(232,184,75,.14) 0%, transparent 70%);
  animation-delay: -15s;
  animation-duration: 28s;
}
@keyframes aurora-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(3%, 3%) scale(1.07); }
}

/* ── 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: 68px;
  background: rgba(5,4,8,.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(232,184,75,.28);
  box-shadow:
    0 6px 40px rgba(0,0,0,.50),
    0 0 28px rgba(232,66,58,.08);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ember) 0%, var(--gold) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(232,184,75,.22);
  box-shadow:
    0 0 16px rgba(232,66,58,.36),
    0 0 34px rgba(232,184,75,.20),
    0 0 56px rgba(61,168,255,.10);
  flex-shrink: 0;
}
.nav-logo-icon img {
  width: 24px;
  height: 24px;
  display: block;
  filter:
    drop-shadow(0 0 8px rgba(232,66,58,.36))
    drop-shadow(0 0 16px rgba(232,184,75,.24));
  transition: transform .25s var(--ease), filter .25s var(--ease);
}
.nav-logo:hover .nav-logo-icon img {
  transform: translateY(-1px) rotate(-6deg) scale(1.04);
  filter:
    drop-shadow(0 0 12px rgba(232,66,58,.46))
    drop-shadow(0 0 22px rgba(232,184,75,.32));
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.nav-logo-text em {
  font-style: normal;
  color: var(--accent);
  font-weight: 400;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 400;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--ember), var(--accent));
  transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }

/* Age pill */
.nav-pill {
  font-size: .68rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(232,66,58,.24);
  padding: .28rem .8rem;
  border-radius: var(--radius-pill);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 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: 22px; height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all .25s;
}

/* ── UTILITY CLASSES ── */
.container {
  max-width: 1120px;
  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-block;
  font-size: .68rem;
  font-weight: 600;
  color: var(--ember);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.section-title em {
  font-style: normal;
  color: var(--accent);
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .82rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .22s var(--ease);
  cursor: pointer;
  border: none;
  will-change: transform;
}

/* Primary: ember-to-gold fire gradient */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #e8423a 0%, #d4a532 50%, #3da8ff 100%);
  color: #fff;
  border: 1px solid rgba(232,184,75,.30);
  box-shadow:
    0 0 28px rgba(232,66,58,.44),
    0 0 58px rgba(232,184,75,.22),
    0 0 80px rgba(61,168,255,.12);
  text-shadow: 0 1px 4px rgba(0,0,0,.35);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(255,255,255,.14) 38%,
    rgba(255,227,71,.24) 52%,
    rgba(232,66,58,.16) 68%,
    transparent 100%
  );
  transform: translateX(-130%);
  opacity: 0;
}
.btn-primary:hover {
  opacity: .96;
  transform: translateY(-2px);
  box-shadow:
    0 12px 44px rgba(232,66,58,.60),
    0 0 80px rgba(232,184,75,.30),
    0 0 100px rgba(61,168,255,.18);
}
.btn-primary:hover::after {
  opacity: 1;
  animation: btn-shimmer 1s var(--ease) both;
}
.btn-primary:active::after { opacity: .8; }

@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(232,184,75,.30);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow:
    0 0 24px rgba(232,184,75,.18),
    0 0 56px rgba(232,66,58,.10);
}

/* Gold */
.btn-gold {
  background: linear-gradient(130deg, #f0c050 0%, #d4922a 55%, #e8423a 115%);
  color: #06040a;
  border: 1px solid rgba(232,184,75,.28);
  text-shadow: none;
  box-shadow:
    0 0 22px rgba(232,184,75,.34),
    0 0 50px rgba(232,184,75,.16),
    0 0 68px rgba(232,66,58,.10);
}
.btn-gold:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow:
    0 0 28px rgba(232,184,75,.44),
    0 0 68px rgba(232,66,58,.16);
}

.btn:focus-visible,
.btn-ghost:focus-visible,
.btn-primary:focus-visible,
.btn-gold:focus-visible {
  outline: 2px solid rgba(232,184,75,.85);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(232,66,58,.14), 0 0 30px rgba(232,184,75,.22);
}
.btn:active { transform: translateY(0) scale(.99); }
.btn:disabled { opacity: .38; cursor: not-allowed; transform: none !important; }

/* ── CARDS ── */
.card {
  background: linear-gradient(158deg, rgba(255,255,255,.025) 0%, var(--surface) 65%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 14px 42px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.025);
  transition:
    border-color .25s var(--ease),
    transform .25s var(--ease),
    box-shadow .25s var(--ease);
}
.card:hover {
  border-color: rgba(232,184,75,.34);
  transform: translateY(-3px);
  box-shadow:
    0 18px 52px rgba(0,0,0,.46),
    0 0 36px rgba(232,66,58,.10);
}
.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(--ember), var(--accent), var(--sky));
}

.icon-box {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--ember-dim);
  border: 1px solid rgba(232,66,58,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.icon-box-gold {
  background: var(--gold-dim);
  border-color: rgba(232,184,75,.22);
}

/* ── DIVIDER ── */
.divider {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--accent), transparent);
  margin: 1.5rem 0;
}

/* ── FADE-IN ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .62s var(--ease), transform .62s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

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

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vw, 9.5rem) var(--page-x) clamp(4rem, 8vw, 6rem);
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid rgba(232,66,58,.28);
  padding: .3rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
  background: rgba(232,66,58,.06);
}
.hero-eyebrow span { color: var(--ember); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-shadow:
    0 8px 38px rgba(0,0,0,.55),
    0 0 28px rgba(232,66,58,.16),
    0 0 16px rgba(232,184,75,.10);
  margin-bottom: 1.6rem;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-title .hero-gold { color: var(--gold); }

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

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

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--muted);
  font-family: var(--font-display);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-trust-item svg { width: 14px; height: 14px; color: var(--ember); }

/* Mini slot preview in hero */
.hero-preview {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 var(--page-x) clamp(3rem, 6vw, 5rem);
}
.hero-preview-card {
  background: linear-gradient(155deg, rgba(232,66,58,.07) 0%, rgba(22,19,31,.92) 100%);
  border: 1px solid rgba(232,184,75,.26);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow:
    0 30px 96px rgba(0,0,0,.64),
    0 0 0 1px rgba(232,66,58,.12),
    0 0 80px rgba(232,66,58,.10),
    0 0 42px rgba(232,184,75,.08);
  position: relative;
  overflow: hidden;
}
.hero-preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--accent), var(--sky));
}
.preview-label {
  font-family: var(--font-display);
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}
.preview-reels {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.preview-reel {
  width: 72px; height: 72px;
  background: var(--bg-2);
  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;
}
.preview-reel.lit {
  border-color: var(--ember);
  box-shadow: 0 0 16px rgba(232,66,58,.32);
}
.preview-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1rem;
  background: rgba(5,4,8,.60);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232,184,75,.12);
}
.preview-balance-label {
  font-family: var(--font-display);
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .10em;
  text-transform: uppercase;
}
.preview-balance-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.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, 5rem);
  align-items: center;
  max-width: 1120px;
  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: 1rem;
}
.stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.25rem;
  text-align: center;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.stat-box:hover {
  border-color: rgba(232,184,75,.32);
  box-shadow: 0 0 24px rgba(232,66,58,.08);
}
.stat-box-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .35rem;
  letter-spacing: .02em;
}
.stat-box-label { font-size: .78rem; color: var(--muted); line-height: 1.4; }

/* Features */
.features {
  padding: var(--section-y) var(--page-x);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}
.feature-card { padding: 2rem 1.75rem; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin: 1rem 0 .6rem;
}
.feature-card p { font-size: .9rem; color: var(--text-2); line-height: 1.72; }

/* How it works */
.how { padding: var(--section-y) var(--page-x); }
.how-inner { max-width: 1120px; margin: 0 auto; }
.how-header { max-width: 560px; margin-bottom: 3.5rem; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--ember), var(--border), var(--accent));
}
.how-step { text-align: center; }
.how-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--ember);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 18px rgba(232,66,58,.20);
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.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: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.support-links-grid { display: flex; flex-direction: column; gap: 1rem; }
.support-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: all .22s var(--ease);
}
.support-link-card:hover {
  background: var(--surface-2);
  border-color: rgba(232,184,75,.28);
  transform: translateX(4px);
}
.support-link-name { font-weight: 500; font-size: .95rem; 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; }
.support-link-card:hover .support-link-arrow { color: var(--accent); }

/* Home CTA Banner */
.cta-banner {
  margin: var(--section-y) auto;
  max-width: 1120px;
  padding: 0 var(--page-x);
}
.cta-banner-inner {
  background: linear-gradient(135deg, rgba(232,66,58,.08) 0%, var(--surface) 40%, var(--bg-2) 100%);
  border: 1px solid rgba(232,184,75,.28);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(232,66,58,.08);
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ember), var(--accent), var(--sky), transparent);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.cta-banner h2 em { font-style: normal; color: var(--accent); }
.cta-banner p { color: var(--text-2); max-width: 480px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   HOME: roulettenova VIP Boost Bonus
   ============================================================ */
.bonus-strip {
  padding: var(--section-y) var(--page-x);
  background:
    radial-gradient(circle at 15% 10%, rgba(232,66,58,.16) 0%, transparent 35%),
    radial-gradient(circle at 85% 30%, rgba(61,168,255,.10) 0%, transparent 38%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.bonus-inner { max-width: 1120px; margin: 0 auto; }
.bonus-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.25rem;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.85rem;
}
.bonus-card {
  padding: 1.75rem 1.4rem;
  position: relative;
  overflow: hidden;
  border-color: rgba(232,184,75,.28);
  background: linear-gradient(175deg, rgba(232,66,58,.09) 0%, rgba(16,14,24,.78) 100%);
}
.bonus-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 30% 20%, rgba(232,66,58,.28) 0%, transparent 55%),
    radial-gradient(circle at 70% 10%, rgba(232,184,75,.18) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .25s var(--ease);
  pointer-events: none;
}
.bonus-card:hover::before { opacity: 1; }

.bonus-tier {
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ember);
}
.bonus-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.05;
  margin: .65rem 0 .35rem;
  text-shadow: 0 0 24px rgba(232,184,75,.22), 0 0 36px rgba(232,66,58,.10);
}
.bonus-desc { color: var(--text-2); font-size: .9rem; line-height: 1.7; }

.bonus-timer-row { display: flex; justify-content: center; margin-bottom: 1.25rem; }
.bonus-timer-pill {
  width: 100%;
  max-width: 560px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232,184,75,.26);
  background: rgba(5,4,8,.65);
  box-shadow: 0 0 44px rgba(232,66,58,.06);
}
.bonus-timer-label {
  font-family: var(--font-display);
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 600;
}
.bonus-timer-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(232,66,58,.20);
}
.bonus-timer-value.low-time {
  animation: nova-flicker 1.1s ease-in-out infinite;
}
.bonus-actions { display: flex; justify-content: center; gap: 1rem; }
.bonus-toast {
  text-align: center;
  margin-top: 1.1rem;
  min-height: 1.25em;
  font-size: .92rem;
  color: var(--text-2);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s 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); }
}

.btn-gold {
  box-shadow: 0 0 28px rgba(232,184,75,.20), 0 0 0 1px rgba(232,184,75,.10) inset;
}
@keyframes nova-flicker {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 16px rgba(232,66,58,.14)); }
  50%       { filter: brightness(1.6) drop-shadow(0 0 28px rgba(232,184,75,.28)); }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) var(--page-x) clamp(3.5rem, 6vw, 5rem);
}
.about-hero .section-title { max-width: 640px; 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: 1120px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem);
}
.about-mission-card p { color: var(--text-2); font-size: .97rem; margin-bottom: 1rem; max-width: 760px; }
.about-mission-card p:last-child { margin-bottom: 0; }

.about-pillars {
  position: relative; z-index: 1;
  padding: var(--section-y) var(--page-x);
  background: 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.25rem;
  max-width: 1120px;
  margin: 3rem auto 0;
}
.pillar-card { padding: 2rem 1.6rem; }
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: .9rem 0 .5rem;
}
.pillar-card p { font-size: .88rem; color: var(--text-2); line-height: 1.65; }

.about-commitment {
  position: relative; z-index: 1;
  padding: var(--section-y) var(--page-x);
}
.commitment-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 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: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .9rem;
  color: var(--text-2);
}
.commit-dot {
  width: 8px; height: 8px;
  background: var(--ember);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .45rem;
}
.about-cta { position: relative; z-index: 1; }

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

.play-stats {
  position: relative; z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
  padding: 2rem var(--page-x) 2.5rem;
}
.play-stat { text-align: center; }
.play-stat-label {
  font-family: var(--font-display);
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.play-stat-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.01em;
}

.play-main {
  position: relative; z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--page-x) 6rem;
}
.game-card { margin-bottom: 1.5rem; }
.game-top {
  background: linear-gradient(148deg, rgba(232,66,58,.07) 0%, rgba(61,168,255,.04) 100%);
  padding: 2.25rem;
  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;
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s;
  margin-bottom: 1rem;
}
.win-message.show { opacity: 1; }

.reels { display: flex; justify-content: center; gap: .75rem; }
.reel {
  width: 86px; height: 86px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  overflow: hidden;
  position: relative;
}
.reel.spinning .reel-sym { animation: sym-blur .07s steps(1) infinite; }
.reel.win-reel {
  border-color: var(--ember);
  box-shadow: 0 0 22px rgba(232,66,58,.32);
  animation: reel-pulse .5s ease 3;
}
@keyframes reel-pulse {
  0%,100% { box-shadow: 0 0 22px rgba(232,66,58,.32); }
  50%      { box-shadow: 0 0 44px rgba(232,184,75,.22); }
}
@keyframes sym-blur { to {} }

.game-controls { padding: 1.75rem 2.25rem; }
.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-display);
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bet-options { display: flex; gap: .5rem; flex-wrap: wrap; }
.bet-opt {
  padding: .32rem .85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s;
}
.bet-opt:hover, .bet-opt.active {
  border-color: var(--ember);
  color: var(--accent);
  background: var(--ember-dim);
}
.spin-row { display: flex; justify-content: center; }
.spin-btn-el { min-width: 200px; justify-content: center; font-size: 1rem; }
.spin-icon-el { display: inline-block; transition: transform .2s; }

.paytable {
  padding: 1.5rem 2.25rem 2rem;
  border-top: 1px solid var(--border);
}
.paytable h3 {
  font-family: var(--font-display);
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.paytable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: .6rem;
}
.pay-item { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-2); }
.pay-mult { color: var(--accent); font-weight: 600; }

.play-disclaimer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
}

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

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

.form-wrap { margin-bottom: 1.5rem; }
.form-wrap-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.form-wrap-header h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.form-wrap-header p { font-size: .9rem; color: var(--text-2); }
.form-body { padding: 2rem 2.5rem 2.5rem; }

.field-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: .42rem; margin-bottom: 1.25rem; }
.field:last-child { margin-bottom: 0; }
.field label {
  font-family: var(--font-display);
  font-size: .75rem;
  color: var(--text-2);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 500;
}
.field label .req { color: var(--ember); margin-left: 1px; }
.field input,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .78rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(232,66,58,.12);
}
.field input.invalid,
.field textarea.invalid { border-color: var(--error); }
.field textarea { min-height: 150px; resize: none; line-height: 1.65; }
.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.75rem; }
.success-note {
  display: none;
  background: rgba(63,255,168,.06);
  border: 1px solid rgba(63,255,168,.22);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--success);
  text-align: center;
  margin-top: 1.25rem;
}
.success-note.show { display: block; }

.rp-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
}
.rp-note a { color: var(--accent); 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, 8rem) var(--page-x) clamp(3rem, 6vw, 4.5rem);
}
.legal-hero .section-title { max-width: 600px; margin: .5rem auto 1.25rem; }
.legal-hero .section-body { margin: 0 auto; }

.legal-main {
  position: relative; z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--page-x) 6rem;
  display: grid;
  gap: 1.25rem;
}
.legal-card { padding: 1.8rem 2rem; }
.legal-card h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.legal-card p,
.legal-card li { color: var(--text-2); font-size: .93rem; line-height: 1.78; }
.legal-card ul { list-style: disc; margin-left: 1.25rem; }
.legal-card a { color: var(--accent); 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: 3.5rem var(--page-x) 2rem;
  background: rgba(3,3,4,.70);
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-disclaimer {
  font-size: .78rem;
  color: var(--muted);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
  max-width: 680px;
  line-height: 1.65;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand-tagline {
  font-size: .84rem;
  color: var(--muted);
  margin-top: .75rem;
  max-width: 240px;
  line-height: 1.6;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.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: 2rem;
  border-top: 1px solid var(--border);
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-socials a {
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
  line-height: 1;
}
.footer-socials a:hover {
  color: var(--accent);
  border-color: rgba(232,184,75,.24);
}
.footer-copy { font-size: .78rem; color: var(--muted); }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--ember);
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  color: var(--ember);
  letter-spacing: .01em;
}

/* ============================================================
   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: 68px; left: 0; right: 0;
    background: rgba(5,4,8,.97);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem var(--page-x);
    gap: 1.2rem;
    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.5rem; }
  .legal-card         { padding: 1.4rem; }
  .reels              { gap: .5rem; }
  .reel               { width: 62px; height: 62px; font-size: 1.75rem; }
  .preview-reel       { width: 56px; height: 56px; 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: 52px; height: 52px; 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; }
}
