/* ============================================
   Lagos Jackpot - Main Stylesheet
   Premium Casino Aggregator for Nigeria
   ============================================ */

:root {
  --primary: #1a5c3a;
  --primary-light: #2a7d52;
  --primary-dark: #0d3d26;
  --gold: #c9a227;
  --gold-light: #f0c040;
  --gold-bright: #ffd700;
  --neon-gold: #ffe135;
  --neon-green: #39ff14;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #f0f2f5;
  --mid-gray: #e2e8f0;
  --text-dark: #1a2332;
  --text-mid: #4a5568;
  --text-light: #718096;
  --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(201,162,39,0.3);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.85; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== AGE WARNING BANNER (TOP) ===== */
.age-warning-bar {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--gold-light);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.age-warning-bar .badge-18 {
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* ===== HEADER / NAVBAR ===== */
.site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 2px solid var(--mid-gray);
}

.navbar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  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 img {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: var(--light-gray);
  color: var(--primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,162,39,0.4) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #e8f5ee 0%, #f0f8f4 40%, #fffef0 100%);
  overflow: hidden;
  padding: 80px 24px 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,92,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(201,162,39,0.5);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-number .neon {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201,162,39,0.4);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(26,92,58,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,92,58,0.4); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,0.45); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }

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

/* ===== SECTION STYLES ===== */
section { padding: 80px 24px; }

.section-inner { max-width: 1280px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(26,92,58,0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.section-header h2 .accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto 0;
  box-shadow: 0 0 8px rgba(201,162,39,0.4);
}

/* ===== CASINO CARDS ===== */
.casino-list { display: flex; flex-direction: column; gap: 24px; }

.casino-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mid-gray);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,162,39,0.3);
}

.casino-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 4px 24px rgba(201,162,39,0.2);
}

.casino-card-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
}

.casino-badge-wrap {
  position: absolute;
  top: 0;
  left: 0;
}
.casino-rank {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px 4px 8px;
  border-radius: 0 0 12px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.casino-card.featured .casino-rank {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--primary-dark);
}

.casino-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border-radius: 12px;
  padding: 16px;
  height: 100px;
}
.casino-logo-box img {
  max-height: 64px;
  max-width: 140px;
  object-fit: contain;
  border-radius: 4px;
}

.casino-info { flex: 1; }
.casino-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-num {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}
.rating-count {
  color: var(--text-light);
  font-size: 0.8rem;
}
.casino-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.tag {
  background: var(--light-gray);
  color: var(--text-mid);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid var(--mid-gray);
}
.tag.green { background: rgba(26,92,58,0.08); color: var(--primary); border-color: rgba(26,92,58,0.15); }
.tag.gold { background: rgba(201,162,39,0.1); color: #a07c10; border-color: rgba(201,162,39,0.25); }

.casino-bonus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(201,162,39,0.12), rgba(240,192,64,0.08));
  border: 1px solid rgba(201,162,39,0.3);
  color: #a07c10;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(201,162,39,0.15);
}
.casino-bonus .bonus-icon { font-size: 1rem; }

.casino-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.neon-glow {
  box-shadow: 0 0 16px rgba(201,162,39,0.4), 0 4px 16px rgba(26,92,58,0.2) !important;
}
.neon-glow:hover {
  box-shadow: 0 0 28px rgba(201,162,39,0.6), 0 8px 24px rgba(26,92,58,0.3) !important;
}

/* ===== HOW IT WORKS ===== */
.hiw-section {
  background: linear-gradient(135deg, #f0f8f4 0%, #fafeff 100%);
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.hiw-card {
  text-align: center;
  padding: 36px 24px;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: var(--transition);
  position: relative;
}
.hiw-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,39,0.3);
}
.hiw-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(26,92,58,0.1), rgba(201,162,39,0.08));
  border: 2px solid rgba(26,92,58,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}
.hiw-step {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(26,92,58,0.3);
}
.hiw-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.hiw-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== WHY US / FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 32px 24px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--off-white); }

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  border: 1px solid var(--mid-gray);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(26,92,58,0.2); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-arrow {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== RESPONSIBLE GAMING WIDGET ===== */
.rg-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 56px 24px;
  text-align: center;
}
.rg-banner-inner { max-width: 760px; margin: 0 auto; }
.rg-icon { font-size: 3rem; margin-bottom: 16px; }
.rg-banner h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.rg-banner p { opacity: 0.85; font-size: 1rem; margin-bottom: 24px; line-height: 1.6; }
.rg-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.rg-link {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.rg-link:hover { background: rgba(255,255,255,0.25); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 64px 24px 0;
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 52px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  padding: 6px 10px;
  box-sizing: content-box;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; opacity: 0.7; }

.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--gold-light); }

/* Regulators in footer */
.regulator-logos {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.reg-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  transition: var(--transition);
}
.reg-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,162,39,0.3); }
.reg-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
  padding: 3px;
}
.reg-info { flex: 1; }
.reg-name {
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}
.reg-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
}

/* Footer disclaimer */
.footer-disclaimer {
  max-width: 1280px;
  margin: 32px auto 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* 18+ Disclaimer Block */
.disclaimer-block-18 {
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 24px 0;
}
.disclaimer-18-badge {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.disclaimer-18-text h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.disclaimer-18-text p {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.78rem !important;
  margin: 0 !important;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ===== AGE GATE MODAL ===== */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,25,15,0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate-box {
  background: white;
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,162,39,0.2);
  animation: slideUp 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.age-gate-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(201,162,39,0.35);
}
.age-gate-box h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.age-gate-box p {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 32px;
  line-height: 1.6;
}
.age-gate-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.age-gate-yes {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(26,92,58,0.3);
  transition: var(--transition);
}
.age-gate-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,92,58,0.4); }
.age-gate-no {
  background: transparent;
  color: var(--text-mid);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  border: 2px solid var(--mid-gray);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.age-gate-no:hover { border-color: var(--text-mid); color: var(--text-dark); }
.age-gate-note {
  margin-top: 20px;
  font-size: 0.75rem !important;
  color: var(--text-light) !important;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  padding: 20px 24px;
  z-index: 8000;
  display: none;
}
.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.cookie-text strong { color: var(--text-dark); }
.cookie-text a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-accept {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-accept:hover { background: var(--primary-light); }
.cookie-decline {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--mid-gray);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

/* ===== INNER PAGES ===== */
.page-hero {
  background: linear-gradient(135deg, #e8f5ee 0%, #f0f8f4 60%, #fffef0 100%);
  padding: 60px 24px;
  text-align: center;
}
.page-hero-inner { max-width: 780px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.page-hero h1 .gold-text {
  color: var(--gold);
}
.page-hero p {
  color: var(--text-mid);
  font-size: 1rem;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}
.page-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 36px 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--mid-gray);
}
.page-content h2:first-child { border-top: none; margin-top: 0; }
.page-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin: 20px 0 8px; }
.page-content p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.8; margin-bottom: 12px; }
.page-content ul { padding-left: 20px; margin-bottom: 12px; }
.page-content ul li { color: var(--text-mid); font-size: 0.92rem; line-height: 1.8; list-style: disc; }
.page-content a { color: var(--primary); text-decoration: underline; }
.page-content table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 0.88rem; }
.page-content th { background: var(--light-gray); color: var(--text-dark); font-weight: 700; padding: 10px 14px; text-align: left; }
.page-content td { border-bottom: 1px solid var(--mid-gray); padding: 10px 14px; color: var(--text-mid); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
}
.contact-info h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,92,58,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.contact-value { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; }
.contact-value a { color: var(--primary); }

.contact-form-box {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mid-gray);
}
.contact-form-box h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--mid-gray);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(26,92,58,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== ABOUT PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.team-card {
  text-align: center;
  padding: 28px 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
}
.team-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 14px;
}
.team-name { font-weight: 700; font-size: 1rem; color: var(--primary-dark); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--text-light); }

/* ===== RESPONSIBLE GAMING PAGE ===== */
.rg-section-block {
  background: white;
  border-radius: var(--border-radius);
  padding: 28px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}
.rg-section-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rg-section-block p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}
.helpline-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.helpline-card {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 18px;
  border: 1px solid var(--mid-gray);
}
.helpline-name { font-weight: 700; font-size: 0.9rem; color: var(--primary-dark); margin-bottom: 4px; }
.helpline-phone { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 2px; }
.helpline-desc { font-size: 0.78rem; color: var(--text-light); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .casino-card-inner {
    grid-template-columns: 140px 1fr;
  }
  .casino-action { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; }
}

@media (max-width: 768px) {
  section { padding: 56px 16px; }
  .navbar { padding: 12px 16px; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--mid-gray);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 10px 16px; width: 100%; }
  .nav-hamburger { display: flex; }
  .hero { padding: 56px 16px 72px; }
  .hero-stats { gap: 24px; }
  .casino-card-inner {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .casino-logo-box { height: 80px; }
  .casino-action { flex-direction: row; flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .age-gate-box { padding: 36px 24px; }
  .hiw-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hiw-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .age-gate-buttons { flex-direction: column; }
  .age-gate-yes, .age-gate-no { width: 100%; }
}
