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

:root {
  --forest-deep: #1a3d2b;
  --forest-mid: #2d6a4f;
  --forest-light: #4a9970;
  --forest-pale: #a8d5b5;
  --amber: #c8a135;
  --amber-light: #e8bf5a;
  --bark: #7a4f2e;
  --bark-light: #b07a50;
  --cream: #f5f0e6;
  --stone: #e8e0d4;
  --stone-dark: #d0c8bc;
  --text: #1c2b1f;
  --text-mid: #3d5445;
  --text-light: #6b8070;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26,61,43,0.10);
  --shadow-md: 0 6px 24px rgba(26,61,43,0.14);
  --shadow-lg: 0 16px 48px rgba(26,61,43,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  color: var(--forest-deep);
  box-shadow: 0 4px 16px rgba(200,161,53,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,161,53,0.45);
  color: var(--forest-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-forest {
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest-deep) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,106,79,0.35);
}
.btn-forest:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.45);
  color: var(--white);
}

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: rgba(26,61,43,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}
.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--forest-light), var(--amber));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--amber-light); }
.nav-cta { margin-left: 1rem; }
.nav-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0d2618 0%, #1a3d2b 40%, #2d6a4f 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 2rem 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a9970' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-trees {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(13,38,24,0.6) 0%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,161,53,0.15);
  border: 1px solid rgba(200,161,53,0.4);
  color: var(--amber-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-title .accent { color: var(--amber-light); }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-light);
  display: block;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 320px;
  height: 400px;
}
.hero-card {
  position: absolute;
  width: 200px;
  height: 260px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.hero-card:nth-child(1) {
  background: linear-gradient(145deg, #2d6a4f, #1a3d2b);
  top: 0; left: 0;
  animation-delay: 0s;
  border: 1px solid rgba(74,153,112,0.3);
}
.hero-card:nth-child(2) {
  background: linear-gradient(145deg, #8b5e3c, #5a3a1a);
  top: 60px; left: 60px;
  animation-delay: 0.8s;
  border: 1px solid rgba(200,161,53,0.3);
}
.hero-card:nth-child(3) {
  background: linear-gradient(145deg, #c8a135, #a07820);
  top: 120px; left: 120px;
  animation-delay: 1.6s;
  border: 1px solid rgba(232,191,90,0.4);
}
.hero-card .card-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  letter-spacing: 0.06em;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}

/* ─── SECTIONS ─── */
.section { padding: 100px 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  color: var(--forest-mid);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ─── GAMES ─── */
.games-section {
  background: var(--cream);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.game-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.game-card-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}
.game-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.35));
}
.game-card-thumb.slots-thumb {
  background: linear-gradient(135deg, #1a3d2b 0%, #4a9970 100%);
}
.game-card-thumb.blackjack-thumb {
  background: linear-gradient(135deg, #2c1810 0%, #7a4f2e 100%);
}
.game-card-thumb.roulette-thumb {
  background: linear-gradient(135deg, #0d2618 0%, #2d6a4f 60%, #c8a135 100%);
}
.game-card-body { padding: 24px; }
.game-badge {
  display: inline-block;
  background: rgba(74,153,112,0.12);
  color: var(--forest-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.game-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--forest-deep);
}
.game-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
.game-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.game-meta span {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.game-card-action { width: 100%; justify-content: center; }

/* ─── FEATURES ─── */
.features-section {
  background: linear-gradient(160deg, var(--forest-deep) 0%, #0d2618 100%);
  color: var(--white);
}
.features-section .section-title { color: var(--white); }
.features-section .section-desc { color: rgba(255,255,255,0.7); }
.features-section .section-label { color: var(--amber-light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,161,53,0.3);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(200,161,53,0.2), rgba(74,153,112,0.2));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ─── RESPONSIBLE GAMING BANNER ─── */
.rg-banner {
  background: linear-gradient(135deg, var(--bark) 0%, #4a2a10 100%);
  padding: 60px 2rem;
}
.rg-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.rg-icon { font-size: 3rem; flex-shrink: 0; }
.rg-content { flex: 1; }
.rg-title {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.rg-desc { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ─── FOOTER ─── */
.site-footer {
  background: #0d1f15;
  color: rgba(255,255,255,0.7);
  padding: 72px 2rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--amber-light); }
.footer-disclaimer {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 40px 0;
}
.footer-disclaimer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.footer-disclaimer p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer a {
  color: var(--forest-pale);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-disclaimer a:hover { color: var(--amber-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom .age-badge {
  background: rgba(200,161,53,0.15);
  border: 1px solid rgba(200,161,53,0.3);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}

/* ─── AGE MODAL ─── */
.age-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,25,15,0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  animation: modal-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.age-modal .modal-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
}
.age-modal h2 {
  font-size: 1.9rem;
  color: var(--forest-deep);
  margin-bottom: 12px;
}
.age-modal p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.age-modal .checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--stone);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
  cursor: pointer;
}
.age-modal .checkbox-wrap input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--forest-mid);
  cursor: pointer;
  flex-shrink: 0;
}
.age-modal .checkbox-wrap label {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.55;
  cursor: pointer;
}
.age-modal .btn-confirm {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--forest-mid), var(--forest-deep));
  color: var(--white);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.age-modal .btn-confirm:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.age-modal .btn-confirm:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.4);
}
.age-modal .modal-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 16px;
  margin-bottom: 0;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 8000;
  background: #1a2e22;
  border: 1px solid rgba(74,153,112,0.3);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  max-width: 660px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  display: flex;
  gap: 20px;
  align-items: center;
  animation: slide-up 0.4s ease;
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner.hidden { display: none; }
.cookie-text { flex: 1; }
.cookie-text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.cookie-text a { color: var(--amber-light); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-cookie-accept {
  background: linear-gradient(135deg, var(--forest-light), var(--forest-mid));
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn-cookie-accept:hover { transform: translateY(-1px); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn-cookie-decline:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }

/* ─── PAGE HERO ─── */
.page-hero {
  min-height: 320px;
  background: linear-gradient(160deg, #0d2618 0%, #1a3d2b 100%);
  display: flex;
  align-items: flex-end;
  padding: 100px 2rem 60px;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 580px; }

/* ─── CONTENT PAGES ─── */
.content-section { padding: 80px 2rem; }
.content-inner { max-width: 860px; margin: 0 auto; }
.content-inner h2 {
  font-size: 1.7rem;
  color: var(--forest-deep);
  margin: 40px 0 16px;
}
.content-inner h2:first-child { margin-top: 0; }
.content-inner h3 {
  font-size: 1.2rem;
  color: var(--forest-mid);
  margin: 28px 0 12px;
}
.content-inner p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-inner ul, .content-inner ol {
  margin: 12px 0 20px 24px;
}
.content-inner li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 8px;
}
.content-inner a { color: var(--forest-mid); text-decoration: underline; }
.info-box {
  background: rgba(74,153,112,0.08);
  border-left: 4px solid var(--forest-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.warning-box {
  background: rgba(200,161,53,0.08);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.warning-box p { color: var(--text); }

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--stone-dark);
  padding: 24px 0;
}
.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--forest-light);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-top: 14px; }

/* ─── COMMUNITY ─── */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.community-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.community-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.community-card .icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.community-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.community-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* ─── STEPS ─── */
.steps-list { list-style: none; margin: 40px 0; }
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--stone-dark);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--forest-mid), var(--forest-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.step-content h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--forest-deep); }
.step-content p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* ─── GAME PAGE ─── */
.game-page-hero {
  background: linear-gradient(160deg, #0d2618 0%, #1a3d2b 100%);
  padding: 100px 2rem 60px;
  text-align: center;
}
.game-page-hero h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 10px; }
.game-page-hero p { color: rgba(255,255,255,0.65); margin: 0 auto; max-width: 480px; }
.coins-display {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,161,53,0.15);
  border: 1px solid rgba(200,161,53,0.4);
  color: var(--amber-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 20px;
}
.game-container { max-width: 800px; margin: 60px auto; padding: 0 2rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-menu-toggle { display: flex; }
  .games-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .community-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .cookie-banner { flex-direction: column; bottom: 0; left: 0; right: 0; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
  .age-modal { padding: 36px 24px; }
  .rg-banner-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

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