/* ============================================================
   Grand Orange VIP — style.css
   Premium Dark Theme · Orange/Amber Accent · Token-Based
   ============================================================ */

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

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-dark:        #07080e;
  --bg-soft:        #0d0f1a;
  --bg-card:        rgba(255, 165, 30, 0.03);
  --bg-card-hover:  rgba(255, 165, 30, 0.055);
  --bg-glass:       rgba(13, 15, 26, 0.75);

  /* Accents */
  --accent-primary: #f97316;
  --accent-warm:    #fb923c;
  --accent-gold:    #f59e0b;
  --accent-pale:    #fde68a;
  --accent-glow:    rgba(249, 115, 22, 0.28);
  --accent-glow-sm: rgba(249, 115, 22, 0.15);

  /* Text */
  --text-primary:   #f0f0f6;
  --text-secondary: rgba(240, 240, 246, 0.72);
  --text-muted:     rgba(240, 240, 246, 0.42);
  --text-link:      #fb923c;

  /* Borders */
  --border:         rgba(249, 115, 22, 0.14);
  --border-hover:   rgba(249, 115, 22, 0.35);
  --border-bright:  rgba(249, 115, 22, 0.55);

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

  /* Shadows */
  --shadow-soft:    0 4px 24px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.3);
  --shadow-card:    0 8px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(249,115,22,0.08);
  --shadow-lifted:  0 16px 48px rgba(0,0,0,0.65), 0 2px 0 rgba(249,115,22,0.12);

  /* Glow */
  --glow-soft:      0 0 20px rgba(249,115,22,0.2), 0 0 40px rgba(249,115,22,0.1);
  --glow-btn:       0 0 24px rgba(249,115,22,0.45), 0 4px 16px rgba(0,0,0,0.4);
  --glow-input:     0 0 0 3px rgba(249,115,22,0.22);
}

/* ── 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, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text-link); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-pale); }
ul, ol { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

em { font-style: italic; color: var(--accent-warm); }

p { color: var(--text-secondary); }

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-label {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-warm);
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(249,115,22,0.07);
  margin-bottom: 1.1rem;
}

.section-title {
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

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

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold));
  border-radius: 2px;
  margin-bottom: 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.07;
}

.aurora-blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #f97316, transparent 70%);
  top: -20%; left: -10%;
  animation: auroraFloat1 22s ease-in-out infinite alternate;
}

.aurora-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #f59e0b, transparent 70%);
  top: 40%; right: -8%;
  animation: auroraFloat2 28s ease-in-out infinite alternate;
  opacity: 0.05;
}

.aurora-blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ea580c, transparent 70%);
  bottom: -10%; left: 35%;
  animation: auroraFloat3 20s ease-in-out infinite alternate;
  opacity: 0.06;
}

@keyframes auroraFloat1 { from { transform: translate(0,0) scale(1); } to { transform: translate(60px,80px) scale(1.1); } }
@keyframes auroraFloat2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-50px,60px) scale(1.08); } }
@keyframes auroraFloat3 { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,-50px) scale(1.12); } }

/* ── Trust Ribbon ─────────────────────────────────────────── */
.trust-ribbon {
  position: relative;
  z-index: 100;
  background: linear-gradient(90deg, rgba(249,115,22,0.07), rgba(245,158,11,0.05), rgba(249,115,22,0.07));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 0.5rem 1rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.trust-ribbon span {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.trust-ribbon svg { width: 13px; height: 13px; flex-shrink: 0; }
.trust-ribbon .ribbon-gold { color: var(--accent-gold); }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: relative;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 72px;
  background: rgba(7, 8, 14, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.nav-logo-text em {
  font-style: normal;
  color: var(--accent-warm);
}

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

.nav-links a {
  display: inline-block;
  padding: 0.42rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-warm);
  background: rgba(249,115,22,0.08);
}

.nav-pill {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.22s ease,
              background 0.2s ease,
              opacity 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
  border-radius: inherit;
}

.btn:hover::after { background: rgba(255,255,255,0.06); }
.btn:active { transform: scale(0.965) !important; }

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-gold) 100%);
  color: #fff;
  box-shadow: var(--glow-btn);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 32px rgba(249,115,22,0.6), 0 8px 24px rgba(0,0,0,0.45);
  color: #fff;
}

.btn-primary-pulse {
  animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: var(--glow-btn); }
  50% { box-shadow: 0 0 40px rgba(249,115,22,0.7), 0 8px 28px rgba(0,0,0,0.45); }
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(249,115,22,0.15);
}

/* Gold */
.btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #1a0f00;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(245,158,11,0.4), 0 4px 16px rgba(0,0,0,0.4);
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 36px rgba(245,158,11,0.6), 0 8px 24px rgba(0,0,0,0.45);
  color: #1a0f00;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color 0.25s ease,
              box-shadow 0.25s ease,
              background 0.25s ease,
              transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.card-accent-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ── Icon Box ─────────────────────────────────────────────── */
.icon-box {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(249,115,22,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.icon-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ── Reveal Animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 3rem) clamp(3.5rem, 6vw, 5rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1.8rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(249,115,22,0.07);
  backdrop-filter: blur(8px);
}

.hero-eyebrow span { opacity: 0.5; }

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  background: linear-gradient(160deg, #f0f0f6 30%, rgba(240,240,246,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-em {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

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

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

.cta-microcopy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.cta-microcopy strong { color: var(--accent-warm); font-weight: 600; }

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

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(249,115,22,0.12);
  border-radius: var(--radius-pill);
  background: rgba(249,115,22,0.04);
}

.hero-trust-item svg {
  width: 12px;
  height: 12px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ── Hero Preview Slot ────────────────────────────────────── */
.hero-preview {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 0 1rem 3.5rem;
}

.hero-preview-card {
  background: linear-gradient(160deg, rgba(249,115,22,0.07) 0%, rgba(13,15,26,0.95) 100%);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  width: min(440px, 100%);
  box-shadow: var(--shadow-lifted), var(--glow-soft);
  backdrop-filter: blur(20px);
  text-align: center;
}

.preview-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1.25rem;
}

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

.preview-reel {
  width: 58px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.3s;
  cursor: default;
  user-select: none;
}

.preview-reel.lit {
  border-color: var(--accent-warm);
  box-shadow: 0 0 18px rgba(249,115,22,0.45), inset 0 0 12px rgba(249,115,22,0.1);
  background: rgba(249,115,22,0.08);
}

.preview-balance-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  margin-bottom: 0.25rem;
}

.preview-balance-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.preview-balance-val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
}

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

/* ── Security Strip ───────────────────────────────────────── */
.security-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, var(--bg-soft), rgba(249,115,22,0.03), var(--bg-soft));
  padding: 1rem;
  overflow: hidden;
}

.security-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s, color 0.2s;
}

.security-badge:hover { border-color: var(--border-hover); color: var(--text-secondary); }
.security-badge svg { width: 13px; height: 13px; flex-shrink: 0; }
.security-badge.gold { color: var(--accent-gold); border-color: rgba(245,158,11,0.25); }
.security-badge.danger { color: #f87171; border-color: rgba(248,113,113,0.25); }

/* ── Bonus Section ────────────────────────────────────────── */
.bonus-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(249,115,22,0.04) 50%, var(--bg-dark) 100%);
}

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

.bonus-header {
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.bonus-urgency {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.6rem;
  opacity: 0.75;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  width: min(900px, 100%);
  margin: 0 auto 2rem;
}

.bonus-card {
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: linear-gradient(160deg, rgba(249,115,22,0.06) 0%, rgba(13,15,26,0.9) 100%);
}

.bonus-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.bonus-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

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

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

.bonus-timer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.4rem;
}

.bonus-timer-label {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.bonus-timer-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.04em;
  line-height: 1;
  min-width: 4ch;
  text-align: center;
  transition: color 0.3s;
}

.bonus-timer-value.low-time { color: #f87171; }

.bonus-actions { margin-bottom: 1.25rem; }

.bonus-toast {
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.87rem;
  color: var(--accent-pale);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.bonus-toast.show {
  opacity: 1;
  transform: none;
}

.bonus-redeem-spinning { opacity: 0.55 !important; }

/* ── About Strip ──────────────────────────────────────────── */
.about-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

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

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

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

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.stat-box:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.stat-box-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

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

/* ── Features ─────────────────────────────────────────────── */
.features { position: relative; z-index: 1; }

.features-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feature-card { text-align: left; }

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
}

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

/* ── How It Works ─────────────────────────────────────────── */
.how {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(249,115,22,0.03) 50%, transparent 100%);
}

.how-inner {
  max-width: 860px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.how-step {
  text-align: center;
  padding: 0.5rem;
}

.how-step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.85rem;
  opacity: 0.5;
}

.how-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

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

/* ── Support / Wellbeing ──────────────────────────────────── */
.support {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

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

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

.support-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
}

.support-link-card .icon-box {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}

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

.support-link-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.support-link-arrow {
  margin-left: auto;
  font-size: 1rem;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.support-link-card:hover .support-link-name { color: var(--accent-warm); }
.support-link-card:hover .support-link-arrow {
  color: var(--accent-warm);
  transform: translate(2px, -2px);
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 7vw, 6rem);
  background: linear-gradient(135deg, rgba(249,115,22,0.06) 0%, rgba(245,158,11,0.04) 50%, rgba(234,88,12,0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(249,115,22,0.1), transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

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

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(249,115,22,0.04);
  margin-bottom: 2.5rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

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

.footer-brand .nav-logo { margin-bottom: 0.85rem; display: inline-flex; }

.footer-brand-tagline {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-socials a {
  font-size: 0.83rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-socials a:hover { color: var(--accent-warm); }

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

.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }

.footer-col a {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent-warm); }

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

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

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(248,113,113,0.4);
  background: rgba(248,113,113,0.08);
  font-size: 0.7rem;
  font-weight: 800;
  color: #f87171;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

/* ── Age Gate Modal ───────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 8, 14, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.age-gate.show {
  opacity: 1;
  pointer-events: all;
}

.age-gate-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), var(--glow-soft);
  position: relative;
}

.age-gate-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-gold), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.age-gate-icon {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-gold);
  background: rgba(245,158,11,0.1);
  border: 2px solid rgba(245,158,11,0.3);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.03em;
}

.age-gate-card h2 {
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.age-gate-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.age-gate-actions .btn { width: 100%; }

.age-gate-decline {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.83rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}

.age-gate-decline:hover { color: #f87171; }

.age-gate-fineprint {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 0 !important;
  line-height: 1.6;
}

/* ── About Page ───────────────────────────────────────────── */
.about-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 5vw, 3rem) 3rem;
}

.about-mission {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
}

.about-mission-card {
  max-width: 760px;
}

.about-mission p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.about-pillars {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, transparent, rgba(249,115,22,0.03), transparent);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pillar-card { text-align: center; }
.pillar-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.pillar-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.about-commitment {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding-block: clamp(3rem, 6vw, 5rem);
}

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

.commit-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.commit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0.85rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}

.commit-item:hover { border-color: var(--border-hover); }

.commit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-gold));
  margin-top: 0.38rem;
  flex-shrink: 0;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 5vw, 3rem) 3rem;
}

.contact-main {
  position: relative;
  z-index: 1;
  width: min(860px, 92%);
  margin: 0 auto;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.contact-info-card { text-align: center; }
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }

.info-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.info-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-warm);
  word-break: break-all;
}

a.info-val:hover { color: var(--accent-pale); }

.form-wrap { margin-bottom: 1.5rem; }

.form-wrap-header {
  margin-bottom: 1.75rem;
}

.form-wrap-header h2 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.form-wrap-header p { font-size: 0.9rem; color: var(--text-muted); }

.form-body { display: flex; flex-direction: column; gap: 1.15rem; }

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.field label {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.req { color: var(--accent-warm); }

.field input,
.field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: var(--glow-input);
}

.field input.invalid,
.field textarea.invalid {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,0.18);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field-error {
  font-size: 0.78rem;
  color: #f87171;
  display: none;
}

.field-error.show { display: block; }

.submit-row { display: flex; justify-content: flex-end; }

.success-note {
  display: none;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.25);
  color: #6ee7b7;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
}

.success-note.show { display: block; }

.rp-note {
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

/* ── Play Page ────────────────────────────────────────────── */
.play-header {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem 1.5rem;
}

.disclaimer-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: rgba(249,115,22,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.35rem 1rem;
  display: inline-block;
  margin-bottom: 0.85rem;
}

.play-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem 1.75rem;
}

.play-stat {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.75rem;
  min-width: 130px;
}

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

.play-stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.play-main {
  position: relative;
  z-index: 1;
  width: min(860px, 92%);
  margin: 0 auto;
  padding-bottom: 4rem;
}

.game-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lifted), var(--glow-soft);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.play-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(249,115,22,0.03);
  line-height: 1.7;
}

.play-disclaimer strong { color: var(--accent-warm); }

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 5vw, 3rem) 3rem;
}

.legal-main {
  position: relative;
  z-index: 1;
  width: min(780px, 92%);
  margin: 0 auto;
  padding-bottom: clamp(4rem, 7vw, 6rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.legal-card p,
.legal-card li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-card ul {
  list-style: disc;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-card a {
  color: var(--accent-warm);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Win message (play game) ──────────────────────────────── */
#win-msg {
  display: none;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  padding: 0.85rem;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

#win-msg.show { display: block; }

/* Game elements (for potential in-page slot) */
.reel { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.reel.win-reel { border-color: var(--accent-warm); box-shadow: 0 0 18px rgba(249,115,22,0.4); }
.reel-sym { font-size: 1.8rem; }

.bet-opt { cursor: pointer; padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: transparent; color: var(--text-muted); transition: all 0.2s; font-family: inherit; }
.bet-opt:hover { border-color: var(--border-hover); color: var(--text-secondary); }
.bet-opt.active { border-color: var(--accent-warm); background: rgba(249,115,22,0.1); color: var(--accent-warm); font-weight: 600; }

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

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.75rem 0;
    gap: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    width: 100%;
  }

  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }

  .preview-reels { gap: 0.35rem; }
  .preview-reel { width: 48px; height: 60px; font-size: 1.35rem; }

  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; margin-inline: auto; }
  .hero-actions .btn { width: 100%; }

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

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

  .trust-ribbon { display: none; }

  .play-stats { gap: 0.75rem; }
  .play-stat { min-width: 100px; padding: 0.75rem 1.1rem; }

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

  .bonus-grid { grid-template-columns: 1fr; max-width: 340px; }

  .features-grid { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin-inline: auto; }
}

@media (max-width: 420px) {
  .security-strip-inner { gap: 0.7rem; }
  .security-badge { font-size: 0.68rem; padding: 0.28rem 0.65rem; }
  .hero-trust { gap: 0.7rem; }
  .hero-trust-item { font-size: 0.72rem; }
}
