/* ============================================================
   NigeriaFunClub — Main Stylesheet
   Fonts: Playfair Display, Poppins, Cinzel
   ============================================================ */

:root {
  --gold: #FFD700;
  --gold-light: #FFE566;
  --gold-dark: #FF8C00;
  --purple-deep: #0d0520;
  --purple-dark: #1a0a2e;
  --purple-mid: #2D1B69;
  --purple-light: #4a2c8a;
  --green-ng: #008751;
  --green-light: #00E676;
  --green-mid: #00C853;
  --white: #ffffff;
  --text-light: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.55);
  --card-bg: rgba(45, 27, 105, 0.6);
  --border-gold: rgba(255, 215, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.2);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cinzel', 'Georgia', serif;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Poppins', 'Arial', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--purple-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--purple-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   AGE GATE OVERLAY
   ============================================================ */
.age-gate-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5, 2, 15, 0.97);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.age-gate-box {
  background: linear-gradient(145deg, #2D1B69, #1a0a2e);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(255,215,0,0.3), 0 30px 80px rgba(0,0,0,0.8);
  animation: ageGateIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes ageGateIn {
  from { opacity: 0; transform: scale(0.7) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.age-gate-logo { margin-bottom: 16px; }
.age-gate-logo img,
.age-gate-logo span[aria-label] {
  filter: drop-shadow(0 0 20px rgba(255,215,0,0.6));
  border-radius: 50%;
  animation: logoPulse 3s ease-in-out infinite;
  display: inline-flex !important;
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(255,215,0,0.4)); }
  50% { filter: drop-shadow(0 0 28px rgba(255,215,0,0.8)); }
}
.age-gate-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.age-gate-title .brand-name { color: var(--gold); }
.age-gate-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.age-gate-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 200, 83, 0.15);
  border: 1px solid var(--green-light);
  color: var(--green-light);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  margin-bottom: 20px;
}
.age-gate-question {
  font-size: 1.1rem; font-weight: 600;
  color: var(--text-light); margin-bottom: 24px;
}
.age-gate-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
.btn-age-yes, .btn-age-no {
  padding: 14px 28px;
  border: none; border-radius: 50px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
  flex: 1; justify-content: center; min-width: 140px;
}
.btn-age-yes {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a2e;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,215,0,0.6); }
.btn-age-no {
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-age-no:hover { background: rgba(255,100,100,0.15); border-color: #ff6b6b; color: #ff6b6b; }
.age-gate-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.age-gate-note a { color: var(--gold); text-decoration: none; }
.age-gate-disclaimer {
  font-size: 0.76rem; color: #00E676;
  background: rgba(0,200,83,0.1); border-radius: 8px;
  padding: 8px 12px; font-weight: 500;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 5, 30, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(255,215,0,0.1);
}
.navbar { padding: 0; }
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center;
  height: 70px; gap: 20px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  transition: var(--transition);
  filter: drop-shadow(0 0 8px rgba(255,215,0,0.4));
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-brand:hover .nav-logo-img { transform: rotate(10deg) scale(1.1); filter: drop-shadow(0 0 14px rgba(255,215,0,0.7)); }
.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.5px;
}
.brand-accent { color: var(--gold); }
.nav-links {
  display: flex; align-items: center;
  gap: 4px; list-style: none;
  margin-left: auto;
}
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 8px;
  color: var(--text-light); text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(255,215,0,0.08);
}
.nav-link i { font-size: 0.8rem; }
.nav-badge-18 {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a2e;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 900;
  padding: 4px 10px; border-radius: 6px;
  flex-shrink: 0;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: url('../images/hero-bg.svg') center center / cover no-repeat,
              radial-gradient(ellipse at 20% 50%, #2D1B69 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, #1a3a1a 0%, transparent 50%),
              linear-gradient(180deg, #0d0520 0%, #1a0a2e 50%, #0d0520 100%);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px; text-align: center;
}
.hero-badge-top {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold); padding: 8px 20px;
  border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}
.hero-title {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; margin-bottom: 24px;
}
.hero-title-line1 {
  font-family: var(--font-body); font-size: 1.1rem;
  color: var(--text-muted); font-weight: 300;
  animation: fadeInDown 0.8s ease 0.1s both;
}
.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.4));
  animation: fadeInDown 0.8s ease 0.2s both;
}
.hero-title-sub {
  font-family: var(--font-heading); font-size: 1.3rem;
  color: var(--green-light); font-style: italic;
  animation: fadeInDown 0.8s ease 0.3s both;
}
.hero-description {
  color: var(--text-light); font-size: 1rem; line-height: 1.8;
  margin-bottom: 28px; max-width: 580px; margin-left: auto; margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-features {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-feat {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-light);
}
.hero-feat i { color: var(--gold); }
.hero-cta-group {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a2e; font-weight: 700; font-size: 1.05rem;
  padding: 16px 36px; border-radius: 50px;
  text-decoration: none; transition: var(--transition);
  box-shadow: 0 4px 30px rgba(255,215,0,0.4);
  font-family: var(--font-body);
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(255,215,0,0.6);
}
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,215,0,0.4);
  color: var(--gold); font-weight: 600; font-size: 1rem;
  padding: 14px 32px; border-radius: 50px;
  text-decoration: none; transition: var(--transition);
}
.btn-hero-secondary:hover {
  background: rgba(255,215,0,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.hero-disclaimer {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  color: #00E676; padding: 10px 20px; border-radius: 12px;
  font-size: 0.82rem; text-align: left;
  animation: fadeInUp 0.8s ease 0.7s both;
}
.hero-visual { position: absolute; inset: 0; pointer-events: none; }
.hero-coins-float {
  position: absolute; inset: 0;
}
.coin {
  position: absolute; font-size: 2rem;
  animation: floatCoin linear infinite;
  opacity: 0.3;
}
.coin-1 { left: 5%; top: 20%; animation-duration: 8s; animation-delay: 0s; }
.coin-2 { right: 8%; top: 30%; animation-duration: 10s; animation-delay: 2s; }
.coin-3 { left: 12%; bottom: 30%; animation-duration: 9s; animation-delay: 4s; }
.coin-4 { right: 15%; bottom: 20%; animation-duration: 11s; animation-delay: 1s; }
.coin-5 { left: 50%; top: 10%; animation-duration: 12s; animation-delay: 3s; }
@keyframes floatCoin {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-40px) rotate(180deg); opacity: 0.5; }
  100% { transform: translateY(0) rotate(360deg); opacity: 0.3; }
}

/* ============================================================
   SOCIAL NOTICE BAR
   ============================================================ */
.social-notice-bar {
  background: linear-gradient(135deg, #006400, #008751, #006400);
  padding: 12px 24px;
  text-align: center;
}
.notice-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  font-size: 0.88rem; font-weight: 500; color: white;
}
.notice-inner i { color: #00E676; font-size: 1rem; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 60px 0;
  background: rgba(45, 27, 105, 0.25);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center; padding: 28px 16px;
  background: rgba(45, 27, 105, 0.4);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}
.stat-icon {
  font-size: 2rem; color: var(--gold);
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(255,215,0,0.5);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900;
  color: var(--gold); line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem; color: var(--text-muted);
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;
}

/* ============================================================
   GAMES SECTION
   ============================================================ */
.games-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, transparent, rgba(45,27,105,0.15), transparent);
}
.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold); padding: 6px 18px;
  border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 12px; line-height: 1.2;
}
.section-subtitle {
  color: var(--text-muted); font-size: 1rem;
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.game-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(255,215,0,0.2);
}
.game-card-badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  background: linear-gradient(135deg, #FF4D4D, #FF8C00);
  color: white; padding: 5px 12px;
  border-radius: 50px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(255,77,77,0.4);
}
.game-card-preview {
  position: relative; overflow: hidden;
  height: 260px;
  background: linear-gradient(135deg, #1a0a2e, #2D1B69);
}
.game-preview-img {
  width: 100%; height: 100%;
  /* Works both as <img> and as <div> wrapping inline SVG */
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease, filter 0.3s ease;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background: linear-gradient(135deg, #1a0a2e, #2D1B69);
  overflow: hidden;
}
.game-preview-img svg {
  width: 100%;
  height: 100%;
  display: block;
  flex-shrink: 0;
}
.game-card:hover .game-preview-img {
  transform: scale(1.06);
  filter: brightness(1.1) saturate(1.1);
}
.game-card-overlay {
  position: absolute; inset: 0;
  background: rgba(5, 2, 15, 0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.game-card:hover .game-card-overlay { opacity: 1; }
.btn-play-now {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a2e; font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border-radius: 50px;
  text-decoration: none; transition: var(--transition);
  transform: scale(0.8);
}
.game-card:hover .btn-play-now { transform: scale(1); }
.game-card-info { padding: 24px; }
.game-card-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.game-tag {
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
}
.game-tag.free {
  background: rgba(0, 200, 83, 0.1);
  border-color: rgba(0,200,83,0.3);
  color: var(--green-light);
}
.game-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.game-card-desc {
  color: var(--text-muted); font-size: 0.88rem;
  line-height: 1.7; margin-bottom: 16px;
}
.game-card-meta {
  display: flex; gap: 16px; margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.game-rtp, .game-type {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--text-muted);
}
.game-rtp i, .game-type i { color: var(--gold); }
.game-card-footer {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.game-18-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold); padding: 5px 12px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}
.btn-play-card {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
  border: 1px solid var(--gold);
  color: var(--gold); font-weight: 600; font-size: 0.88rem;
  padding: 10px 20px; border-radius: 50px;
  text-decoration: none; transition: var(--transition);
}
.btn-play-card:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a2e; border-color: transparent;
  transform: scale(1.04);
}
.games-notice-box {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(0,135,81,0.12);
  border: 1px solid rgba(0,135,81,0.4);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.notice-icon { font-size: 1.5rem; color: var(--green-light); flex-shrink: 0; margin-top: 2px; }
.notice-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.notice-text strong { color: var(--green-light); }

/* ============================================================
   WHY US
   ============================================================ */
.why-section {
  padding: 100px 0;
  background: rgba(5, 2, 15, 0.5);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(45, 27, 105, 0.35);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(45, 27, 105, 0.55);
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #1a0a2e;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.why-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ============================================================
   RESPONSIBLE PLAY HIGHLIGHT
   ============================================================ */
.resp-highlight-section { padding: 80px 0; }
.resp-highlight-box {
  background: linear-gradient(135deg, rgba(0,135,81,0.15), rgba(45,27,105,0.4));
  border: 1px solid rgba(0,135,81,0.4);
  border-radius: 24px; padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.resp-left { display: flex; gap: 24px; align-items: flex-start; }
.resp-icon-big {
  font-size: 3rem; color: var(--green-light);
  flex-shrink: 0; margin-top: 4px;
  text-shadow: 0 0 20px rgba(0,230,118,0.5);
}
.resp-left h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.resp-left p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; }
.resp-list { list-style: none; margin-bottom: 24px; }
.resp-list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-light); font-size: 0.9rem;
  padding: 4px 0;
}
.resp-list li i { color: var(--green-light); }
.btn-resp {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green-ng), var(--green-mid));
  color: white; font-weight: 600; font-size: 0.92rem;
  padding: 12px 28px; border-radius: 50px;
  text-decoration: none; transition: var(--transition);
}
.btn-resp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,135,81,0.4); }
.resp-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.resp-stat {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(0,135,81,0.3);
  border-radius: var(--radius-md);
  padding: 24px; text-align: center;
}
.resp-stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: var(--green-light); margin-bottom: 6px;
}
.resp-stat-label { color: var(--text-muted); font-size: 0.8rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #050210; }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  filter: drop-shadow(0 0 10px rgba(255,215,0,0.35));
  border-radius: 50%;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700; color: var(--gold);
}
.footer-brand-desc {
  color: var(--text-muted); font-size: 0.85rem;
  line-height: 1.7; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; margin-bottom: 20px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); text-decoration: none; font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: #1a0a2e; }
.footer-18-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 8px; padding: 8px 16px;
}
.footer-18-badge span {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 900; color: var(--gold);
}
.footer-18-badge small { color: var(--text-muted); font-size: 0.75rem; }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.footer-col-title i { color: var(--gold); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-muted); text-decoration: none;
  font-size: 0.87rem; transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-links a i { color: var(--gold); font-size: 0.7rem; }
.footer-free-badge {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,200,83,0.1);
  border: 1px solid rgba(0,200,83,0.3);
  color: var(--green-light); padding: 6px 12px;
  border-radius: 8px; font-size: 0.78rem; font-weight: 600;
}
.footer-contact-list { list-style: none; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; font-size: 0.87rem; color: var(--text-muted);
}
.footer-contact-list li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: var(--gold); text-decoration: none; }
.footer-contact-list a:hover { text-decoration: underline; }
.btn-footer-contact {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
  border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
  padding: 10px 20px; border-radius: 50px;
  text-decoration: none; transition: var(--transition);
  margin-top: 8px;
}
.btn-footer-contact:hover { background: rgba(255,215,0,0.1); }

/* Footer Responsible Banner */
.footer-resp-banner {
  background: rgba(0,135,81,0.15);
  border-top: 1px solid rgba(0,135,81,0.3);
  border-bottom: 1px solid rgba(0,135,81,0.3);
  padding: 18px 0;
}
.resp-banner-inner {
  display: flex; align-items: flex-start; gap: 16px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.resp-banner-icon { font-size: 1.4rem; color: var(--green-light); flex-shrink: 0; margin-top: 2px; }
.resp-banner-text { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }
.resp-banner-text strong { color: var(--green-light); }

/* Footer Regulatory */
.footer-regulatory { padding: 16px 0; background: rgba(45,27,105,0.2); }
.regulatory-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.regulatory-logos {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; align-items: center;
}
.reg-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,215,0,0.07);
  border: 1px solid rgba(255,215,0,0.2);
  color: var(--text-muted); padding: 6px 14px;
  border-radius: 50px; font-size: 0.76rem;
}
.reg-badge i { color: var(--gold); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 12px; margin-bottom: 12px;
}
.footer-copyright {
  color: var(--text-muted); font-size: 0.82rem;
}
.footer-copyright strong { color: var(--text-light); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.82rem; transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }
.footer-legal-notice {
  color: rgba(255,255,255,0.35); font-size: 0.76rem;
  line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 12px;
}
.footer-legal-notice a { color: rgba(255,215,0,0.5); }

/* ============================================================
   SHARED PAGE STYLES
   ============================================================ */
.page-hero {
  padding: 120px 24px 60px;
  background: radial-gradient(ellipse at 30% 50%, rgba(45,27,105,0.6) 0%, transparent 60%),
              linear-gradient(180deg, #0d0520, #1a0a2e);
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700; color: var(--gold);
  margin-bottom: 12px;
}
.page-hero-sub { color: var(--text-muted); font-size: 1rem; }
.page-content {
  max-width: 900px; margin: 0 auto;
  padding: 60px 24px 80px;
}
.content-section { margin-bottom: 48px; }
.content-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem; color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-gold);
}
.content-section p, .content-section li {
  color: var(--text-light); font-size: 0.93rem;
  line-height: 1.8; margin-bottom: 8px;
}
.content-section ul { padding-left: 24px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(255,215,0,0.3); }
  50% { box-shadow: 0 0 30px rgba(255,215,0,0.6); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .resp-highlight-box { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(10,5,30,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    flex-direction: column; padding: 16px;
    gap: 4px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-toggle { display: flex; }
  .hero-section { padding: 100px 20px 60px; }
  .hero-title-main { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .resp-highlight-box { padding: 28px; }
  .resp-left { flex-direction: column; }
  .resp-stat-grid { grid-template-columns: 1fr 1fr; }
  .age-gate-box { padding: 32px 24px; }
  .age-gate-buttons { flex-direction: column; }
  .btn-age-yes, .btn-age-no { width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-features { gap: 8px; }
  .hero-feat { font-size: 0.78rem; padding: 6px 12px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.8rem; }
  .regulatory-logos { gap: 8px; }
  .reg-badge { font-size: 0.7rem; padding: 5px 10px; }
}
