/* =====================================================
   NaijaGameWorld – Main Stylesheet
   ===================================================== */

:root {
  --gold: #FFD700;
  --gold-dark: #CC8800;
  --gold-light: #FFF0A0;
  --green: #00C853;
  --green-dark: #006400;
  --purple: #7C3AED;
  --purple-dark: #4C1D95;
  --bg-dark: #0a0414;
  --bg-mid: #130921;
  --bg-card: #1e1035;
  --bg-card2: #160c2e;
  --text-main: #F3E8FF;
  --text-muted: #9C88B8;
  --border: rgba(255,215,0,0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --glow-gold: 0 0 20px rgba(255,215,0,0.4);
  --glow-green: 0 0 20px rgba(0,200,83,0.4);
  --transition: 0.3s 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: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h5, h6, .nav__link, .btn { font-family: 'Rajdhani', sans-serif; }

.gradient-text {
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

a { text-decoration: none; color: var(--gold); transition: var(--transition); }
a:hover { color: var(--gold-light); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #1a0a00;
  border-color: #FFD700;
  box-shadow: 0 4px 20px rgba(255,165,0,0.4);
}
.btn--gold:hover {
  background: linear-gradient(135deg, #FFF0A0, #FFD700);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,165,0,0.6);
  color: #1a0a00;
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: rgba(255,215,0,0.1);
  transform: translateY(-2px);
  color: var(--gold-light);
}
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text-main);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-2px);
}
.btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; margin-top: 1rem; }

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.age-gate.hidden { display: none; }
.age-gate__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #1a0a2e 0%, #000 100%);
}
.age-gate__box {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #1e1035, #130921);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(255,215,0,0.3), var(--shadow);
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes popIn {
  from { opacity:0; transform:scale(0.7); }
  to { opacity:1; transform:scale(1); }
}
.age-gate__logo { display:flex; align-items:center; justify-content:center; gap:0.75rem; margin-bottom:1rem; }
.age-gate__logo-img { width:48px; height:48px; }
.age-gate__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg,#FFD700,#FFA500);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.age-gate__badge {
  display: inline-block;
  background: linear-gradient(135deg,#FFD700,#FF8C00);
  color: #1a0a00;
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  width: 70px; height: 70px;
  border-radius: 50%;
  line-height: 70px;
  margin: 0.5rem auto 1rem;
  box-shadow: var(--glow-gold);
}
.age-gate__title {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.age-gate__subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.age-gate__question {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.age-gate__buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-bottom:1rem; }
.age-gate__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.age-gate__disclaimer a { color: var(--gold); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,4,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(10,4,20,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  flex-shrink: 0;
}
.header__logo-img { width: 36px; height: 36px; }
.header__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}
.header__logo-text .accent {
  background: linear-gradient(135deg,#FFD700,#FFA500);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  padding: 0.4rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  border-radius: 6px;
  transition: var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--gold);
  background: rgba(255,215,0,0.08);
}
.header__actions { display:flex; align-items:center; gap:0.75rem; }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.header__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(ellipse at 30% 60%, #2a0a5e 0%, #0a0414 60%),
              radial-gradient(ellipse at 70% 30%, #1a3a1a 0%, transparent 60%);
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero::before {
  content:'';
  position:absolute;
  inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,215,0,0.15)'/%3E%3C/svg%3E") repeat;
  opacity: 0.4;
}
.hero__bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeSlideDown 0.8s ease both;
}
@keyframes fadeSlideDown {
  from { opacity:0; transform:translateY(-20px); }
  to { opacity:1; transform:translateY(0); }
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: fadeSlideDown 0.9s 0.1s ease both;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  animation: fadeSlideDown 1s 0.2s ease both;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeSlideDown 1s 0.3s ease both;
}
.hero__stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideDown 1s 0.4s ease both;
}
.stat {
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}
.stat__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg,#FFD700,#FFA500);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.stat__lbl {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.25rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50% { transform:translateX(-50%) translateY(8px); }
}

/* ===== SOCIAL NOTICE BAR ===== */
.social-notice {
  background: linear-gradient(135deg, #006400, #004d00);
  border-top: 1px solid #00C853;
  border-bottom: 1px solid #00C853;
  padding: 0.75rem 0;
}
.social-notice__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  color: #fff;
}
.social-notice i { color: var(--gold); font-size: 1.1rem; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__tag {
  display: inline-block;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}
.section__sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== GAMES SECTION ===== */
.games-section { background: var(--bg-mid); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 16px 60px rgba(255,215,0,0.2);
}
.game-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(255,215,0,0.15);
}
.game-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  background: linear-gradient(135deg,#FFD700,#FF8C00);
  color: #1a0a00;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}
.game-card__badge--blue {
  background: linear-gradient(135deg,#7C3AED,#4C1D95);
  color: #fff;
}
.game-card__preview {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg,#1a0a2e,#0d0618);
}
.game-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.game-card:hover .game-card__img { transform: scale(1.05); }
.game-card__preview-fallback {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #2a0a5e, #0a0414);
}
/* Slot mini preview */
.slot-mini-preview {
  display: flex;
  gap: 0.5rem;
}
.smp-reel {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 15px rgba(255,215,0,0.3);
}
.card-mini-preview { display:flex; gap:0.5rem; }
.cmp-card {
  width:60px; height:80px;
  background:#fff;
  color:#222;
  border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display',serif;
  font-size:1.2rem; font-weight:900;
  box-shadow:0 4px 12px rgba(0,0,0,0.5);
}
.cmp-card.red { color:#c0392b; }

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__info { padding: 1.5rem; }
.game-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.game-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.game-card__meta { display:flex; flex-wrap:wrap; gap:0.5rem; margin-bottom:0.5rem; }
.game-tag {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  display: flex; align-items: center; gap: 0.3rem;
}

/* ===== FEATURES ===== */
.features-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--glow-gold);
}
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,140,0,0.1));
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin: 0 auto 1rem;
}
.feature-item h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.feature-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== RESP PROMO ===== */
.resp-promo {
  background: linear-gradient(135deg, #006400, #003d00);
  padding: 2.5rem 0;
  border-top: 1px solid #00C853;
  border-bottom: 1px solid #00C853;
}
.resp-promo__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.resp-promo__icon {
  font-size: 2.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.resp-promo__content { flex: 1; min-width: 200px; }
.resp-promo__content h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #fff;
}
.resp-promo__content p { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ===== FOOTER ===== */
.site-footer {
  background: #070312;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.footer__logo img { width: 32px; height: 32px; }
.footer__brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.footer__badges { display:flex; gap:0.5rem; flex-wrap:wrap; }
.badge-18 {
  background: linear-gradient(135deg,#FFD700,#FF8C00);
  color: #1a0a00;
  font-family: 'Rajdhani',sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.badge-free, .badge-social {
  background: rgba(0,200,83,0.15);
  border: 1px solid rgba(0,200,83,0.3);
  color: var(--green);
  font-family: 'Rajdhani',sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.footer__heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--gold); padding-left: 4px; }
.footer__links a i { font-size: 0.6rem; color: var(--gold); }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
}
.footer__contact i { color: var(--gold); margin-top: 2px; flex-shrink:0; }
.footer__contact a { color: var(--text-muted); }
.footer__contact a:hover { color: var(--gold); }

/* Responsible Block */
.footer__resp-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.footer__resp-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.resp-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,215,0,0.06);
  border: 1px solid rgba(255,215,0,0.2);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.resp-icon--18 {
  background: linear-gradient(135deg,rgba(255,215,0,0.2),rgba(255,140,0,0.15));
  font-size: 0.9rem;
}
.footer__resp-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer__resp-text a { color: var(--gold); }
.footer__resp-text strong { color: #fff; }

/* Compliance */
.footer__compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.compliance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.compliance-item i { color: var(--green); }

/* Footer bottom */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: #5a4a72;
}
.footer__bottom-links {
  display: flex;
  gap: 1rem;
}
.footer__bottom-links a {
  color: #5a4a72;
  font-size: 0.75rem;
  transition: var(--transition);
}
.footer__bottom-links a:hover { color: var(--gold); }

/* ===== PAGE SHARED STYLES ===== */
.page-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at center, #2a0a5e 0%, #0a0414 70%);
  border-bottom: 1px solid var(--border);
}
.page-hero__title { font-size: clamp(2rem,5vw,3rem); margin-bottom: 0.75rem; }
.page-hero__sub { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.content-section h2 {
  font-size: 1.8rem;
  color: var(--gold);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.content-section h3 {
  font-size: 1.2rem;
  color: #fff;
  margin: 1.5rem 0 0.5rem;
}
.content-section p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.content-section ul {
  list-style: none;
  margin-bottom: 1rem;
}
.content-section ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}
.content-section ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.3rem;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.info-card--warning {
  border-color: var(--gold);
  background: rgba(255,215,0,0.04);
}
.info-card--green {
  border-color: var(--green);
  background: rgba(0,200,83,0.04);
}

/* ===== GAMES LIST PAGE ===== */
.games-list-section { padding: 4rem 0; background: var(--bg-mid); min-height: 60vh; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-family: 'Rajdhani',sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.contact-info-text p { font-size: 0.875rem; color: var(--text-muted); }
.contact-info-text a { color: var(--gold); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Rajdhani',sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: 'Poppins',sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
  background: rgba(255,215,0,0.03);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #130921; color: #fff; }
.form-success {
  display: none;
  background: rgba(0,200,83,0.1);
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  margin-top: 1rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .header__nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,4,20,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .header__nav.open { transform: translateY(0); }
  .nav__link { padding: 0.75rem 1rem; font-size: 1.1rem; width: 100%; text-align: center; }
  .header__burger { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1rem; }
  .stat { padding: 0.75rem 1rem; }
  .stat__num { font-size: 1.5rem; }
  .age-gate__box { padding: 2rem 1.25rem; }
  .age-gate__buttons { flex-direction: column; }
  .games-grid { grid-template-columns: 1fr; }
  .resp-promo__inner { flex-direction: column; text-align: center; }
  .footer__compliance { gap: 1rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ===== PARTICLES ===== */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatUp linear infinite;
  opacity: 0;
}
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity:0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1); opacity:0; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(#FFD700, #FF8C00); border-radius: 4px; }
