/* ============================================================
   orangexo – style.css
   Premium Orange-Gold Design System
   ============================================================ */

/* ────────────────────────────────────────────
   GOOGLE FONTS
──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ────────────────────────────────────────────
   DESIGN TOKENS
──────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-dark:        #060300;
  --bg-soft:        #0e0800;
  --bg-card:        rgba(22, 10, 0, 0.88);
  --bg-card-hover:  rgba(32, 14, 0, 0.95);
  --bg-nav:         rgba(6, 3, 0, 0.85);
  --bg-overlay:     rgba(6, 3, 0, 0.6);

  /* Accent - Orange Primary */
  --accent-primary:    #e8620a;
  --accent-primary-lt: #ff7c2a;
  --accent-primary-dk: #a84500;

  /* Accent - Gold Secondary */
  --accent-gold:       #ffd166;
  --accent-gold-lt:    #ffe99a;
  --accent-gold-dk:    #c89b00;

  /* Glow */
  --accent-glow:    rgba(232, 98, 10, 0.38);
  --glow-gold:      rgba(255, 209, 102, 0.32);

  /* Text */
  --text-primary:   #f5ede4;
  --text-secondary: #c9b49e;
  --text-muted:     #7a6555;
  --text-inverse:   #060300;

  /* Borders */
  --border-soft:    rgba(232, 98, 10, 0.20);
  --border-gold:    rgba(255, 209, 102, 0.24);
  --border-card:    rgba(255, 124, 42, 0.12);

  /* UI Tokens */
  --radius:         14px;
  --radius-lg:      22px;
  --radius-xl:      32px;
  --radius-pill:    999px;

  --shadow-soft:    0 4px 32px rgba(0, 0, 0, 0.58);
  --shadow-card:    0 8px 40px rgba(0, 0, 0, 0.62), 0 0 0 1px var(--border-card);
  --shadow-float:   0 20px 60px rgba(0, 0, 0, 0.72);

  --glow-soft:      0 0 28px rgba(232, 98, 10, 0.22);
  --glow-mid:       0 0 40px rgba(232, 98, 10, 0.32);
  --glow-strong:    0 0 60px rgba(232, 98, 10, 0.48), 0 0 120px rgba(232, 98, 10, 0.20);

  --transition:     200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-lg:  320ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w:  1200px;
  --nav-h:  68px;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 1.5rem; }

/* ────────────────────────────────────────────
   AURORA BACKGROUND
──────────────────────────────────────────── */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.13;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

.aurora-blob-1 {
  width: 700px;
  height: 500px;
  top: -120px;
  left: -200px;
  background: radial-gradient(ellipse, #e8620a 0%, transparent 70%);
  animation-duration: 20s;
}

.aurora-blob-2 {
  width: 600px;
  height: 500px;
  top: 30%;
  right: -150px;
  background: radial-gradient(ellipse, #a84500 0%, transparent 70%);
  animation-duration: 25s;
  animation-delay: -8s;
}

.aurora-blob-3 {
  width: 500px;
  height: 400px;
  bottom: 5%;
  left: 20%;
  background: radial-gradient(ellipse, #ffd166 0%, transparent 70%);
  opacity: 0.07;
  animation-duration: 22s;
  animation-delay: -14s;
}

@keyframes aurora-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.06); }
  66%  { transform: translate(-30px, 20px) scale(0.95); }
  100% { transform: translate(20px, 40px) scale(1.03); }
}

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

/* ────────────────────────────────────────────
   NAVIGATION
──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: var(--bg-nav);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 0 rgba(232, 98, 10, 0.08), 0 4px 24px rgba(0,0,0,0.4);
  transition: background var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.88; }

.nav-logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 98, 10, 0.12);
  border: 1px solid rgba(232, 98, 10, 0.28);
  border-radius: 10px;
  padding: 4px;
  box-shadow: var(--glow-soft);
}
.nav-logo-icon img { width: 24px; height: 24px; }

.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.nav-logo-text em {
  font-style: normal;
  color: var(--accent-gold);
  font-size: 0.72em;
  letter-spacing: 0.06em;
  margin-left: 0.15em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a {
  display: block;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}
.nav-links a.active {
  color: var(--accent-primary-lt);
  background: rgba(232, 98, 10, 0.13);
}

.nav-pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  background: rgba(255, 209, 102, 0.12);
  border: 1px solid rgba(255, 209, 102, 0.28);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.75rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,0.1); }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition), background var(--transition);
  position: relative;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-lt) 60%, #ff9040 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 98, 10, 0.42), 0 1px 0 rgba(255,255,255,0.1) inset;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(232, 98, 10, 0.58), 0 1px 0 rgba(255,255,255,0.15) inset;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold-dk) 0%, var(--accent-gold) 50%, var(--accent-gold-lt) 100%);
  color: #100600;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 209, 102, 0.42), 0 1px 0 rgba(255,255,255,0.2) inset;
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(255, 209, 102, 0.58), 0 1px 0 rgba(255,255,255,0.25) inset;
}
.btn-gold:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

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

/* ────────────────────────────────────────────
   CARDS
──────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-lg), box-shadow var(--transition-lg), border-color var(--transition-lg);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(232, 98, 10, 0.22);
  border-color: rgba(232, 98, 10, 0.24);
}

.card-accent-top {
  border-top: 2px solid var(--accent-primary);
  box-shadow: var(--shadow-card), 0 -2px 16px rgba(232, 98, 10, 0.15) inset;
}

/* ────────────────────────────────────────────
   TYPOGRAPHY UTILITIES
──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary-lt);
  background: rgba(232, 98, 10, 0.10);
  border: 1px solid rgba(232, 98, 10, 0.22);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.85rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--text-primary);
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-primary-lt) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
}

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold));
  border-radius: 2px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 12px rgba(232, 98, 10, 0.5);
}

/* ────────────────────────────────────────────
   SCROLL REVEAL
──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ────────────────────────────────────────────
   ICON BOX
──────────────────────────────────────────── */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(232, 98, 10, 0.10);
  border: 1px solid rgba(232, 98, 10, 0.22);
  box-shadow: var(--glow-soft);
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.icon-box img { width: 32px; height: 32px; object-fit: contain; }
.icon-box-gold {
  background: rgba(255, 209, 102, 0.10);
  border-color: rgba(255, 209, 102, 0.24);
  box-shadow: var(--glow-gold);
}

/* ────────────────────────────────────────────
   HERO
──────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 6rem);
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow span { color: var(--accent-primary-lt); }

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.06;
  margin-bottom: 1.5rem;
}

.hero-gold {
  background: linear-gradient(135deg, var(--accent-primary-lt) 0%, var(--accent-gold-lt) 60%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(232, 98, 10, 0.42));
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--text-secondary), var(--text-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

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

.hero-microcopy {
  font-size: 0.82rem;
  color: var(--accent-gold);
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0.85;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1rem;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-trust-item svg {
  width: 12px;
  height: 12px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ────────────────────────────────────────────
   HERO PREVIEW CARD
──────────────────────────────────────────── */
.hero-preview {
  display: flex;
  justify-content: center;
  padding: 0 1.5rem 5rem;
}

.hero-preview-card {
  width: 100%;
  max-width: 460px;
  background: rgba(24, 10, 0, 0.85);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-float), var(--glow-soft);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.preview-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}

.preview-reels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.preview-reel {
  width: 64px;
  height: 76px;
  background: rgba(14, 5, 0, 0.9);
  border: 1px solid rgba(232, 98, 10, 0.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.preview-reel.lit {
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.52), 0 2px 12px rgba(0,0,0,0.5);
}

.preview-balance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(232, 98, 10, 0.08);
  border: 1px solid rgba(232, 98, 10, 0.16);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  margin-bottom: 0.25rem;
}
.preview-balance-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.preview-balance-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.preview-spin-btn {
  width: 100%;
  margin-top: 1rem !important;
}

/* ────────────────────────────────────────────
   BONUS STRIP
──────────────────────────────────────────── */
.bonus-strip {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(70, 30, 0, 0.38) 50%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 5rem 1.5rem;
}

.bonus-inner { max-width: var(--max-w); margin: 0 auto; }

.bonus-header { text-align: center; margin-bottom: 3rem; }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.bonus-card {
  padding: 2rem 1.5rem;
  text-align: center;
}

.bonus-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary-lt);
  background: rgba(232, 98, 10, 0.10);
  border: 1px solid rgba(232, 98, 10, 0.22);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.bonus-amount {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent-gold-lt), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 12px rgba(255, 209, 102, 0.32));
}

.bonus-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bonus-timer-row {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.bonus-timer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(22, 8, 0, 0.85);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.5rem;
  box-shadow: var(--glow-soft);
}

.bonus-timer-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bonus-timer-value {
  font-size: 1.4rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: var(--accent-gold);
}
.bonus-timer-value.low-time { color: var(--accent-primary-lt); }

.bonus-actions { text-align: center; }

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

.bonus-toast {
  display: none;
  text-align: center;
  margin-top: 1.25rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 209, 102, 0.10);
  border: 1px solid rgba(255, 209, 102, 0.22);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--accent-gold-lt);
  font-weight: 500;
}
.bonus-toast.show { display: block; }

/* ────────────────────────────────────────────
   ABOUT STRIP
──────────────────────────────────────────── */
.about-strip { padding: 6rem 1.5rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-body p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-soft);
}

.stat-box-value {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent-primary-lt), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-box-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ────────────────────────────────────────────
   FEATURES
──────────────────────────────────────────── */
.features { padding: 6rem 1.5rem; background: linear-gradient(180deg, transparent, rgba(70, 30, 0, 0.20), transparent); }

.features-header { text-align: center; margin-bottom: 3.5rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem 1.75rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ────────────────────────────────────────────
   HOW IT WORKS
──────────────────────────────────────────── */
.how { padding: 6rem 1.5rem; }

.how-inner { max-width: var(--max-w); margin: 0 auto; }

.how-header { text-align: center; margin-bottom: 4rem; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.how-step {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  backdrop-filter: blur(12px);
  transition: transform var(--transition-lg), box-shadow var(--transition-lg);
}
.how-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--glow-soft);
}

.how-step-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
}

.how-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
}

.how-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ────────────────────────────────────────────
   SUPPORT SECTION
──────────────────────────────────────────── */
.support { padding: 6rem 1.5rem; background: linear-gradient(180deg, transparent, rgba(70, 30, 0, 0.18), transparent); }

.support-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.support-links-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  cursor: pointer;
}

.support-link-card .icon-box {
  margin-bottom: 0;
  min-width: 56px;
}

.support-link-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.support-link-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.support-link-arrow {
  margin-left: auto;
  font-size: 1rem;
  color: var(--accent-primary-lt);
  opacity: 0.6;
  transition: opacity var(--transition), transform var(--transition);
}
.support-link-card:hover .support-link-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* ────────────────────────────────────────────
   CTA BANNER
──────────────────────────────────────────── */
.cta-banner {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, rgba(110, 40, 0, 0.35) 0%, rgba(22, 8, 0, 0.6) 50%, rgba(70, 35, 0, 0.25) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.cta-banner-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.cta-banner-inner h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-primary-lt), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner-inner p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
.footer {
  background: rgba(4, 2, 0, 0.96);
  border-top: 1px solid var(--border-soft);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 1rem 1.25rem;
  background: rgba(232, 98, 10, 0.05);
  border: 1px solid rgba(232, 98, 10, 0.10);
  border-radius: var(--radius);
  margin-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-socials a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.75rem;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-socials a:hover {
  color: var(--accent-primary-lt);
  border-color: rgba(232, 98, 10, 0.32);
  background: rgba(232, 98, 10, 0.08);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #4caf83;
  background: rgba(76, 175, 131, 0.10);
  border: 1px solid rgba(76, 175, 131, 0.22);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.75rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-primary-lt);
  background: rgba(232, 98, 10, 0.10);
  border: 2px solid rgba(232, 98, 10, 0.32);
  border-radius: 50%;
  letter-spacing: -0.02em;
}

/* ────────────────────────────────────────────
   HERO PAGES (About, Contact, Legal)
──────────────────────────────────────────── */
.about-hero,
.contact-hero,
.legal-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ────────────────────────────────────────────
   ABOUT PAGE
──────────────────────────────────────────── */
.about-mission {
  padding: 2rem 1.5rem 5rem;
}
.about-mission-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem;
}
.about-mission-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.02rem;
}

.about-pillars { padding: 2rem 1.5rem 5rem; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.pillar-card {
  padding: 1.75rem 1.5rem;
}
.pillar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-commitment { padding: 2rem 1.5rem 5rem; }
.commitment-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.commit-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.commit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.commit-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  margin-top: 0.45rem;
  box-shadow: 0 0 8px rgba(232, 98, 10, 0.6);
}

/* ────────────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────────────── */
.contact-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-info-card {
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.contact-info-card .icon-box { margin: 0 auto 1rem; }
.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}
.info-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.info-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
  display: block;
}
a.info-val:hover { color: var(--accent-gold-lt); }

.form-wrap {
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.form-wrap-header {
  margin-bottom: 2rem;
}
.form-wrap-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
.form-wrap-header p { font-size: 0.9rem; color: var(--text-muted); }

.field-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.field:last-child { margin-bottom: 0; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.req { color: var(--accent-primary-lt); }

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  background: rgba(12, 4, 0, 0.8);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus,
textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(232, 98, 10, 0.15);
}
input.invalid,
textarea.invalid {
  border-color: var(--accent-primary-lt);
  box-shadow: 0 0 0 3px rgba(255, 124, 42, 0.15);
}
input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}
textarea { resize: vertical; min-height: 130px; }

.field-error {
  display: none;
  font-size: 0.78rem;
  color: var(--accent-primary-lt);
  font-weight: 500;
}
.field-error.show { display: block; }

.submit-row { margin-top: 1.75rem; }

.success-note {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(76, 175, 131, 0.10);
  border: 1px solid rgba(76, 175, 131, 0.26);
  border-radius: 10px;
  font-size: 0.88rem;
  color: #4cdb9a;
  font-weight: 500;
}
.success-note.show { display: block; }

.rp-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.rp-note a {
  color: var(--accent-primary-lt);
  transition: color var(--transition);
}
.rp-note a:hover { color: var(--accent-gold); }

/* ────────────────────────────────────────────
   PLAY PAGE
──────────────────────────────────────────── */
.play-header {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 2rem;
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.disclaimer-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.play-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 1.5rem 2.5rem;
  flex-wrap: wrap;
}

.play-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1rem 2rem;
  text-align: center;
  min-width: 160px;
  backdrop-filter: blur(12px);
}

.play-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.play-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-gold);
  font-variant-numeric: tabular-nums;
}

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

.game-card {
  overflow: hidden;
  padding: 0;
  margin-bottom: 1.5rem;
}

.play-disclaimer {
  background: rgba(232, 98, 10, 0.05);
  border: 1px solid rgba(232, 98, 10, 0.12);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.65;
}
.play-disclaimer strong { color: var(--text-secondary); }

/* ────────────────────────────────────────────
   LEGAL PAGES
──────────────────────────────────────────── */
.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-card {
  padding: 2rem 2.25rem;
}
.legal-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.legal-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-card li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-left: 1.2rem;
  position: relative;
}
.legal-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 6px rgba(232, 98, 10, 0.5);
}
.legal-card a {
  color: var(--accent-gold);
  transition: color var(--transition);
}
.legal-card a:hover { color: var(--accent-gold-lt); }

/* ────────────────────────────────────────────
   SPIN BUTTON / GAME (play page override)
──────────────────────────────────────────── */
.reel { transition: box-shadow var(--transition); }
.win-reel { box-shadow: 0 0 20px var(--accent-gold), 0 0 40px rgba(255,209,102,0.32) !important; }
#win-msg.show {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-gold);
  text-shadow: 0 0 16px rgba(255,209,102,0.5);
}
#win-msg { display: none; }

.bet-opt.active {
  background: rgba(232, 98, 10, 0.20);
  border-color: var(--accent-primary);
  color: var(--accent-primary-lt);
}

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

@media (max-width: 768px) {
  .section { padding: 4rem 1.25rem; }
  .nav { padding: 0 1.25rem; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(6, 3, 0, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.25rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 1rem;
  }
  .nav-toggle { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 3.5rem); }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }

  .bonus-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .contact-info-row { grid-template-columns: 1fr; }
  .field-duo { grid-template-columns: 1fr; }
  .play-stats { gap: 1rem; }
  .play-stat { min-width: auto; width: 100%; max-width: 240px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-mission-card { padding: 2rem 1.5rem; }
  .form-wrap { padding: 1.75rem 1.25rem; }
  .legal-card { padding: 1.5rem 1.25rem; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; max-width: 320px; }

  .preview-reel { width: 52px; height: 64px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
  :root { --nav-h: 62px; }
  .about-stats { grid-template-columns: 1fr; }
  .hero-trust { gap: 0.4rem 1rem; }
  .bonus-timer-value { font-size: 1.2rem; }
  .hero-preview-card { padding: 1.5rem; }
}
