/* ============================================================
   MapleForestJourney — Main Stylesheet
   ============================================================ */

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

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --forest-900: #0F2208;
  --forest-800: #1B3A0F;
  --forest-700: #2D5A1B;
  --forest-600: #3D7024;
  --forest-500: #4A8A2F;
  --forest-400: #6AAF4A;
  --forest-300: #90CC6D;
  --forest-200: #C0E8A0;
  --forest-100: #E8F5DC;

  --maple-900: #7A2800;
  --maple-800: #A83A00;
  --maple-700: #B8490A;
  --maple-600: #D4620A;
  --maple-500: #E87A1A;
  --maple-400: #F5A030;
  --maple-300: #F8BF6A;
  --maple-200: #FBDCAA;
  --maple-100: #FEF3E2;

  --bark-900: #1A0D06;
  --bark-800: #2E1B0E;
  --bark-700: #4A2E1A;
  --bark-600: #6B422A;
  --bark-500: #8A5A3A;
  --bark-400: #A87350;
  --bark-300: #C4956C;
  --bark-200: #DDB892;
  --bark-100: #F5E9D8;

  --neutral-50: #FDFAF5;
  --neutral-100: #F5EDD9;
  --neutral-200: #E8D5B7;
  --neutral-300: #C9AE88;
  --neutral-400: #A08060;
  --neutral-500: #7A5C3F;
  --neutral-600: #5C3D24;
  --neutral-700: #3D2B1F;
  --neutral-800: #2A1A10;
  --neutral-900: #1A0D06;

  --success: #2D8B4E;
  --warning: #D4820A;
  --error: #C0392B;
  --info: #2B6CB0;

  --text-primary: #1A1208;
  --text-secondary: #3D2B1F;
  --text-muted: #7A5C3F;
  --text-on-dark: #F5EDD9;
  --text-on-accent: #FFFFFF;

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

  --shadow-sm: 0 1px 3px rgba(26,13,6,0.12), 0 1px 2px rgba(26,13,6,0.08);
  --shadow-md: 0 4px 12px rgba(26,13,6,0.15), 0 2px 4px rgba(26,13,6,0.10);
  --shadow-lg: 0 12px 32px rgba(26,13,6,0.20), 0 4px 8px rgba(26,13,6,0.12);
  --shadow-xl: 0 24px 64px rgba(26,13,6,0.24), 0 8px 16px rgba(26,13,6,0.14);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --nav-height: 72px;
  --container-max: 1200px;
  --section-pad: 100px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--neutral-50);
  overflow-x: hidden;
}

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

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { line-height: 1.7; }

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-accent { color: var(--maple-600); }

/* ─── Layout ────────────────────────────────────────────────── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maple-600);
  background: var(--maple-100);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title { margin-bottom: 16px; color: var(--forest-800); }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }

/* ─── Age Gate Modal ────────────────────────────────────────── */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(15,34,8,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.age-gate-modal {
  background: var(--neutral-50);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.4s ease;
}

.age-gate-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--forest-700), var(--maple-600));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.age-gate-modal h2 {
  font-size: 1.8rem;
  color: var(--forest-800);
  margin-bottom: 12px;
}

.age-gate-modal p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.age-gate-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--neutral-100);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
  cursor: pointer;
}

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

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

#age-gate-btn {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-on-accent);
  background: linear-gradient(135deg, var(--forest-700), var(--forest-500));
  transition: var(--transition-base);
  opacity: 0.4;
  pointer-events: none;
}

#age-gate-btn.active {
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 4px 16px rgba(45,90,27,0.35);
}

#age-gate-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,90,27,0.40);
}

.age-gate-note {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.age-gate-note a { color: var(--maple-600); text-decoration: underline; }

/* ─── Cookie Consent ────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bark-800);
  color: var(--text-on-dark);
  padding: 20px 24px;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p { font-size: 0.875rem; flex: 1; min-width: 200px; line-height: 1.6; }
.cookie-inner a { color: var(--maple-300); text-decoration: underline; }

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

.btn-cookie-accept {
  background: var(--maple-600);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition-fast);
}
.btn-cookie-accept:hover { background: var(--maple-700); }

.btn-cookie-decline {
  background: transparent;
  color: var(--neutral-300);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  border: 1px solid var(--bark-500);
  transition: var(--transition-fast);
}
.btn-cookie-decline:hover { background: var(--bark-700); }

/* ─── Navigation ────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 900;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(27,58,15,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
}

.site-nav.dark-nav {
  background: var(--forest-800);
}

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

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

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--maple-600), var(--maple-400));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--neutral-50); line-height: 1.2; }
.nav-logo-text span { color: var(--maple-300); }

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

.nav-links a {
  color: var(--neutral-200);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.nav-links a:hover { background: rgba(255,255,255,0.1); color: var(--neutral-50); }
.nav-links a.active { color: var(--maple-300); }

.nav-cta {
  background: linear-gradient(135deg, var(--maple-600), var(--maple-500));
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(212,98,10,0.35);
  transition: var(--transition-base) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,98,10,0.45) !important; background: linear-gradient(135deg, var(--maple-700), var(--maple-600)) !important; }

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-200);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--maple-700), var(--maple-500));
  color: #fff;
  box-shadow: 0 4px 16px rgba(212,98,10,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,98,10,0.45); }

.btn-secondary {
  background: transparent;
  color: var(--neutral-50);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.btn-forest {
  background: linear-gradient(135deg, var(--forest-800), var(--forest-600));
  color: #fff;
  box-shadow: 0 4px 16px rgba(45,90,27,0.35);
}
.btn-forest:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,90,27,0.45); }

.btn-outline {
  background: transparent;
  color: var(--forest-700);
  border: 1.5px solid var(--forest-500);
}
.btn-outline:hover { background: var(--forest-100); }

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--forest-900) 0%, var(--forest-800) 45%, var(--bark-800) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-leaf {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.15;
  animation: floatLeaf linear infinite;
}

@keyframes floatLeaf {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; padding: 80px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,160,48,0.15);
  border: 1px solid rgba(245,160,48,0.3);
  color: var(--maple-300);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title { color: var(--neutral-50); margin-bottom: 24px; }
.hero-title span { color: var(--maple-400); }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--neutral-300);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat { }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--maple-300); }
.hero-stat-label { font-size: 0.8rem; color: var(--neutral-400); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack { position: relative; width: 340px; height: 420px; }

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  padding: 28px;
  transition: var(--transition-slow);
}

.hero-card-1 { width: 280px; top: 20px; left: 0; transform: rotate(-6deg); }
.hero-card-2 { width: 280px; top: 40px; left: 40px; transform: rotate(0deg); background: rgba(255,255,255,0.1); }
.hero-card-3 { width: 280px; top: 20px; left: 80px; transform: rotate(5deg); }

.hero-card-icon { font-size: 2.5rem; margin-bottom: 14px; }
.hero-card-title { font-family: 'Playfair Display', serif; color: var(--neutral-50); font-size: 1.1rem; margin-bottom: 6px; }
.hero-card-text { color: var(--neutral-400); font-size: 0.8rem; }

/* ─── Games Section ─────────────────────────────────────────── */
.games-section { background: var(--neutral-50); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.game-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  cursor: pointer;
  border: 1px solid var(--neutral-200);
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.game-card-banner {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.game-card-banner-1 {
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
}
.game-card-banner-2 {
  background: linear-gradient(135deg, var(--bark-800), var(--maple-700));
}
.game-card-banner-3 {
  background: linear-gradient(135deg, var(--forest-800), var(--bark-700));
}

.game-card-banner-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--maple-600);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.game-card-body { padding: 28px; }
.game-card-body h3 { color: var(--forest-800); margin-bottom: 8px; }
.game-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

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

.game-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-muted); }
.game-meta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--forest-400); }

/* ─── Features / Benefits ───────────────────────────────────── */
.features-section { background: linear-gradient(180deg, var(--neutral-100), var(--neutral-50)); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--neutral-200);
  transition: var(--transition-base);
}

.feature-card:hover { border-color: var(--forest-300); box-shadow: var(--shadow-md); }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-icon-1 { background: var(--forest-100); }
.feature-icon-2 { background: var(--maple-100); }
.feature-icon-3 { background: var(--bark-100); }
.feature-icon-4 { background: var(--forest-100); }
.feature-icon-5 { background: var(--maple-100); }
.feature-icon-6 { background: var(--bark-100); }

.feature-card h4 { color: var(--forest-800); margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ─── CTA Banner ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-800) 50%, var(--bark-800) 100%);
  color: var(--neutral-50);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,98,10,0.15) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--neutral-50); margin-bottom: 16px; }
.cta-section p { color: var(--neutral-300); font-size: 1.1rem; margin-bottom: 40px; }
.cta-section .btn-secondary { color: var(--neutral-50); }

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--forest-900);
  color: var(--neutral-300);
  padding-top: 80px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--maple-600), var(--maple-400));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--neutral-100); }
.footer-logo-text span { color: var(--maple-300); }

.footer-brand > p { font-size: 0.875rem; line-height: 1.7; color: var(--neutral-400); max-width: 280px; }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-100);
  margin-bottom: 16px;
}

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

.footer-col ul a {
  font-size: 0.875rem;
  color: var(--neutral-400);
  transition: color var(--transition-fast);
}

.footer-col ul a:hover { color: var(--maple-300); }

.footer-disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 40px 0 0;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }

.footer-disclaimer .disc-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-disclaimer .disc-links a {
  font-size: 0.78rem;
  color: var(--maple-400);
  text-decoration: underline;
  transition: color var(--transition-fast);
}
.footer-disclaimer .disc-links a:hover { color: var(--maple-300); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: var(--neutral-500); }
.footer-age-badge {
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  color: #E07060;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ─── Inner Page Header ─────────────────────────────────────── */
.page-header {
  background: linear-gradient(160deg, var(--forest-900), var(--forest-800));
  padding: 120px 0 80px;
  color: var(--neutral-50);
  text-align: center;
}

.page-header h1 { color: var(--neutral-50); margin-bottom: 16px; }
.page-header p { color: var(--neutral-300); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ─── Content Blocks ────────────────────────────────────────── */
.content-section { padding: 80px 0; }

.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { color: var(--forest-800); margin-bottom: 16px; margin-top: 48px; font-size: 1.6rem; }
.content-block h2:first-child { margin-top: 0; }
.content-block h3 { color: var(--forest-700); margin-bottom: 12px; margin-top: 32px; font-size: 1.2rem; }
.content-block p { color: var(--text-secondary); margin-bottom: 16px; }
.content-block ul, .content-block ol { color: var(--text-secondary); padding-left: 24px; margin-bottom: 16px; }
.content-block li { margin-bottom: 8px; line-height: 1.7; }
.content-block a { color: var(--maple-600); text-decoration: underline; }

/* ─── Cards ─────────────────────────────────────────────────── */
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
}

.info-card-icon { font-size: 2rem; margin-bottom: 16px; }
.info-card h3 { color: var(--forest-800); margin-bottom: 10px; font-size: 1.1rem; }
.info-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── Accordion / FAQ ───────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-200);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition-fast);
}
.faq-question:hover { background: var(--neutral-100); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--text-muted);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

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

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Steps ─────────────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; }

.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--forest-200);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--forest-700), var(--forest-500));
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45,90,27,0.3);
}

.step-content h3 { color: var(--forest-800); margin-bottom: 8px; padding-top: 12px; }
.step-content p { color: var(--text-muted); font-size: 0.9rem; }

/* ─── Alert Box ─────────────────────────────────────────────── */
.alert {
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.875rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.alert-warning { background: #FFF8E1; border-left: 4px solid var(--warning); color: #5C3A00; }
.alert-info { background: #E8F4FD; border-left: 4px solid var(--info); color: #1A3A58; }
.alert-success { background: #E8F5EC; border-left: 4px solid var(--success); color: #1A3A26; }

/* ─── Animations ────────────────────────────────────────────── */
@keyframes slideUp {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .hero .container { flex-direction: column; }
  .hero-visual { display: none; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .nav-links { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--forest-900); flex-direction: column; padding: 24px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 60px 0; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 24px; }

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

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

@media (max-width: 480px) {
  .age-gate-modal { padding: 36px 24px; }
  .container { padding: 0 16px; }
}
