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

/* ===== DESIGN SYSTEM ===== */
:root {
  /* Primary: Deep Navy */
  --navy-950: #060D18;
  --navy-900: #0A1628;
  --navy-800: #0F2240;
  --navy-700: #162E54;
  --navy-600: #1E3A6A;
  --navy-500: #284D8C;
  --navy-400: #3A6BB5;
  --navy-300: #5B8FD4;
  --navy-200: #8AB3E8;
  --navy-100: #C2D9F5;

  /* Secondary: Forest Green */
  --green-950: #061410;
  --green-900: #0C2018;
  --green-800: #123024;
  --green-700: #1A4232;
  --green-600: #225543;
  --green-500: #2D6A55;
  --green-400: #3A8A6E;
  --green-300: #52AD8D;
  --green-200: #80CDB0;
  --green-100: #B8E8D8;

  /* Gold/Accent */
  --gold-950: #2A1C00;
  --gold-900: #3D2B04;
  --gold-800: #5C4008;
  --gold-700: #7A560E;
  --gold-600: #9A6E15;
  --gold-500: #BE8C1E;
  --gold-400: #D4A432;
  --gold-300: #E8BC52;
  --gold-200: #F2D07A;
  --gold-100: #FAE8B0;
  --gold-50:  #FEF6E0;

  /* Neutral/Cream */
  --cream-100: #FAF6EE;
  --cream-200: #F2ECD8;
  --cream-300: #E8DFC4;
  --cream-400: #D9CEB0;
  --cream-500: #C4B896;
  --neutral-600: #7A7060;
  --neutral-700: #5C5448;
  --neutral-800: #3C3530;
  --neutral-900: #1E1A16;

  /* Semantic */
  --success-500: #2D8A55;
  --success-100: #D4F0E2;
  --warning-500: #C67C1A;
  --warning-100: #FDECC8;
  --error-500: #C0392B;
  --error-100: #FAD7D3;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing (8px base) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15), 0 2px 6px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.20), 0 4px 12px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.30), 0 8px 24px rgba(0,0,0,0.15);
  --shadow-gold: 0 0 24px rgba(212, 164, 50, 0.30);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--neutral-800);
  background: var(--cream-100);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== AGE GATE MODAL ===== */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(6, 13, 24, 0.96);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4);
  backdrop-filter: blur(8px);
}
#age-gate.hidden { display: none; }
.age-gate__box {
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(212, 164, 50, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  max-width: 480px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(212, 164, 50, 0.10);
  animation: modalEnter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalEnter {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.age-gate__crown {
  width: 64px; height: 64px;
  margin: 0 auto var(--space-3);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-gold);
}
.age-gate__box h2 {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700;
  color: var(--cream-100);
  margin-bottom: var(--space-1);
}
.age-gate__box .brand-name {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--gold-300);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
  display: block;
}
.age-gate__box p {
  color: var(--navy-200);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.age-gate__checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 164, 50, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-2);
  margin-bottom: var(--space-4);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition-base);
}
.age-gate__checkbox:hover { border-color: rgba(212, 164, 50, 0.4); }
.age-gate__checkbox input[type="checkbox"] {
  width: 20px; height: 20px; flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold-400);
  cursor: pointer;
}
.age-gate__checkbox label {
  font-size: 0.875rem; color: var(--navy-200);
  cursor: pointer; line-height: 1.5;
}
.age-gate__checkbox label strong { color: var(--cream-100); }
.btn-age-confirm {
  width: 100%;
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  opacity: 0.4; pointer-events: none;
  letter-spacing: 0.02em;
}
.btn-age-confirm.active {
  opacity: 1; pointer-events: auto;
  box-shadow: var(--shadow-gold);
}
.btn-age-confirm.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 164, 50, 0.45);
}
.age-gate__footer {
  margin-top: var(--space-3);
  font-size: 0.75rem;
  color: var(--navy-300);
}

/* ===== COOKIE CONSENT ===== */
#cookie-consent {
  position: fixed; bottom: var(--space-3); left: var(--space-3); right: var(--space-3);
  z-index: 9000;
  background: var(--navy-900);
  border: 1px solid rgba(212, 164, 50, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex; align-items: center; gap: var(--space-4);
  flex-wrap: wrap;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.4s ease;
  max-width: 960px; margin-left: auto; margin-right: auto;
}
#cookie-consent.hidden { display: none; }
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent__text {
  flex: 1; min-width: 200px;
  font-size: 0.875rem; color: var(--navy-200);
  line-height: 1.5;
}
.cookie-consent__text a {
  color: var(--gold-300);
  text-decoration: underline;
  text-decoration-color: rgba(212, 164, 50, 0.4);
}
.cookie-consent__actions {
  display: flex; gap: var(--space-2); flex-wrap: wrap;
}
.btn-cookie-accept {
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900);
  font-weight: 600; font-size: 0.875rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}
.btn-cookie-accept:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-cookie-decline {
  padding: 0.5rem 1.5rem;
  background: transparent;
  color: var(--navy-200);
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.3); color: var(--cream-100); }

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 var(--space-4);
  transition: all var(--transition-slow);
}
.site-nav.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 164, 50, 0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  height: 72px;
  gap: var(--space-4);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--cream-100);
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(212, 164, 50, 0.3);
}
.nav-logo span { color: var(--gold-300); }
.nav-links {
  display: flex; align-items: center; gap: var(--space-4);
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--navy-200);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--gold-400);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  border-radius: 1px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-300);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full);
  transition: all var(--transition-base) !important;
  box-shadow: 0 2px 12px rgba(212, 164, 50, 0.25);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(212, 164, 50, 0.40) !important; }
.nav-cta::after { display: none !important; }
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 32px; padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block; height: 2px;
  background: var(--cream-100);
  border-radius: 1px;
  transition: all var(--transition-base);
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(212,164,50,0.15);
    padding: var(--space-3) var(--space-4);
    gap: var(--space-2);
    align-items: flex-start;
  }
  .nav-hamburger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--green-900) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px var(--space-4) var(--space-12);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212, 164, 50, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(42, 96, 85, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg,
    var(--cream-100) 0px, var(--cream-100) 1px,
    transparent 1px, transparent 60px
  ),
  repeating-linear-gradient(
    -45deg,
    var(--cream-100) 0px, var(--cream-100) 1px,
    transparent 1px, transparent 60px
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-8); align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212, 164, 50, 0.12);
  border: 1px solid rgba(212, 164, 50, 0.3);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--gold-300);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-400);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1;
  color: var(--cream-100);
  margin-bottom: var(--space-3);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero p {
  font-size: 1.125rem; color: var(--navy-200);
  line-height: 1.7; max-width: 480px;
  margin-bottom: var(--space-5);
}
.hero-actions {
  display: flex; gap: var(--space-2); flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900);
  font-weight: 600; font-size: 1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(212, 164, 50, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 164, 50, 0.50);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.875rem 2rem;
  background: rgba(255,255,255,0.06);
  color: var(--cream-100);
  font-weight: 500; font-size: 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition-base);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.25);
}
.hero-stats {
  display: flex; gap: var(--space-5);
}
.hero-stat {}
.hero-stat .number {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700;
  color: var(--gold-300);
  display: block;
}
.hero-stat .label {
  font-size: 0.8rem; color: var(--navy-300);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-card-showcase {
  position: relative; width: 100%; max-width: 420px;
}
.hero-main-card {
  background: linear-gradient(145deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(212, 164, 50, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-xl), var(--shadow-gold);
  position: relative; z-index: 2;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-card-label {
  font-family: var(--font-accent);
  font-size: 0.9rem; color: var(--gold-300);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--cream-100);
  margin-bottom: var(--space-3);
}
.hero-card-coins {
  display: flex; align-items: center; gap: 10px;
  background: rgba(212, 164, 50, 0.1);
  border: 1px solid rgba(212, 164, 50, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  margin-bottom: var(--space-3);
}
.coin-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(212,164,50,0.4);
  animation: coinSpin 4s linear infinite;
}
@keyframes coinSpin {
  0%, 40%, 60%, 100% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
}
.coin-amount {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold-300);
}
.coin-label { font-size: 0.8rem; color: var(--navy-300); }
.hero-card-games {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mini-game-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  text-align: center;
  font-size: 0.75rem; color: var(--navy-200);
  transition: all var(--transition-base);
}
.mini-game-chip .chip-icon { font-size: 20px; margin-bottom: 4px; }
.hero-floater {
  position: absolute;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(212, 164, 50, 0.2);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
}
.hero-floater--1 {
  top: -20px; right: -30px;
  animation: float 5s ease-in-out infinite 1s;
}
.hero-floater--2 {
  bottom: -10px; left: -30px;
  animation: float 7s ease-in-out infinite 0.5s;
}
.floater-icon { font-size: 20px; }
.floater-text { color: var(--cream-100); font-weight: 500; }
.floater-sub { color: var(--navy-300); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
}

/* ===== SECTION SHARED ===== */
.section {
  padding: var(--space-12) var(--space-4);
}
.section-inner {
  max-width: 1280px; margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.9rem; color: var(--gold-500);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: var(--space-2);
}
.section-title .gold { color: var(--gold-500); }
.section-subtitle {
  font-size: 1.0625rem; color: var(--neutral-600);
  line-height: 1.7; max-width: 580px; margin: 0 auto;
}

/* ===== GAMES SECTION ===== */
.games-section {
  background: var(--cream-100);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.game-card {
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  cursor: pointer;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 164, 50, 0.3);
}
.game-card__cover {
  height: 200px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.game-card--poker .game-card__cover {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 50%, var(--green-600) 100%);
}
.game-card--roulette .game-card__cover {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, #1a1a2e 100%);
}
.game-card--blackjack .game-card__cover {
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 50%, #2C2018 100%);
}
.game-cover-icon {
  font-size: 72px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
  transition: transform var(--transition-slow);
}
.game-card:hover .game-cover-icon { transform: scale(1.15) rotate(-5deg); }
.game-cover-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.game-card__body { padding: var(--space-3) var(--space-3); flex: 1; }
.game-card__name {
  font-family: var(--font-display);
  font-size: 1.375rem; font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.game-card__desc {
  font-size: 0.875rem; color: var(--neutral-600);
  line-height: 1.6; margin-bottom: var(--space-2);
}
.game-card__meta {
  display: flex; gap: var(--space-2);
}
.game-meta-tag {
  font-size: 0.75rem; font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--cream-200);
  color: var(--neutral-700);
}
.game-card__footer {
  padding: var(--space-2) var(--space-3) var(--space-3);
  border-top: 1px solid var(--cream-200);
}
.btn-play {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 0.75rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900); font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  font-size: 0.9rem;
}
.btn-play:hover { box-shadow: var(--shadow-gold); }
@media (max-width: 900px) {
  .games-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  position: relative; overflow: hidden;
}
.benefits-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,164,50,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  position: relative; z-index: 1;
}
.benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  transition: all var(--transition-slow);
}
.benefit-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212, 164, 50, 0.25);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-2);
}
.benefit-icon--gold { background: rgba(212, 164, 50, 0.15); }
.benefit-icon--green { background: rgba(42, 96, 85, 0.25); }
.benefit-icon--navy { background: rgba(40, 77, 140, 0.25); }
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--cream-100);
  margin-bottom: 8px;
}
.benefit-card p { font-size: 0.875rem; color: var(--navy-200); line-height: 1.65; }
.benefits-section .section-title { color: var(--cream-100); }
.benefits-section .section-subtitle { color: var(--navy-200); }
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}

/* ===== COMMUNITY TEASER ===== */
.community-teaser {
  background: var(--cream-200);
  text-align: center;
}
.community-teaser .section-inner {
  max-width: 760px;
}
.community-players {
  display: flex; justify-content: center; margin-bottom: var(--space-3);
}
.player-avatars {
  display: flex;
}
.player-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 3px solid var(--cream-200);
  margin-left: -12px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--cream-100);
  font-weight: 600;
  overflow: hidden;
}
.player-avatar:first-child { margin-left: 0; }
.player-avatar img { width: 100%; height: 100%; object-fit: cover; }
.player-count-badge {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 3px solid var(--cream-200);
  margin-left: -12px;
  background: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  color: var(--navy-900);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(212, 164, 50, 0.1);
  color: var(--navy-200);
}
.footer-main {
  padding: var(--space-10) var(--space-4) var(--space-6);
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: var(--space-6);
}
.footer-brand .nav-logo {
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
}
.footer-brand p {
  font-size: 0.875rem; color: var(--navy-300); line-height: 1.65;
  margin-bottom: var(--space-2);
}
.footer-contact {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: var(--space-3);
}
.footer-contact a,
.footer-contact span {
  font-size: 0.8125rem; color: var(--navy-300); line-height: 1.5;
  display: flex; align-items: flex-start; gap: 7px;
  transition: color var(--transition-fast);
}
.footer-contact a:hover { color: var(--gold-300); }
.footer-contact .fc-icon { flex-shrink: 0; opacity: 0.7; }
.footer-social {
  display: flex; gap: 10px;
}
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all var(--transition-base);
}
.social-link:hover { background: rgba(212,164,50,0.15); border-color: rgba(212,164,50,0.3); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600;
  color: var(--cream-100);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem; color: var(--navy-300);
  transition: color var(--transition-fast);
}
.footer-col ul a:hover { color: var(--gold-300); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-4) var(--space-4);
  max-width: 1280px; margin: 0 auto;
}
.disclaimer-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-4);
}
.disclaimer-box p {
  font-size: 0.8125rem; color: var(--navy-300); line-height: 1.65;
  margin-bottom: 8px;
}
.disclaimer-box p:last-child { margin-bottom: 0; }
.disclaimer-box strong { color: var(--cream-200); }
.disclaimer-links {
  display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-2);
}
.disclaimer-links a {
  font-size: 0.8rem; color: var(--gold-400);
  text-decoration: underline;
  text-decoration-color: rgba(212,164,50,0.4);
}
.disclaimer-links a:hover { color: var(--gold-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-3) var(--space-4);
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-2); flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8125rem; color: var(--navy-400); }
.footer-bottom .age-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.3);
  color: #e07060;
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 10px; border-radius: var(--radius-full);
}
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; }
}

/* ===== INNER PAGE HEADER ===== */
.page-hero {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-900));
  padding: 120px var(--space-4) var(--space-10);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(212,164,50,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--cream-100); line-height: 1.2;
  margin-bottom: var(--space-2);
}
.page-hero p { font-size: 1.0625rem; color: var(--navy-200); line-height: 1.7; }
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  font-size: 0.8rem; color: var(--navy-300);
  margin-bottom: var(--space-3);
}
.page-breadcrumb a { color: var(--gold-400); }
.page-breadcrumb span { color: var(--navy-400); }

/* ===== CONTENT PAGES ===== */
.page-content {
  padding: var(--space-10) var(--space-4);
}
.page-content-inner {
  max-width: 860px; margin: 0 auto;
}
.content-block {
  margin-bottom: var(--space-6);
}
.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.625rem; font-weight: 700;
  color: var(--navy-900); margin-bottom: var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--cream-300);
}
.content-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--navy-800); margin-bottom: 10px; margin-top: var(--space-3);
}
.content-block p {
  font-size: 0.9375rem; color: var(--neutral-700);
  line-height: 1.75; margin-bottom: var(--space-2);
}
.content-block ul, .content-block ol {
  padding-left: var(--space-3); margin-bottom: var(--space-2);
}
.content-block li {
  font-size: 0.9375rem; color: var(--neutral-700);
  line-height: 1.75; margin-bottom: 6px;
  list-style: disc;
}
.content-block ol li { list-style: decimal; }
.content-block strong { color: var(--navy-800); }
.highlight-box {
  background: var(--gold-50);
  border: 1px solid rgba(190, 140, 30, 0.2);
  border-left: 4px solid var(--gold-400);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  margin: var(--space-3) 0;
}
.highlight-box p { color: var(--neutral-700) !important; margin-bottom: 0 !important; }

/* FAQ accordion */
.faq-item {
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-3);
  background: #fff;
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: 600;
  color: var(--navy-900);
  text-align: left;
  transition: background var(--transition-fast);
  gap: var(--space-2);
}
.faq-question:hover { background: var(--cream-100); }
.faq-question.open { background: var(--cream-100); }
.faq-chevron {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--cream-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: transform var(--transition-base);
  color: var(--neutral-700);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 var(--space-3) var(--space-3);
  background: var(--cream-100);
  font-size: 0.9375rem; color: var(--neutral-600); line-height: 1.7;
}
.faq-answer.open { display: block; }

/* Help center cards */
.help-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3);
}
.help-card {
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  transition: all var(--transition-base);
  text-align: center;
}
.help-card:hover {
  border-color: rgba(212,164,50,0.3);
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.help-card-icon { font-size: 36px; margin-bottom: var(--space-2); }
.help-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 600; color: var(--navy-900);
  margin-bottom: 8px;
}
.help-card p { font-size: 0.875rem; color: var(--neutral-600); line-height: 1.65; }
@media (max-width: 700px) {
  .help-grid { grid-template-columns: 1fr; }
}

/* Steps */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4);
}
.step-card {
  text-align: center;
  position: relative;
}
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--navy-900);
  margin: 0 auto var(--space-2);
  box-shadow: var(--shadow-gold);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600; color: var(--navy-900);
  margin-bottom: 8px;
}
.step-card p { font-size: 0.9rem; color: var(--neutral-600); line-height: 1.65; }
@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* Community page */
.community-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.community-card {
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  transition: all var(--transition-base);
}
.community-card:hover { box-shadow: var(--shadow-md); border-color: rgba(212,164,50,0.25); }
.community-card-icon { font-size: 32px; margin-bottom: var(--space-2); }
.community-card h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  color: var(--navy-900); margin-bottom: 8px;
}
.community-card p { font-size: 0.9rem; color: var(--neutral-600); line-height: 1.65; }
@media (max-width: 700px) {
  .community-grid { grid-template-columns: 1fr; }
}

/* About page team */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4);
}
.team-card {
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  text-align: center;
  transition: all var(--transition-base);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--space-2);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  border: 3px solid var(--cream-200);
}
.team-card h3 {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 600;
  color: var(--navy-900); margin-bottom: 4px;
}
.team-role { font-size: 0.8rem; color: var(--gold-500); font-weight: 500; margin-bottom: 10px; }
.team-card p { font-size: 0.875rem; color: var(--neutral-600); line-height: 1.6; }
@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* Responsible Gaming */
.responsible-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3);
  margin: var(--space-4) 0;
}
.responsible-feature {
  display: flex; gap: var(--space-2);
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
}
.responsible-feature-icon { font-size: 28px; flex-shrink: 0; }
.responsible-feature h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--navy-900); margin-bottom: 4px;
}
.responsible-feature p { font-size: 0.875rem; color: var(--neutral-600); line-height: 1.6; }
.help-resource-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3);
  margin: var(--space-4) 0;
}
.help-resource-card {
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-xl);
  padding: var(--space-3);
  text-align: center;
}
.help-resource-card h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--navy-900); margin-bottom: 6px;
}
.help-resource-card p { font-size: 0.8125rem; color: var(--neutral-600); margin-bottom: var(--space-2); }
.btn-resource {
  display: inline-block;
  padding: 8px 16px;
  background: var(--navy-900);
  color: var(--cream-100);
  font-size: 0.8125rem; font-weight: 500;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}
.btn-resource:hover { background: var(--navy-700); }
@media (max-width: 700px) {
  .responsible-features { grid-template-columns: 1fr; }
  .help-resource-cards { grid-template-columns: 1fr; }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mb-2 { margin-bottom: var(--space-2); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-4); }
