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

/* =================== CSS VARIABLES =================== */
:root {
  --bg-primary: #06101e;
  --bg-secondary: #0a1628;
  --bg-surface: #0f1e35;
  --bg-card: #132540;
  --bg-card-hover: #172d4e;

  --gold-primary: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #9a7830;
  --gold-faint: rgba(201, 168, 76, 0.1);
  --gold-subtle: rgba(201, 168, 76, 0.2);

  --text-primary: #e8dcc8;
  --text-secondary: #9ba8b7;
  --text-muted: #4e5f70;
  --text-gold: #c9a84c;

  --green-accent: #2d7a4a;
  --green-light: #38a05e;
  --red-accent: #a83030;
  --red-light: #c84040;

  --border: rgba(201, 168, 76, 0.18);
  --border-hover: rgba(201, 168, 76, 0.45);
  --border-subtle: rgba(232, 220, 200, 0.08);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.6);

  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --max-width: 1200px;
  --nav-height: 72px;
}

/* =================== RESET & BASE =================== */
*, *::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-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

a { color: var(--gold-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-primary);
}

p { line-height: 1.7; }

/* =================== SCROLLBAR =================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

/* =================== AGE GATE =================== */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: radial-gradient(ellipse at center, #0f1e35 0%, #06101e 100%);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#age-gate.visible { display: flex; }

#age-gate.fade-out { opacity: 0; pointer-events: none; }

.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-deep), 0 0 80px rgba(201, 168, 76, 0.08);
  animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.age-gate-crown {
  font-size: 56px;
  margin-bottom: 24px;
  display: block;
  line-height: 1;
  filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.4));
}

.age-gate-box h2 {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.age-gate-box .site-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.age-gate-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.65;
}

.age-gate-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin-bottom: 28px;
  padding: 16px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.age-gate-check:hover { border-color: var(--border-hover); background: var(--gold-faint); }
.age-gate-check.checked { border-color: var(--gold-primary); background: rgba(201, 168, 76, 0.08); }

.age-gate-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--gold-primary);
  margin-top: 2px;
  cursor: pointer;
}

.age-gate-check label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.55;
}

.age-gate-check label strong { color: var(--text-primary); }

#age-confirm-btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0.45;
  pointer-events: none;
}

#age-confirm-btn.active {
  opacity: 1;
  pointer-events: all;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

#age-confirm-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.age-gate-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =================== COOKIE CONSENT =================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: linear-gradient(to right, #0d1f38, #0a1628);
  border-top: 1px solid var(--border);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#cookie-banner.show { transform: translateY(0); }

.cookie-text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.cookie-text a { color: var(--gold-primary); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

.btn-cookie-accept {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-cookie-accept:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3); }

.btn-cookie-decline {
  padding: 10px 20px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}

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

/* =================== NAVIGATION =================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(6, 16, 30, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-crown { font-size: 28px; line-height: 1; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.nav-logo-text span { color: var(--gold-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--text-primary); background: var(--gold-faint); }
.nav-links a.active { color: var(--gold-primary); }

.btn-nav-play {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: var(--bg-primary) !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.25);
}

.btn-nav-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4) !important;
  background: rgba(0,0,0,0) !important;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light)) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =================== PAGE WRAPPER =================== */
.page-wrapper {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

/* =================== HERO SECTION =================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(15, 35, 65, 0.8) 0%, var(--bg-primary) 70%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45, 122, 74, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 40%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: var(--gold-faint);
  animation: fadeSlideDown 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeSlideDown 0.6s ease 0.1s both;
}

.hero-title .line-gold { color: var(--gold-primary); display: block; font-style: italic; }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: fadeSlideDown 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeSlideDown 0.6s ease 0.4s both;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  display: block;
}

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

/* =================== BUTTONS =================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  color: var(--gold-light);
  background: var(--gold-faint);
  transform: translateY(-2px);
}

/* =================== SECTION LAYOUT =================== */
.section {
  padding: 96px 40px;
}

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

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title em { font-style: italic; color: var(--gold-primary); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

.section-alt { background: var(--bg-secondary); }

/* =================== GAMES SECTION =================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.game-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow-deep);
}

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

.game-card-visual-poker {
  background: radial-gradient(ellipse at center, #1a3a1a 0%, #0d2a10 100%);
}

.game-card-visual-slots {
  background: radial-gradient(ellipse at center, #2a1a1a 0%, #1a0a0a 100%);
}

.game-card-visual-roulette {
  background: radial-gradient(ellipse at center, #1a1a2a 0%, #0a0a1a 100%);
}

.game-card-icon {
  font-size: 72px;
  line-height: 1;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
  transition: transform var(--transition-slow);
}

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

.game-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--gold-faint);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-card-body { padding: 28px; }

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

.game-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.game-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.game-card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.game-card-meta-item svg { width: 14px; height: 14px; flex-shrink: 0; }

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

.game-card-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: var(--bg-primary);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}

.game-card:hover .game-card-play-btn {
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.game-card-players {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.game-card-players::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green-accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green-accent);
  animation: pulse-green 2s ease infinite;
}

/* =================== FEATURES SECTION =================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-faint);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =================== CTA SECTION =================== */
.cta-section {
  padding: 96px 40px;
  background: linear-gradient(135deg, #0d1f38 0%, #06101e 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

/* =================== FOOTER =================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 40px 32px;
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-brand-logo-crown { font-size: 32px; }

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

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

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-contact-item span:first-child { flex-shrink: 0; }

.footer-contact-item a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--gold-primary); }

.footer-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.footer-age-badge .age-num {
  background: var(--gold-primary);
  color: var(--bg-primary);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold-primary); }

.footer-disclaimer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px;
  margin-top: 32px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-disclaimer strong {
  color: var(--text-secondary);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.footer-disclaimer a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.footer-disclaimer a:hover { color: var(--gold-primary); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* =================== PAGE HERO (inner pages) =================== */
.page-hero {
  padding: 80px 40px 64px;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =================== CONTENT SECTIONS =================== */
.content-section {
  padding: 80px 40px;
}

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

.content-inner h2 {
  font-size: 1.7rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.content-inner h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--gold-primary);
}

.content-inner p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}

.content-inner ul, .content-inner ol {
  margin: 16px 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-inner li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  list-style: disc;
}

.content-inner ol li { list-style: decimal; }

/* =================== STEPS (How It Works) =================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

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

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =================== FAQ SECTION =================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold-primary); }
.faq-item.open .faq-question { color: var(--gold-primary); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 12px;
  color: var(--text-muted);
}

.faq-item.open .faq-chevron {
  background: var(--gold-faint);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 28px 22px;
}

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

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

.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}

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

.community-icon { font-size: 48px; margin-bottom: 20px; display: block; }

.community-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.community-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =================== HELP CENTER =================== */
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.help-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

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

.help-card-icon { font-size: 36px; margin-bottom: 16px; display: block; }

.help-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

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

/* =================== DIVIDER =================== */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0;
}

/* =================== ANIMATIONS =================== */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--green-accent); }
  50% { opacity: 0.6; box-shadow: 0 0 12px var(--green-accent); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-float { animation: float 4s ease infinite; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(6, 16, 30, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    z-index: 999;
  }
  .nav-hamburger { display: flex; }
  .btn-nav-play { display: none; }

  .section { padding: 64px 20px; }
  .hero { padding: 60px 20px; }
  .hero-stats { gap: 24px; }
  .hero-stat-value { font-size: 1.5rem; }

  .games-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-main { gap: 32px; }
  .footer { padding: 48px 20px 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .page-hero { padding: 60px 20px 48px; }
  .content-section { padding: 60px 20px; }
  .age-gate-box { padding: 40px 24px; }
  .cookie-banner { flex-direction: column; }
  #cookie-banner { flex-direction: column; gap: 16px; }
  .cookie-actions { width: 100%; }

  .cta-section { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { justify-content: center; }
}
