/* GoldenNaijaPlay - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --gold: #D4A017;
  --gold-light: #F5C842;
  --gold-dark: #B8860B;
  --green: #1A6B3A;
  --green-light: #2E8B57;
  --green-pale: #E8F5EC;
  --cream: #FFFDF5;
  --white: #FFFFFF;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-800: #1F2937;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-gold: 0 4px 20px rgba(212,160,23,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── AGE GATE OVERLAY ─── */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.age-gate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-light);
  animation: popIn 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.age-gate-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.2rem;
}

.age-gate-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.age-gate-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.age-gate-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  font-size: 2rem;
  font-weight: 800;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  line-height: 70px;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(212,160,23,0.4);
}

.age-gate-btns {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}

.btn-enter, .btn-exit {
  flex: 1;
  padding: 0.85rem 1rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  font-family: 'Poppins', sans-serif;
}

.btn-enter {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: white;
  box-shadow: var(--shadow-gold);
}

.btn-enter:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212,160,23,0.4);
}

.btn-exit {
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

.btn-exit:hover {
  background: var(--gray-200);
}

.age-disclaimer {
  font-size: 0.72rem !important;
  color: var(--gray-400) !important;
  margin-top: 1rem !important;
  line-height: 1.4 !important;
}

/* ─── HEADER / NAV ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-svg { width: 44px; height: 44px; flex-shrink: 0; }

.logo-text { line-height: 1.1; }
.logo-text span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: -0.3px;
}
.logo-text span:last-child {
  display: block;
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 0.25rem; }

nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.2s;
}

nav a:hover, nav a.active {
  background: var(--green-pale);
  color: var(--green);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: white !important;
  box-shadow: var(--shadow-gold);
  font-weight: 600 !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.4) !important;
}

.nav-18 {
  background: var(--green) !important;
  color: white !important;
  font-size: 0.75rem !important;
  padding: 0.35rem 0.7rem !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #FFFEF0 0%, #FFF8E1 40%, #E8F5EC 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.12), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,58,0.1), transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(212,160,23,0.05));
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--green);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--green);
  transition: all 0.25s;
}

.btn-secondary:hover {
  background: var(--green);
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item .num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-dark);
  font-family: 'Playfair Display', serif;
}

.stat-item .lbl {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── SECTION COMMONS ─── */
section { padding: 4.5rem 1.5rem; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--gray-600);
  max-width: 550px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ─── SOCIAL CASINO NOTICE ─── */
.social-notice {
  background: linear-gradient(135deg, var(--green), #1A5C30);
  color: white;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.social-notice strong { color: var(--gold-light); }

/* ─── GAMES SECTION ─── */
.games-section { background: var(--white); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.game-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.game-thumb {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.game-thumb canvas {
  width: 100%;
  height: 100%;
}

.game-badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #FF6B35, #FF4500);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-badge-hot {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-18-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.game-info {
  padding: 1.2rem;
}

.game-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--gray-800);
}

.game-info p {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

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

.game-type {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 600;
  background: var(--green-pale);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.play-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: white;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.play-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212,160,23,0.4);
}

/* ─── HOW IT WORKS ─── */
.how-it-works { background: var(--gray-100); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-gold);
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.step-card p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ─── FEATURES ─── */
.features-section { background: white; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  transition: all 0.25s;
}

.feature-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  background: white;
}

.feature-icon {
  font-size: 1.8rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(212,160,23,0.05));
  border-radius: var(--radius-sm);
}

.feature-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-800);
}

.feature-item p {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ─── REGULATORS STRIP ─── */
.regulators-strip {
  background: var(--green-pale);
  border-top: 1px solid rgba(26,107,58,0.15);
  border-bottom: 1px solid rgba(26,107,58,0.15);
  padding: 2rem 1.5rem;
}

.regulators-strip .container {
  text-align: center;
}

.reg-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.reg-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.reg-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.reg-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1.5px solid rgba(26,107,58,0.25);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  transition: all 0.2s;
}

.reg-item:hover .reg-badge {
  border-color: var(--green);
  box-shadow: 0 2px 10px rgba(26,107,58,0.15);
}

.reg-badge svg { flex-shrink: 0; }

.reg-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.reg-sub {
  font-size: 0.62rem;
  color: var(--gray-400);
  text-align: center;
}

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--gray-100); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; }

.review-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.reviewer-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
}

.reviewer-info span {
  font-size: 0.72rem;
  color: var(--gray-400);
}

/* ─── FOOTER ─── */
footer {
  background: #0F2A1A;
  color: rgba(255,255,255,0.85);
}

.footer-main {
  padding: 4rem 1.5rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo-wrap span:first-child { color: var(--gold-light) !important; }
.footer-brand .logo-wrap span:last-child { color: rgba(255,255,255,0.6) !important; }

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin-top: 1rem;
  color: rgba(255,255,255,0.6);
}

.footer-brand .social-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 1rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

.contact-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

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

/* ─── RESPONSIBLE GAMING FOOTER BLOCK ─── */
.rg-block {
  background: rgba(212,160,23,0.08);
  border-top: 1px solid rgba(212,160,23,0.2);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  padding: 1.5rem;
}

.rg-block .container {
  max-width: 1200px;
  margin: 0 auto;
}

.rg-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.rg-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.rg-text {
  flex: 1;
  min-width: 200px;
}

.rg-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.rg-text p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.rg-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.rg-links a {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.rg-links a:hover {
  background: rgba(212,160,23,0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ─── FOOTER BOTTOM ─── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.age-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ─── INNER PAGE STYLES ─── */
.page-hero {
  background: linear-gradient(135deg, #FFFEF0, #FFF8E1);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.page-hero p { color: var(--gray-600); font-size: 0.95rem; }

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.content-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
}

.content-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-card p, .content-card li {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.content-card ul { padding-left: 1.5rem; }

/* ─── MOBILE NAV DRAWER ─── */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.nav-drawer.open { pointer-events: all; }

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-drawer.open .drawer-overlay { opacity: 1; }

.drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: 260px;
  height: 100%;
  background: white;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.nav-drawer.open .drawer-panel { transform: translateX(0); }

.drawer-panel .close-btn {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-600);
}

.drawer-panel nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2.5rem;
}

.drawer-panel nav a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
}

.drawer-panel nav a:hover {
  background: var(--green-pale);
  color: var(--green);
}

.drawer-18 {
  display: inline-block;
  margin-top: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 3.5rem 1rem 3rem; }
  .hero-stats { gap: 2rem; }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }

  section { padding: 3rem 1rem; }

  .rg-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .age-gate-btns { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── UTILS ─── */
.text-gold { color: var(--gold-dark); }
.text-green { color: var(--green); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.fw-bold { font-weight: 700; }
