/* ============================================================
   AuroraCrownPlay — Global Stylesheet
   ============================================================ */

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

/* ---- Design Tokens ---- */
:root {
  --bg-base:        #05070f;
  --bg-surface:     #0a0e1a;
  --bg-elevated:    #0f1729;
  --bg-card:        #141e35;
  --bg-card-hover:  #1a2646;

  --aurora-teal:    #00d4aa;
  --aurora-cyan:    #00b8d9;
  --aurora-green:   #0fca8e;
  --aurora-blue:    #0077ff;
  --aurora-glow:    rgba(0, 212, 170, 0.18);

  --gold:           #f0a500;
  --gold-light:     #fbbf24;
  --gold-dark:      #b07500;
  --gold-glow:      rgba(240, 165, 0, 0.22);

  --text-primary:   #eef2ff;
  --text-secondary: #8899bb;
  --text-muted:     #4a5c7a;

  --border:         #1a2540;
  --border-bright:  #253352;

  --success:        #22c55e;
  --warning:        #f59e0b;
  --error:          #ef4444;

  --sp1: 8px;
  --sp2: 16px;
  --sp3: 24px;
  --sp4: 32px;
  --sp5: 40px;
  --sp6: 48px;
  --sp8: 64px;
  --sp10: 80px;
  --sp12: 96px;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  --font-display: 'Cinzel', serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:    150ms ease;
  --t-base:    250ms ease;
  --t-slow:    400ms ease;

  --max-width: 1200px;
  --header-h:  72px;
}

/* ---- Reset ---- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }

ul, ol { list-style: none; }

/* ---- Typography ---- */
.display-heading {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aurora-teal);
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp3);
}

.section-block {
  padding: var(--sp12) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp8);
}

.section-header .section-label { margin-bottom: var(--sp1); display: block; }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp2);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp1);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--r-full);
  border: none;
  transition: transform var(--t-fast), box-shadow var(--t-base), filter var(--t-fast);
  box-shadow: 0 4px 20px var(--gold-glow), 0 2px 8px rgba(0,0,0,0.4);
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow), 0 4px 16px rgba(0,0,0,0.5);
  filter: brightness(1.08);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--sp1);
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border-bright);
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base);
}

.btn-ghost:hover {
  border-color: var(--aurora-teal);
  color: var(--aurora-teal);
  background: var(--aurora-glow);
}

.btn-aurora {
  display: inline-flex;
  align-items: center;
  gap: var(--sp1);
  background: linear-gradient(135deg, var(--aurora-teal) 0%, var(--aurora-cyan) 100%);
  color: #05070f;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border-radius: var(--r-full);
  border: none;
  transition: transform var(--t-fast), box-shadow var(--t-base);
  box-shadow: 0 4px 20px var(--aurora-glow);
  text-transform: uppercase;
}

.btn-aurora:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 212, 170, 0.35);
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--t-slow), box-shadow var(--t-slow), backdrop-filter var(--t-slow);
}

.site-header.header-scrolled {
  background: rgba(5, 7, 15, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: var(--sp4);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.brand-logo-text .brand-gold { color: var(--gold); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--sp1);
  margin-left: auto;
}

.primary-nav .nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.primary-nav .nav-item:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.header-cta {
  margin-left: var(--sp2);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: var(--sp1);
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: var(--sp3);
  z-index: 999;
  flex-direction: column;
  gap: var(--sp1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.mobile-drawer.drawer-open { display: flex; }

.mobile-drawer .drawer-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 16px;
  border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast);
}

.mobile-drawer .drawer-link:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-aurora-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-base);
  z-index: 0;
}

.aurora-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aurora-layer-1 {
  background: radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 212, 170, 0.12) 0%, transparent 60%);
  animation: aurora-shift-1 12s ease-in-out infinite alternate;
}

.aurora-layer-2 {
  background: radial-gradient(ellipse 70% 40% at 75% 60%, rgba(0, 184, 217, 0.1) 0%, transparent 60%);
  animation: aurora-shift-2 16s ease-in-out infinite alternate;
}

.aurora-layer-3 {
  background: radial-gradient(ellipse 60% 45% at 50% 20%, rgba(0, 119, 255, 0.08) 0%, transparent 70%);
  animation: aurora-shift-3 20s ease-in-out infinite alternate;
}

.aurora-layer-4 {
  background: radial-gradient(ellipse 40% 30% at 60% 80%, rgba(240, 165, 0, 0.06) 0%, transparent 60%);
}

@keyframes aurora-shift-1 {
  0%   { transform: translateX(-10%) scaleY(0.9); opacity: 0.7; }
  100% { transform: translateX(10%) scaleY(1.2);  opacity: 1; }
}

@keyframes aurora-shift-2 {
  0%   { transform: translateX(8%) scaleX(0.85); opacity: 0.6; }
  100% { transform: translateX(-8%) scaleX(1.15); opacity: 1; }
}

@keyframes aurora-shift-3 {
  0%   { transform: translateY(5%) scale(0.9); opacity: 0.5; }
  100% { transform: translateY(-5%) scale(1.1); opacity: 0.9; }
}

.star-field {
  position: absolute;
  inset: 0;
}

.star-field::before,
.star-field::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 8%,  rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 22%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 50%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 40%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 65%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 70%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 80%,  rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 88%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 90%, rgba(255,255,255,0.4) 0%, transparent 100%);
}

.star-field::after {
  background-image:
    radial-gradient(1px 1px at 20% 25%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 12%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 65% 55%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 78%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 82%, rgba(255,255,255,0.3) 0%, transparent 100%);
  animation: twinkle 6s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0%   { opacity: 0.4; }
  100% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--sp12) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 165, 0, 0.1);
  border: 1px solid rgba(240, 165, 0, 0.3);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp3);
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: var(--sp3);
  max-width: 700px;
}

.hero-headline .headline-gold { color: var(--gold); }
.hero-headline .headline-aurora { color: var(--aurora-teal); }

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: var(--sp5);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp2);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--sp5);
  margin-top: var(--sp8);
  flex-wrap: wrap;
}

.hero-stat-item { text-align: left; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span { color: var(--gold); }

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border-bright);
  align-self: center;
}

/* ============================================================
   GAMES SECTION
   ============================================================ */
.games-section {
  padding: var(--sp12) 0;
  background: var(--bg-surface);
  position: relative;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp3);
}

.game-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base), box-shadow var(--t-base);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.game-card-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card-visual .game-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--t-base);
}

.game-card:hover .game-card-glow { opacity: 1; }

.game-card-icon {
  font-size: 4.5rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px currentColor);
  transition: transform var(--t-base) var(--ease-snap);
}

.game-card:hover .game-card-icon { transform: scale(1.15) rotate(-3deg); }

.game-card-body {
  padding: var(--sp3) var(--sp3) var(--sp4);
}

.game-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.game-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.game-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--sp3);
}

.game-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

.game-play-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--aurora-teal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--t-fast), color var(--t-fast);
}

.game-card:hover .game-play-link { gap: 8px; }

/* Game-specific visuals */
.game-visual-slots { background: linear-gradient(160deg, #0a1628 0%, #1a0a2e 100%); }
.game-visual-slots .game-card-glow { background: radial-gradient(circle at 50% 50%, rgba(240,165,0,0.15) 0%, transparent 70%); }
.game-visual-slots .game-card-icon { color: var(--gold); }
.game-visual-slots .game-card-label { color: var(--gold); }
.game-visual-slots .game-play-link { color: var(--gold); }

.game-visual-roulette { background: linear-gradient(160deg, #001a14 0%, #011a2a 100%); }
.game-visual-roulette .game-card-glow { background: radial-gradient(circle at 50% 50%, rgba(0,212,170,0.15) 0%, transparent 70%); }
.game-visual-roulette .game-card-icon { color: var(--aurora-teal); }
.game-visual-roulette .game-card-label { color: var(--aurora-teal); }

.game-visual-blackjack { background: linear-gradient(160deg, #001220 0%, #0a1a0a 100%); }
.game-visual-blackjack .game-card-glow { background: radial-gradient(circle at 50% 50%, rgba(0,184,217,0.15) 0%, transparent 70%); }
.game-visual-blackjack .game-card-icon { color: var(--aurora-cyan); }
.game-visual-blackjack .game-card-label { color: var(--aurora-cyan); }
.game-visual-blackjack .game-play-link { color: var(--aurora-cyan); }

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section {
  padding: var(--sp12) 0;
  background: var(--bg-base);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp3);
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp5);
  transition: border-color var(--t-base), transform var(--t-base);
}

.benefit-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp3);
  font-size: 1.5rem;
}

.benefit-icon-wrap.icon-gold    { background: rgba(240,165,0,0.12); }
.benefit-icon-wrap.icon-teal    { background: rgba(0,212,170,0.12); }
.benefit-icon-wrap.icon-cyan    { background: rgba(0,184,217,0.12); }
.benefit-icon-wrap.icon-green   { background: rgba(15,202,142,0.12); }

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

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

/* ============================================================
   SOCIAL PROOF / COMMUNITY STRIP
   ============================================================ */
.proof-strip {
  padding: var(--sp8) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp8);
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: var(--sp2);
}

.proof-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.proof-number span { color: var(--gold); }

.proof-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-sep {
  width: 1px;
  height: 48px;
  background: var(--border-bright);
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: var(--sp12) 0 var(--sp6);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp6);
  margin-bottom: var(--sp8);
  padding-bottom: var(--sp8);
  border-bottom: 1px solid var(--border);
}

.footer-brand-col .brand-logo { margin-bottom: var(--sp3); }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--sp3);
  display: block;
}

.footer-link-list { display: flex; flex-direction: column; gap: 10px; }

.footer-link-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer-link-list a:hover { color: var(--aurora-teal); }

/* Disclaimer */
.footer-disclaimer {
  background: rgba(240, 165, 0, 0.05);
  border: 1px solid rgba(240, 165, 0, 0.15);
  border-radius: var(--r-lg);
  padding: var(--sp3) var(--sp4);
  margin-bottom: var(--sp5);
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp2);
}

.footer-disclaimer p strong { color: var(--text-secondary); }

.disclaimer-help-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp1);
}

.disclaimer-help-links span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.disclaimer-help-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--aurora-teal);
  padding: 4px 10px;
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: var(--r-full);
  transition: background var(--t-fast), border-color var(--t-fast);
}

.disclaimer-help-link:hover {
  background: rgba(0,212,170,0.1);
  border-color: rgba(0,212,170,0.5);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp2);
}

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

.footer-age-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-full);
  padding: 4px 12px;
}

.footer-age-badge .age-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--error);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  color: #fff;
}

/* ============================================================
   AGE MODAL
   ============================================================ */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 15, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp3);
  backdrop-filter: blur(8px);
}

.age-modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-xl);
  padding: var(--sp6) var(--sp5);
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
  animation: modal-in 0.5s var(--ease-out) forwards;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.age-modal-crown {
  font-size: 3.5rem;
  margin-bottom: var(--sp3);
  filter: drop-shadow(0 0 16px rgba(240,165,0,0.5));
}

.age-modal h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp1);
}

.age-modal .age-modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--sp4);
  line-height: 1.65;
}

.age-check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp2) var(--sp3);
  margin-bottom: var(--sp4);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--t-fast);
}

.age-check-row:has(input:checked) {
  border-color: var(--aurora-teal);
  background: rgba(0,212,170,0.05);
}

.age-check-input {
  width: 20px;
  height: 20px;
  accent-color: var(--aurora-teal);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.age-check-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.age-confirm-btn {
  width: 100%;
  padding: 15px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a0a0a;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: filter var(--t-fast), box-shadow var(--t-base), opacity var(--t-fast);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.age-confirm-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.age-confirm-btn:not(:disabled):hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 28px var(--gold-glow);
}

.age-modal-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--sp3);
  line-height: 1.6;
}

.age-modal-notice a {
  color: var(--aurora-teal);
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  padding: var(--sp3);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp3);
  flex-wrap: wrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}

.cookie-banner.banner-hidden {
  transform: translateY(110%);
}

.cookie-text {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

.cookie-text a { color: var(--aurora-teal); text-decoration: underline; text-underline-offset: 3px; }

.cookie-actions {
  display: flex;
  gap: var(--sp2);
  flex-shrink: 0;
}

.cookie-accept-btn {
  background: linear-gradient(135deg, var(--aurora-teal) 0%, var(--aurora-cyan) 100%);
  color: #05070f;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 10px 20px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: filter var(--t-fast);
}

.cookie-accept-btn:hover { filter: brightness(1.1); }

.cookie-decline-btn {
  background: transparent;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-bright);
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.cookie-decline-btn:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

/* ============================================================
   INNER PAGE HERO (shared by sub-pages)
   ============================================================ */
.inner-hero {
  padding: calc(var(--header-h) + var(--sp10)) 0 var(--sp8);
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,212,170,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.inner-hero .section-label { margin-bottom: var(--sp2); }

.inner-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp2);
  line-height: 1.1;
}

.inner-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.75;
}

/* ============================================================
   CONTENT PROSE (legal & info pages)
   ============================================================ */
.content-prose {
  padding: var(--sp10) 0;
}

.content-prose-inner {
  max-width: 780px;
  margin: 0 auto;
}

.content-prose h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--sp6) 0 var(--sp2);
}

.content-prose h2:first-child { margin-top: 0; }

.content-prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: var(--sp4) 0 var(--sp1);
}

.content-prose p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp2);
}

.content-prose ul {
  list-style: disc;
  padding-left: var(--sp3);
  margin-bottom: var(--sp2);
}

.content-prose ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 6px;
}

.content-prose a { color: var(--aurora-teal); text-decoration: underline; text-underline-offset: 3px; }

.content-section-divider {
  height: 1px;
  background: var(--border);
  margin: var(--sp6) 0;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp4);
  counter-reset: step-counter;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp5);
  position: relative;
  counter-increment: step-counter;
  transition: border-color var(--t-base);
}

.step-card:hover { border-color: var(--border-bright); }

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(240,165,0,0.12);
  line-height: 1;
  margin-bottom: var(--sp2);
  transition: color var(--t-base);
}

.step-card:hover .step-number { color: rgba(240,165,0,0.22); }

.step-icon {
  font-size: 2rem;
  margin-bottom: var(--sp2);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

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

/* ============================================================
   ABOUT
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp3);
  margin-top: var(--sp8);
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp5);
  transition: border-color var(--t-base);
}

.value-card:hover { border-color: var(--border-bright); }

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

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

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp6);
  align-items: start;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp5);
}

.form-group {
  margin-bottom: var(--sp3);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--aurora-teal);
  box-shadow: 0 0 0 3px rgba(0,212,170,0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
}

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

.contact-info-wrap { padding-top: var(--sp2); }

.contact-info-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp2);
}

.contact-info-wrap p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp4);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp2);
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp3);
  display: flex;
  align-items: flex-start;
  gap: var(--sp2);
}

.contact-info-card .card-icon { font-size: 1.3rem; flex-shrink: 0; }

.contact-info-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   COMMUNITY PAGE
   ============================================================ */
.community-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp3);
}

.community-feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp5);
  text-align: center;
  transition: border-color var(--t-base), transform var(--t-base);
}

.community-feat-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.community-feat-icon { font-size: 2.5rem; margin-bottom: var(--sp2); }

.community-feat-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

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

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp2);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.faq-item.faq-open { border-color: var(--border-bright); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp3);
  padding: var(--sp3) var(--sp4);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--t-fast);
}

.faq-question:hover { color: var(--aurora-teal); }

.faq-chevron {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: transform var(--t-base), border-color var(--t-fast);
}

.faq-item.faq-open .faq-chevron {
  transform: rotate(180deg);
  border-color: var(--aurora-teal);
  color: var(--aurora-teal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}

.faq-item.faq-open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 var(--sp4) var(--sp3);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: var(--sp2);
}

/* ============================================================
   HELP CENTER
   ============================================================ */
.help-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp3);
}

.help-cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp4);
  text-align: center;
  transition: border-color var(--t-base), transform var(--t-base);
  cursor: pointer;
}

.help-cat-card:hover {
  border-color: var(--aurora-teal);
  transform: translateY(-4px);
}

.help-cat-icon { font-size: 2.2rem; margin-bottom: var(--sp2); }

.help-cat-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.help-cat-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIBLE GAMING
   ============================================================ */
.rg-hero-alert {
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--r-xl);
  padding: var(--sp5);
  margin-bottom: var(--sp6);
}

.rg-hero-alert h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff8080;
  margin-bottom: var(--sp2);
}

.rg-hero-alert p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.rg-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp3);
  margin-top: var(--sp5);
}

.rg-tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp4);
}

.rg-tool-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

.rg-org-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp2);
  margin-top: var(--sp4);
}

.rg-org-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--aurora-teal);
  transition: border-color var(--t-fast), background var(--t-fast);
  text-align: center;
}

.rg-org-link:hover {
  border-color: var(--aurora-teal);
  background: rgba(0,212,170,0.05);
}

/* ============================================================
   SUCCESS NOTIFICATION
   ============================================================ */
.toast-notice {
  position: fixed;
  bottom: var(--sp5);
  right: var(--sp4);
  background: var(--bg-elevated);
  border: 1px solid var(--success);
  border-radius: var(--r-lg);
  padding: var(--sp2) var(--sp3);
  font-size: 0.88rem;
  color: var(--success);
  font-weight: 600;
  z-index: 7000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: toast-in 0.4s var(--ease-out) forwards;
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp4);
  }
  .footer-brand-col { grid-column: 1 / -1; }
  .games-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .primary-nav,
  .header-cta { display: none; }

  .nav-burger { display: flex; }

  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }

  .hero-stats { gap: var(--sp3); }
  .hero-divider { display: none; }

  .benefits-grid,
  .contact-grid,
  .values-grid,
  .rg-tools-grid,
  .rg-org-links,
  .steps-grid { grid-template-columns: 1fr; }

  .community-features,
  .help-categories { grid-template-columns: repeat(2, 1fr); }

  .proof-strip-inner { gap: var(--sp4); }
  .proof-sep { display: none; }

  .footer-top { grid-template-columns: 1fr; }

  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .community-features,
  .help-categories { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
