@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');

:root {
  --green-900: #0d1f15;
  --green-800: #1a3a26;
  --green-700: #1e4d35;
  --green-600: #2d6b48;
  --green-500: #3a8a5c;
  --green-400: #5aa87a;
  --green-300: #8acca2;
  --green-100: #d4ede0;
  --green-50:  #eef7f2;

  --gold-900: #5c3d0a;
  --gold-700: #a06820;
  --gold-600: #c8a035;
  --gold-500: #d4af37;
  --gold-400: #e8c460;
  --gold-300: #f0d88a;
  --gold-100: #faf3d8;

  --cream-dark: #e8dfc8;
  --cream:      #f5eed8;
  --cream-light:#faf7ef;

  --brown-900: #1a0e06;
  --brown-700: #3b2212;
  --brown-500: #5c3a1e;
  --brown-300: #8b6040;

  --text-dark:   #1a1208;
  --text-medium: #3d2e1a;
  --text-light:  #6b5840;
  --text-muted:  #9a8570;

  --white: #ffffff;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.12);
  --shadow-md:   0 4px 16px rgba(0,0,0,.15);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.2);
  --shadow-xl:   0 16px 60px rgba(0,0,0,.25);

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

  --transition: .25s ease;
  --transition-slow: .5s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream-light);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--text-dark);
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }

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

/* ─── HEADER ─────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}
.site-header.scrolled {
  background: var(--green-900);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
  padding: 12px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform var(--transition);
}
.logo:hover .logo-icon { transform: rotate(10deg) scale(1.05); }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.logo-text span { display: block; font-size: 11px; font-weight: 400; color: var(--gold-400); letter-spacing: .08em; text-transform: uppercase; }

.main-nav { flex: 1; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(245,238,216,.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold-400);
  background: rgba(200,160,53,.1);
}

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after { content: '▾'; font-size: 10px; opacity: .7; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--green-800);
  border: 1px solid rgba(200,160,53,.2);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  color: var(--cream);
  width: 100%;
}
.dropdown-menu a:hover { background: rgba(200,160,53,.15); color: var(--gold-400); }

.header-coins {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,160,53,.15);
  border: 1px solid rgba(200,160,53,.3);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-400);
  white-space: nowrap;
  cursor: default;
}
.header-coins span { font-size: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-900);
  z-index: 850;
  padding: 100px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  color: var(--cream);
  font-weight: 500;
}
.mobile-nav a:hover { color: var(--gold-400); }

/* ─── FOOTER ─────────────────────────────── */
.site-footer {
  background: var(--green-900);
  color: var(--cream);
  padding: 64px 0 32px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.footer-brand .logo-text { font-size: 22px; color: var(--cream); }
.footer-brand .logo-text span { color: var(--gold-400); margin-top: 4px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(245,238,216,.6);
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(245,238,216,.65);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-400); }

.footer-disclaimer {
  margin-top: 40px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(200,160,53,.2);
  border-radius: var(--radius-md);
  padding: 24px;
}
.footer-disclaimer p {
  font-size: 12px;
  color: rgba(245,238,216,.5);
  line-height: 1.8;
  margin-bottom: 12px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer a {
  color: var(--gold-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-disclaimer strong { color: rgba(245,238,216,.75); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(245,238,216,.4); }
.footer-age-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(245,238,216,.5);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 99px;
  padding: 6px 14px;
}
.footer-age-badge strong { color: var(--gold-400); font-size: 15px; }

/* ─── AGE MODAL ────────────────────────────── */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,31,21,.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.age-overlay.hidden { display: none; }

.age-modal {
  background: var(--green-800);
  border: 1px solid rgba(200,160,53,.3);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: modalIn .4s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.age-modal .modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(200,160,53,.15);
  border: 2px solid rgba(200,160,53,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
}
.age-modal h2 { font-size: 28px; color: var(--cream); margin-bottom: 8px; }
.age-modal .site-name { font-family: 'Playfair Display', serif; color: var(--gold-400); font-size: 18px; margin-bottom: 20px; }
.age-modal p { font-size: 14px; color: rgba(245,238,216,.7); line-height: 1.7; margin-bottom: 24px; }

.age-check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  padding: 16px;
  background: rgba(0,0,0,.2);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color var(--transition);
}
.age-check-label:hover { border-color: rgba(200,160,53,.3); }
.age-check-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold-600);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.age-check-label span { font-size: 14px; color: rgba(245,238,216,.8); line-height: 1.5; }

.btn-enter {
  width: 100%;
  padding: 16px;
  background: var(--gold-600);
  color: var(--brown-900);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-enter:enabled:hover { background: var(--gold-400); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,160,53,.4); }
.btn-enter:disabled { opacity: .4; cursor: not-allowed; }

/* ─── COOKIE CONSENT ────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: var(--green-900);
  border-top: 1px solid rgba(200,160,53,.25);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform .4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden { display: none; }

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--cream); margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: rgba(245,238,216,.6); line-height: 1.5; }
.cookie-text a { color: var(--gold-400); text-decoration: underline; }

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

/* ─── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-600);
  color: var(--brown-900);
  font-weight: 600;
}
.btn-primary:hover { background: var(--gold-400); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,160,53,.35); color: var(--brown-900); }

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,238,216,.35);
}
.btn-secondary:hover { border-color: var(--gold-400); color: var(--gold-400); }

.btn-ghost {
  background: transparent;
  color: rgba(245,238,216,.7);
  font-size: 13px;
  padding: 8px 14px;
}
.btn-ghost:hover { color: var(--cream); }

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ─── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 55%, var(--green-700) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(200,160,53,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(58,138,92,.15) 0%, transparent 60%);
}

.oak-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10c-8 0-14 6-14 14 0 4 2 8 4 10-6 2-10 8-10 14 0 2 0 4 1 6l-11 6h60l-11-6c1-2 1-4 1-6 0-6-4-12-10-14 2-2 4-6 4-10 0-8-6-14-14-14z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,160,53,.15);
  border: 1px solid rgba(200,160,53,.3);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-400);
  margin-bottom: 24px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold-400); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 700;
}
.hero h1 em { color: var(--gold-400); font-style: italic; }

.hero p {
  font-size: 18px;
  color: rgba(245,238,216,.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat {}
.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold-400);
}
.hero-stat span { font-size: 13px; color: rgba(245,238,216,.55); }

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

.hero-card-stack {
  position: relative;
  width: 300px;
  height: 380px;
  margin: 0 auto;
}
.hero-card {
  position: absolute;
  width: 200px;
  height: 280px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  box-shadow: var(--shadow-xl);
  animation: cardFloat 3s ease-in-out infinite;
}
.hero-card:nth-child(1) { background: linear-gradient(135deg, var(--gold-600), var(--gold-300)); left: 80px; top: 50px; animation-delay: .0s; z-index: 3; }
.hero-card:nth-child(2) { background: linear-gradient(135deg, var(--green-600), var(--green-400)); left: 40px; top: 80px; animation-delay: .5s; z-index: 2; transform: rotate(-8deg); }
.hero-card:nth-child(3) { background: linear-gradient(135deg, var(--brown-700), var(--brown-300)); left: 120px; top: 60px; animation-delay: 1s; z-index: 1; transform: rotate(8deg); }
@keyframes cardFloat { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-12px) rotate(var(--r,0deg)); } }
.hero-card:nth-child(2) { --r: -8deg; }
.hero-card:nth-child(3) { --r: 8deg; }

/* ─── SECTIONS ──────────────────────────────── */
.section { padding: 80px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--green-500);
  margin-bottom: 12px;
}
.section-label::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--green-500); }

.section-header { max-width: 600px; margin-bottom: 56px; }
.section-header.centered { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 16px; }
.section-header p { font-size: 16px; color: var(--text-light); line-height: 1.7; }

/* ─── GAMES GRID ─────────────────────────────── */
.games-section { background: var(--green-900); padding: 80px 0; }
.games-section .section-label { color: var(--gold-400); }
.games-section .section-label::before { background: var(--gold-400); }
.games-section .section-header h2 { color: var(--cream); }
.games-section .section-header p { color: rgba(245,238,216,.6); }

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

.game-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  position: relative;
}
.game-card:hover { transform: translateY(-6px); border-color: rgba(200,160,53,.3); box-shadow: 0 20px 60px rgba(0,0,0,.4); }

.game-card-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
}
.game-card:nth-child(1) .game-card-thumb { background: linear-gradient(135deg, #1a3a26, #2d6b48); }
.game-card:nth-child(2) .game-card-thumb { background: linear-gradient(135deg, #3b2212, #7a4828); }
.game-card:nth-child(3) .game-card-thumb { background: linear-gradient(135deg, #1e3a5a, #2d6080); }

.game-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.5));
}

.game-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-600);
  color: var(--brown-900);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  z-index: 2;
}

.game-card-body { padding: 24px; }
.game-card-body h3 { font-size: 20px; color: var(--cream); margin-bottom: 8px; }
.game-card-body p { font-size: 14px; color: rgba(245,238,216,.55); line-height: 1.6; margin-bottom: 20px; }

.game-meta { display: flex; gap: 16px; margin-bottom: 20px; }
.game-meta span { font-size: 12px; color: rgba(245,238,216,.4); display: flex; align-items: center; gap: 4px; }

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

.feature-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,.07);
  transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ─── HOW IT WORKS PREVIEW ──────────────────── */
.steps-section { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.6% + 16px);
  right: calc(16.6% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--gold-400), var(--gold-600), var(--gold-400));
}

.step-card { text-align: center; padding: 32px 24px; }
.step-number {
  width: 64px;
  height: 64px;
  background: var(--green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-400);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--cream);
}
.step-card h3 { font-size: 18px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ─── CTA BANNER ─────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(200,160,53,.1), transparent);
}
.cta-inner { max-width: 700px; margin: 0 auto; padding: 0 24px; text-align: center; position: relative; }
.cta-inner h2 { font-size: clamp(28px, 3.5vw, 44px); color: var(--cream); margin-bottom: 16px; }
.cta-inner p { font-size: 17px; color: rgba(245,238,216,.7); margin-bottom: 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── INNER PAGE HERO ────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 100%);
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 70% 50%, rgba(200,160,53,.07), transparent);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); color: var(--cream); margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: rgba(245,238,216,.65); max-width: 560px; line-height: 1.7; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(245,238,216,.4); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { opacity: .4; }

/* ─── CONTENT PROSE ─────────────────────────── */
.content-section { padding: 64px 0; }
.prose-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.prose h2 { font-size: 26px; margin: 40px 0 16px; color: var(--green-700); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 20px; margin: 28px 0 12px; }
.prose p { font-size: 15px; color: var(--text-medium); line-height: 1.8; margin-bottom: 16px; }
.prose ul, .prose ol { margin: 16px 0 20px 24px; }
.prose li { font-size: 15px; color: var(--text-medium); line-height: 1.8; margin-bottom: 8px; }
.prose a { color: var(--green-600); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--text-dark); font-weight: 600; }

/* ─── FAQ ────────────────────────────────────── */
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green-600); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--green-50); border-radius: 50%; font-size: 16px; font-weight: 600; transition: transform var(--transition), background var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green-700); color: var(--cream); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 15px; color: var(--text-light); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── COMMUNITY PAGE ────────────────────────── */
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.community-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.07);
  transition: all var(--transition);
}
.community-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.community-icon { font-size: 40px; margin-bottom: 16px; }
.community-card h3 { font-size: 20px; margin-bottom: 12px; }
.community-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ─── HELP CENTER ────────────────────────────── */
.help-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.help-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(0,0,0,.07);
  display: flex;
  gap: 20px;
  transition: all var(--transition);
}
.help-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.help-card-icon { font-size: 32px; flex-shrink: 0; }
.help-card h3 { font-size: 18px; margin-bottom: 8px; }
.help-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ─── RESPONSIBLE GAMING ─────────────────────── */
.rg-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.rg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--green-500);
}
.rg-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--green-700); }
.rg-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

.rg-resources {
  background: var(--green-50);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--green-100);
}
.rg-resources h3 { font-size: 22px; margin-bottom: 20px; color: var(--green-700); }
.rg-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rg-link {
  display: block;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-700);
  border: 1px solid var(--green-100);
  transition: all var(--transition);
}
.rg-link:hover { background: var(--green-700); color: var(--cream); border-color: var(--green-700); }
.rg-link strong { display: block; margin-bottom: 4px; font-size: 15px; }
.rg-link span { font-size: 12px; opacity: .7; }

/* ─── GAMES LAYOUT ───────────────────────────── */
.game-page { padding: 100px 0 60px; min-height: 100vh; }
.game-page-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.game-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.game-header h1 { font-size: 32px; color: var(--text-dark); }
.coin-display {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-700);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
}
.coin-display span { color: var(--gold-400); font-size: 18px; }
.coin-display .coin-icon { font-size: 20px; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav { display: none; }
  .header-coins { display: none; }
  .mobile-nav { display: block; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero h1 { font-size: 36px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-visual { display: none; }

  .games-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .community-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .rg-cards { grid-template-columns: 1fr; }
  .rg-links { grid-template-columns: 1fr; }

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

  .section { padding: 56px 0; }
  .page-hero { padding: 100px 0 48px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cookie-inner { flex-direction: column; }
}
