/* ============================================================
   NaijPlayHub — Main Stylesheet
   Palette: Cream #FFF8EE · Forest Green #0B4D2E · Vivid Gold #F0B429
            Sunset Orange #E8541A · Royal Purple #5C1F8A · Mint #00C48C
   Fonts: Righteous (heads) · Poppins (body) · Space Grotesk (UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Poppins:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --cream:        #FFF8EE;
  --cream-dark:   #F5EDD8;
  --forest:       #0B4D2E;
  --forest-light: #136B3F;
  --gold:         #F0B429;
  --gold-dark:    #C8930A;
  --orange:       #E8541A;
  --orange-light: #FF6B2B;
  --purple:       #5C1F8A;
  --purple-light: #7B3AAD;
  --mint:         #00C48C;
  --white:        #FFFFFF;
  --gray-50:      #FAF9F7;
  --gray-100:     #F0EDE8;
  --gray-200:     #E0D9CF;
  --gray-400:     #A09080;
  --gray-600:     #6B5D50;
  --gray-800:     #2C1F10;
  --red:          #E53935;

  --font-head:    'Righteous', cursive;
  --font-body:    'Poppins', sans-serif;
  --font-ui:      'Space Grotesk', sans-serif;

  --r-xs:   6px;
  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-pill: 999px;

  --sh-sm:  0 2px 10px rgba(11,77,46,.10);
  --sh-md:  0 6px 28px rgba(11,77,46,.14);
  --sh-lg:  0 14px 56px rgba(11,77,46,.18);
  --sh-gold:0 4px 24px rgba(240,180,41,.50);
  --sh-glow:0 0 40px rgba(240,180,41,.60);

  --nav-h:  70px;
  --ease:   0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--gray-800); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* ══════════════════════════════════════════
   AGE GATE
══════════════════════════════════════════ */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at 60% 40%, #1a0a2e 0%, #0b1f12 60%, #000 100%);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
#age-gate.visible {
  display: flex;
}
.gate-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  max-width: 460px; width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  border: 3px solid var(--gold);
  position: relative; overflow: hidden;
}
.gate-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--orange), var(--gold), var(--forest));
}
.gate-logo-img {
  width: 80px; height: 80px; object-fit: contain;
  border-radius: 50%; border: 3px solid var(--gold);
  margin: 0 auto 1rem; background: var(--cream); padding: 6px;
}
.gate-age-ring {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  color: var(--gold); font-family: var(--font-head); font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; border: 3px solid var(--gold);
  box-shadow: var(--sh-gold);
}
.gate-wrap h2 { font-family: var(--font-head); font-size: 1.9rem; color: var(--forest); margin-bottom: .5rem; }
.gate-wrap p  { font-size: .9rem; color: var(--gray-600); margin-bottom: 2rem; line-height: 1.5; }
.gate-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.btn-gate-yes {
  background: linear-gradient(135deg, var(--mint) 0%, #009e70 100%);
  color: var(--white); font-family: var(--font-ui); font-weight: 700;
  padding: .9rem 2rem; border-radius: var(--r-pill); font-size: .95rem;
  box-shadow: 0 4px 18px rgba(0,196,140,.4); transition: var(--ease);
}
.btn-gate-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,196,140,.5); }
.btn-gate-no {
  background: var(--gray-100); color: var(--gray-600);
  font-family: var(--font-ui); font-weight: 600;
  padding: .9rem 2rem; border-radius: var(--r-pill); font-size: .95rem;
  transition: var(--ease);
}
.btn-gate-no:hover { background: var(--gray-200); }
.gate-fine {
  font-size: .72rem; color: var(--gray-400); margin-top: 1.5rem; line-height: 1.4;
}
.gate-fine a { color: var(--forest); text-decoration: underline; }

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8000;
  background: var(--forest); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap; padding: .9rem 2rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
#cookie-banner p { font-size: .85rem; font-family: var(--font-ui); flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--gold); text-decoration: underline; }
.btn-cookie {
  background: var(--gold); color: var(--forest);
  font-family: var(--font-ui); font-weight: 700;
  padding: .55rem 1.5rem; border-radius: var(--r-pill); font-size: .85rem;
  white-space: nowrap; transition: var(--ease);
}
.btn-cookie:hover { background: var(--gold-dark); }
#cookie-banner.hidden { display: none; }

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--sh-sm);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  height: 100%; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.nav-brand img { width: 40px; height: 40px; object-fit: contain; border-radius: 50%; border: 2px solid var(--gold); }
.brand-text { font-family: var(--font-head); font-size: 1.45rem; line-height: 1; }
.brand-text .naij { color: var(--forest); }
.brand-text .play { color: var(--orange); }
.brand-text .hub  { color: var(--gold-dark); }

.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links a {
  font-family: var(--font-ui); font-weight: 500; font-size: .88rem;
  color: var(--gray-600); padding: .45rem .85rem;
  border-radius: var(--r-sm); transition: var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--forest); background: var(--cream-dark); font-weight: 700;
}
.nav-cta-btn {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white) !important; font-weight: 700 !important;
  padding: .5rem 1.3rem !important; border-radius: var(--r-pill) !important;
  box-shadow: 0 2px 12px rgba(232,84,26,.35); margin-left: .5rem;
}
.nav-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232,84,26,.5); background: linear-gradient(135deg, #c8430a, var(--orange)) !important; }

.nav-coins {
  display: flex; align-items: center; gap: .45rem;
  background: var(--cream-dark); border: 2px solid var(--gold);
  border-radius: var(--r-pill); padding: .32rem .9rem;
  font-family: var(--font-ui); font-weight: 700; font-size: .87rem; color: var(--forest);
}
.nav-coins .ci { font-size: 1rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 8px; border-radius: var(--r-sm);
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--forest); border-radius: 4px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 3px solid var(--gold);
  z-index: 999; padding: 1rem; flex-direction: column; gap: .5rem;
  box-shadow: var(--sh-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-ui); font-weight: 600; font-size: .95rem;
  color: var(--forest); padding: .75rem 1rem; border-radius: var(--r-md);
  transition: var(--ease);
}
.mobile-menu a:hover { background: var(--cream-dark); }
.mobile-menu .nav-cta-btn { background: var(--orange) !important; color: var(--white) !important; text-align: center; border-radius: var(--r-pill) !important; }

/* ══════════════════════════════════════════
   DISCLAIMER + NO-MONEY BARS
══════════════════════════════════════════ */
.disc-bar {
  background: linear-gradient(90deg, var(--forest) 0%, var(--purple) 100%);
  color: rgba(255,255,255,.9); text-align: center;
  font-family: var(--font-ui); font-size: .8rem; font-weight: 500;
  padding: .4rem 1rem; letter-spacing: .025em;
}
.disc-bar strong { color: var(--gold); }

.no-money-bar {
  background: linear-gradient(90deg, var(--mint) 0%, #008f65 100%);
  color: var(--white); text-align: center;
  font-family: var(--font-ui); font-weight: 700; font-size: .85rem;
  padding: .55rem 1rem;
}
.no-money-bar a { color: var(--gold); text-decoration: underline; }

/* ══════════════════════════════════════════
   MODALS
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(11,77,46,.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.show { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); border-radius: var(--r-xl);
  padding: 2.5rem 2rem; max-width: 500px; width: 100%;
  box-shadow: var(--sh-lg); border: 3px solid var(--gold);
  position: relative;
  transform: translateY(20px); transition: transform .3s;
}
.modal-overlay.show .modal-box { transform: translateY(0); }
.modal-box h2 { font-family: var(--font-head); font-size: 1.8rem; color: var(--forest); margin-bottom: .4rem; }
.modal-box > p { font-size: .88rem; color: var(--gray-600); margin-bottom: 1.4rem; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gray-100); color: var(--gray-600);
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.modal-close:hover { background: var(--gray-200); }

.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-family: var(--font-ui); font-weight: 600; font-size: .82rem; color: var(--gray-600); margin-bottom: .35rem; }
.form-group input {
  width: 100%; padding: .72rem 1rem;
  border: 2px solid var(--gray-200); border-radius: var(--r-md);
  font-family: var(--font-ui); font-size: .9rem; color: var(--gray-800);
  transition: var(--ease); background: var(--white);
}
.form-group input:focus { outline: none; border-color: var(--forest); }
.form-check { display: flex; align-items: flex-start; gap: .5rem; font-family: var(--font-ui); font-size: .8rem; color: var(--gray-600); }
.form-check input[type=checkbox] { margin-top: 2px; accent-color: var(--forest); }

/* ══════════════════════════════════════════
   BUTTONS (shared)
══════════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--forest); font-family: var(--font-ui); font-weight: 800;
  font-size: .95rem; padding: .88rem 2rem; border-radius: var(--r-pill);
  box-shadow: var(--sh-gold); transition: var(--ease);
  display: inline-flex; align-items: center; gap: .45rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(240,180,41,.6); }

.btn-forest {
  background: linear-gradient(135deg, var(--forest-light) 0%, var(--forest) 100%);
  color: var(--white); font-family: var(--font-ui); font-weight: 700;
  font-size: .95rem; padding: .88rem 2rem; border-radius: var(--r-pill);
  box-shadow: var(--sh-md); transition: var(--ease);
  display: inline-flex; align-items: center; gap: .45rem;
}
.btn-forest:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(11,77,46,.4); }

.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white); font-family: var(--font-ui); font-weight: 700;
  font-size: .95rem; padding: .88rem 2rem; border-radius: var(--r-pill);
  box-shadow: 0 4px 18px rgba(232,84,26,.4); transition: var(--ease);
  display: inline-flex; align-items: center; gap: .45rem;
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,84,26,.5); }

.btn-outline-forest {
  background: transparent; color: var(--forest);
  font-family: var(--font-ui); font-weight: 700;
  font-size: .9rem; padding: .8rem 1.8rem; border-radius: var(--r-pill);
  border: 2px solid var(--forest); transition: var(--ease);
  display: inline-flex; align-items: center; gap: .4rem;
}
.btn-outline-forest:hover { background: var(--forest); color: var(--white); }

.btn-ghost-white {
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  color: var(--white); font-family: var(--font-ui); font-weight: 700;
  font-size: .95rem; padding: .88rem 2rem; border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,.45); transition: var(--ease);
  display: inline-flex; align-items: center; gap: .45rem;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.28); border-color: var(--white); }

.modal-submit { width: 100%; justify-content: center; font-size: 1rem; padding: .95rem; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 90vh;
  background: url('../images/bg-hero.jpg') center/cover no-repeat;
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(11,77,46,.88) 0%, rgba(92,31,138,.65) 55%, rgba(240,180,41,.18) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  padding: 4rem 2rem; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(240,180,41,.4);
  color: var(--gold); font-family: var(--font-ui); font-weight: 600; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: var(--r-pill); margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white); line-height: 1.12; margin-bottom: 1.1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero h1 .hl { color: var(--gold); text-shadow: var(--sh-glow); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.82); margin-bottom: 2rem; line-height: 1.7; max-width: 520px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.hero-badge {
  background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white); font-family: var(--font-ui); font-size: .78rem; font-weight: 600;
  padding: .32rem .8rem; border-radius: var(--r-pill);
}
.hero-badge.age { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.hero-badge.ng  { background: rgba(11,77,46,.6); border-color: rgba(0,196,140,.4); }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; }

/* Hero side card */
.hero-side { display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(20px);
  border: 2px solid rgba(240,180,41,.35); border-radius: var(--r-xl);
  padding: 2rem 1.75rem; width: 100%; text-align: center;
}
.hcard-title { font-family: var(--font-head); font-size: 1.2rem; color: var(--gold); margin-bottom: 1.4rem; }
.mini-reels-row { display: flex; gap: 8px; justify-content: center; margin-bottom: 1.4rem; }
.mini-reel {
  width: 74px; height: 74px; border-radius: var(--r-md);
  background: rgba(11,77,46,.7); border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  box-shadow: 0 0 22px rgba(240,180,41,.4);
  animation: reelGlow 2.2s ease-in-out infinite;
}
.mini-reel:nth-child(2) { animation-delay: .35s; }
.mini-reel:nth-child(3) { animation-delay: .7s; }
@keyframes reelGlow {
  0%,100% { box-shadow: 0 0 22px rgba(240,180,41,.4); transform: scale(1); }
  50%      { box-shadow: 0 0 38px rgba(240,180,41,.75); transform: scale(1.06); }
}
.hcard-balance {
  background: rgba(255,255,255,.14); border-radius: var(--r-pill);
  padding: .65rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-ui); font-size: .88rem;
}
.hcard-balance .lbl { color: rgba(255,255,255,.65); font-weight: 500; }
.hcard-balance .val { color: var(--gold); font-weight: 800; font-size: 1.1rem; }

/* ══════════════════════════════════════════
   SECTIONS (shared)
══════════════════════════════════════════ */
.section { padding: 5.5rem 1.5rem; }
.section-alt  { background: var(--gray-50); }
.section-dark { background: var(--forest); color: var(--white); }
.section-purple { background: linear-gradient(135deg, var(--purple) 0%, #3a0f5c 100%); color: var(--white); }

.sec-inner { max-width: 1320px; margin: 0 auto; }
.sec-hd { text-align: center; margin-bottom: 3.5rem; }
.sec-tag {
  display: inline-block;
  background: rgba(240,180,41,.12); color: var(--gold-dark);
  font-family: var(--font-ui); font-weight: 700; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem .95rem; border-radius: var(--r-pill);
  border: 1px solid rgba(240,180,41,.3); margin-bottom: .85rem;
}
.section-dark .sec-tag, .section-purple .sec-tag {
  background: rgba(240,180,41,.18); color: var(--gold);
  border-color: rgba(240,180,41,.4);
}
.sec-hd h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  color: var(--forest); margin-bottom: .6rem; line-height: 1.2;
}
.section-dark .sec-hd h2, .section-purple .sec-hd h2 { color: var(--gold); }
.sec-hd p { font-size: .98rem; color: var(--gray-600); max-width: 540px; margin: 0 auto; }
.section-dark .sec-hd p, .section-purple .sec-hd p { color: rgba(255,255,255,.72); }

/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.stat-tile {
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(240,180,41,.22);
  border-radius: var(--r-lg); padding: 1.8rem 1.25rem; text-align: center;
}
.stat-tile .num { font-family: var(--font-head); font-size: 2.8rem; color: var(--gold); line-height: 1; margin-bottom: .3rem; }
.stat-tile .lbl { font-family: var(--font-ui); font-size: .82rem; color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════
   GAME CARDS
══════════════════════════════════════════ */
.games-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 2.2rem;
}
.game-card {
  background: var(--white); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-md);
  border: 2px solid var(--gray-200); transition: var(--ease);
  position: relative;
}
.game-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: var(--gold); }
.game-card-img { width: 100%; height: 215px; object-fit: cover; display: block; }
.game-card-ribbon {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-ui); font-weight: 700; font-size: .72rem;
  padding: .28rem .75rem; border-radius: var(--r-pill);
  letter-spacing: .06em; text-transform: uppercase;
}
.game-card-body { padding: 1.5rem; }
.game-card-body h3 { font-family: var(--font-head); font-size: 1.35rem; color: var(--forest); margin-bottom: .35rem; }
.game-card-body p { font-size: .87rem; color: var(--gray-600); margin-bottom: 1.1rem; line-height: 1.55; }
.game-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.15rem; }
.game-tag {
  background: var(--cream-dark); color: var(--forest);
  font-family: var(--font-ui); font-weight: 600; font-size: .74rem;
  padding: .26rem .72rem; border-radius: var(--r-pill);
  border: 1px solid var(--gray-200);
}

/* ══════════════════════════════════════════
   FEATURE / HOW-IT-WORKS
══════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem; }
.feat-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 2rem 1.5rem; text-align: center;
  box-shadow: var(--sh-sm); border: 2px solid var(--gray-200); transition: var(--ease);
}
.feat-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--sh-md); }
.feat-icon {
  width: 66px; height: 66px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1.2rem;
  box-shadow: 0 4px 18px rgba(240,180,41,.3);
}
.section-dark .feat-card, .section-purple .feat-card {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12);
}
.section-dark .feat-card:hover, .section-purple .feat-card:hover { border-color: var(--gold); }
.feat-card h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--forest); margin-bottom: .45rem; }
.section-dark .feat-card h3, .section-purple .feat-card h3 { color: var(--white); }
.feat-card p { font-size: .86rem; color: var(--gray-600); line-height: 1.55; }
.section-dark .feat-card p, .section-purple .feat-card p { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════
   LEADERBOARD
══════════════════════════════════════════ */
.lb-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); }
.lb-table thead { background: var(--forest); color: var(--gold); font-family: var(--font-ui); font-weight: 700; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; }
.lb-table th, .lb-table td { padding: .95rem 1.2rem; text-align: left; }
.lb-table tbody tr { border-bottom: 1px solid var(--gray-200); font-family: var(--font-ui); font-size: .88rem; transition: var(--ease); }
.lb-table tbody tr:hover { background: var(--cream); }
.lb-table .r1 td:first-child { color: var(--gold); font-weight: 800; font-size: 1.05rem; }
.lb-table .r2 td:first-child { color: var(--gray-400); font-weight: 700; }
.lb-table .r3 td:first-child { color: var(--orange); font-weight: 700; }

/* ══════════════════════════════════════════
   SLOT MACHINE (game pages)
══════════════════════════════════════════ */
.slot-page {
  min-height: 100vh;
  background: linear-gradient(155deg, #0d1f12 0%, #1c0a30 50%, #0a200f 100%);
  padding-top: var(--nav-h);
}
.slot-page .disc-bar { background: rgba(0,0,0,.45); }

.slot-arena { max-width: 920px; margin: 0 auto; padding: 2rem 1rem 3rem; }
.slot-title { text-align: center; margin-bottom: 2rem; }
.slot-title h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  color: var(--gold); text-shadow: 0 0 32px rgba(240,180,41,.7);
  margin-bottom: .4rem;
}
.slot-title p { color: rgba(255,255,255,.6); font-family: var(--font-ui); font-size: .9rem; }

/* Machine body */
.machine-body {
  background: linear-gradient(180deg, #152515 0%, #0c1a0c 100%);
  border-radius: 30px;
  border: 4px solid var(--gold);
  box-shadow: 0 0 70px rgba(240,180,41,.28), 0 0 140px rgba(92,31,138,.18), inset 0 0 50px rgba(0,0,0,.6);
  padding: 2rem 1.6rem;
  position: relative; overflow: hidden;
}
.machine-body::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--orange), var(--mint), var(--gold), var(--forest));
  background-size: 400% 100%;
  animation: topBar 3.5s linear infinite;
}
@keyframes topBar { 0%{background-position:0 0} 100%{background-position:400% 0} }

.machine-lights { display: flex; justify-content: space-between; margin-bottom: 1.4rem; }
.m-light {
  width: 15px; height: 15px; border-radius: 50%;
  animation: blink 1.4s infinite;
}
.m-light.gold  { background: var(--gold);   animation-delay: 0s; }
.m-light.green { background: var(--mint);   animation-delay: .35s; }
.m-light.orange{ background: var(--orange); animation-delay: .7s; }
@keyframes blink {
  0%,100%{ opacity:1; box-shadow: 0 0 8px currentColor; }
  50%    { opacity:.25; box-shadow: none; }
}

/* ══ REELS ══════════════════════════════════════════════ */
/* .reels-container used in HTML; .reels-wrap legacy alias */
.reels-container,
.reels-wrap {
  display: flex; gap: 10px; justify-content: center;
  background: #050d07;
  border: 3px solid rgba(240,180,41,.45);
  border-radius: var(--r-lg); padding: 14px;
  margin-bottom: 1.6rem;
  box-shadow: inset 0 4px 28px rgba(0,0,0,.85), 0 0 28px rgba(240,180,41,.12);
}

/* Each reel column — strict 3-cell viewport */
.reel-col {
  width: 90px;
  height: 204px;          /* exactly 3 × 68px (60px cell + 8px gap) */
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(240,180,41,.28);
  background: linear-gradient(180deg, #08100a 0%, #101c10 100%);
  position: relative;     /* anchor for absolute strip + win-line overlay */
}

/* Win-line highlight bar — purely decorative overlay, no layout impact */
.reel-win-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 68px;
  transform: translateY(-50%);
  border: 2px solid rgba(240,180,41,.18);
  border-radius: 8px;
  pointer-events: none;
  z-index: 2;             /* sits above strip background, below cells */
}

/* Strip — absolutely positioned so translateY works from true top:0 */
.reel-strip {
  position: absolute;
  top: 0; left: 0;
  width: 90px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  will-change: transform;
  transition: none;
  z-index: 3;             /* above reel-win-line overlay */
}

/* Individual reel cells */
.reel-cell {
  width: 90px;
  height: 60px;           /* strict 60px; gap:8px gives total 68px per cell */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  line-height: 1;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  user-select: none;
  position: relative;
  z-index: 4;             /* above everything inside reel-col */
}

/* Win highlight on matched cells */
.reel-cell.win-cell {
  background: rgba(240,180,41,.22);
  box-shadow: inset 0 0 18px rgba(240,180,41,.45), 0 0 12px rgba(240,180,41,.5);
  animation: cellWin .45s ease-out;
}
@keyframes cellWin {
  0%   { transform: scale(1.18); }
  60%  { transform: scale(.95); }
  100% { transform: scale(1); }
}
.payline-bar {
  position: absolute; top: 50%; left: -4px; right: -4px;
  height: 68px; margin-top: -34px;
  border: 3px solid var(--gold); border-radius: 12px;
  pointer-events: none; z-index: 3;
  box-shadow: 0 0 22px rgba(240,180,41,.55);
}

/* Slot controls */
.slot-ctrl {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 1rem; align-items: center; margin-bottom: 1.4rem;
}
.info-tile {
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(240,180,41,.18);
  border-radius: var(--r-md); padding: .8rem 1rem; text-align: center;
}
.info-tile .i-lbl { font-family: var(--font-ui); font-size: .68rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .15rem; }
.info-tile .i-val { font-family: var(--font-head); font-size: 1.55rem; color: var(--gold); line-height: 1; }

/* SPIN BUTTON */
.btn-spin {
  width: 112px; height: 112px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #ffe97a, var(--gold) 55%, var(--gold-dark));
  color: var(--forest); font-family: var(--font-head); font-size: 1.25rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  box-shadow: 0 0 42px rgba(240,180,41,.7), 0 6px 0 var(--gold-dark), inset 0 2px 4px rgba(255,255,255,.45);
  transition: var(--ease); user-select: none; position: relative;
}
.btn-spin .s-icon { font-size: 1.75rem; }
.btn-spin:hover:not(:disabled) { transform: scale(1.07); box-shadow: 0 0 65px rgba(240,180,41,.9), 0 6px 0 var(--gold-dark); }
.btn-spin:active:not(:disabled) { transform: scale(.97) translateY(3px); box-shadow: 0 0 28px rgba(240,180,41,.6), 0 2px 0 var(--gold-dark); }
.btn-spin:disabled { opacity: .6; cursor: not-allowed; animation: spinPulse .75s ease-in-out infinite; }
@keyframes spinPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }

/* Bet row */
.bet-row {
  display: flex; align-items: center; justify-content: center;
  gap: .9rem; margin-bottom: 1rem; flex-wrap: wrap;
}
.bet-row label { font-family: var(--font-ui); font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 600; }
.bet-btns { display: flex; gap: .45rem; }
.btn-bet {
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.65);
  font-family: var(--font-ui); font-weight: 700; font-size: .82rem;
  padding: .42rem .88rem; border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,.12); transition: var(--ease);
}
.btn-bet.active, .btn-bet:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.btn-max {
  background: var(--orange); color: var(--white);
  font-family: var(--font-ui); font-weight: 700; font-size: .82rem;
  padding: .42rem 1.05rem; border-radius: var(--r-pill); transition: var(--ease);
}
.btn-max:hover { background: var(--orange-light); }

/* Paytable */
.paytable {
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(240,180,41,.18);
  border-radius: var(--r-lg); padding: 1.2rem; margin-top: 1rem;
}
.pt-hd { font-family: var(--font-head); font-size: .95rem; color: var(--gold); text-align: center; margin-bottom: .7rem; }
.pt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(115px, 1fr)); gap: .45rem; }
.pt-row { display: flex; align-items: center; gap: .45rem; font-family: var(--font-ui); font-size: .78rem; color: rgba(255,255,255,.7); }
.pt-sym { font-size: 1.2rem; }
.pt-mul { color: var(--gold); font-weight: 700; }

/* Win overlay */
.win-overlay {
  position: absolute; inset: 0; border-radius: 26px;
  background: rgba(5,20,8,.9); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem; z-index: 100;
}
.win-overlay.show { display: flex; }
.win-emoji { font-size: 4rem; animation: wBounce .55s ease-in-out infinite alternate; }
@keyframes wBounce { from{transform:scale(1)} to{transform:scale(1.2)} }
.win-text { font-family: var(--font-head); font-size: 2.1rem; color: var(--gold); text-shadow: 0 0 32px rgba(240,180,41,.8); animation: wPulse .9s ease-in-out infinite; }
@keyframes wPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.07)} }
.win-amount { font-family: var(--font-head); font-size: 1.45rem; color: var(--mint); }
.btn-win-close {
  background: var(--gold); color: var(--forest);
  font-family: var(--font-ui); font-weight: 800;
  padding: .7rem 2rem; border-radius: var(--r-pill);
  margin-top: .5rem; transition: var(--ease);
}
.btn-win-close:hover { background: var(--gold-dark); transform: scale(1.04); }

/* Confetti */
#confetti-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 9000; display: none; }
#confetti-canvas.show { display: block; }

/* Refill */
.refill-overlay { display: none; }
.refill-overlay:not([hidden]) {
  display: flex; position: fixed; inset: 0; z-index: 6000;
  background: rgba(11,77,46,.88); backdrop-filter: blur(10px);
  align-items: center; justify-content: center; padding: 1rem;
}
.refill-box {
  background: var(--white); border-radius: var(--r-xl);
  padding: 2.5rem 2rem; max-width: 420px; width: 100%;
  text-align: center; border: 3px solid var(--gold); box-shadow: var(--sh-lg);
}
.refill-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.refill-box h2 { font-family: var(--font-head); font-size: 1.75rem; color: var(--forest); margin-bottom: .5rem; }
.refill-box p { font-size: .88rem; color: var(--gray-600); margin-bottom: 1.5rem; }

/* ══════════════════════════════════════════
   RESPONSIBLE GAMING
══════════════════════════════════════════ */
.rg-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 2rem 1.5rem; border: 2px solid var(--gray-200);
  box-shadow: var(--sh-sm); margin-bottom: 1.5rem;
}
.rg-card h3 { font-family: var(--font-head); font-size: 1.25rem; color: var(--forest); margin-bottom: .7rem; }
.rg-card p, .rg-card li { font-size: .9rem; color: var(--gray-600); line-height: 1.72; }
.rg-card ul { padding-left: 1.25rem; list-style: disc; }
.rg-orgs { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.4rem; }
.rg-org {
  background: var(--cream); border-radius: var(--r-lg);
  padding: 1.5rem; text-align: center; border: 2px solid var(--gray-200);
  transition: var(--ease); text-decoration: none; display: block;
}
.rg-org:hover { border-color: var(--forest); transform: translateY(-3px); }
.rg-org .org-icon { font-size: 2.4rem; margin-bottom: .7rem; }
.rg-org h4 { font-family: var(--font-ui); font-weight: 700; color: var(--forest); font-size: .95rem; margin-bottom: .35rem; }
.rg-org p { font-size: .78rem; color: var(--gray-600); margin-bottom: .4rem; }
.rg-org .org-url { font-size: .74rem; color: var(--forest); font-weight: 700; text-decoration: underline; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#site-footer {
  background: linear-gradient(160deg, var(--forest) 0%, #061a0f 100%);
  color: rgba(255,255,255,.78);
  padding: 4.5rem 1.5rem 2rem;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand img { width: 50px; height: 50px; object-fit: contain; border-radius: 50%; border: 2px solid var(--gold); margin-bottom: .7rem; }
.footer-brand .ft-name { font-family: var(--font-head); font-size: 1.45rem; color: var(--white); margin-bottom: .5rem; }
.footer-brand .ft-name span { color: var(--gold); }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 1rem; }
.ft-social { display: flex; gap: .65rem; }
.ft-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: var(--ease);
}
.ft-social a:hover { background: var(--gold); color: var(--forest); }

.footer-col h4 { font-family: var(--font-ui); font-weight: 700; font-size: .82rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .95rem; }
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.6); transition: var(--ease); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-regs { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1.5rem; }
.footer-regs .regs-label { font-family: var(--font-ui); font-size: .74rem; color: rgba(255,255,255,.45); text-align: center; margin-bottom: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.regs-row { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; }
.reg-badge {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-sm); padding: .45rem .9rem;
  display: flex; align-items: center; gap: .45rem;
  font-family: var(--font-ui); font-size: .75rem; color: rgba(255,255,255,.72); font-weight: 600;
  transition: var(--ease);
}
a.reg-badge { text-decoration: none; cursor: pointer; }
a.reg-badge:hover { background: rgba(240,180,41,.18); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }
.reg-badge .ri { font-size: .95rem; }

.footer-disc { font-size: .74rem; color: rgba(255,255,255,.4); line-height: 1.65; text-align: center; margin-bottom: 1.4rem; }
.footer-disc a { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; color: rgba(255,255,255,.38); }
.age-dot { background: var(--gold); color: var(--forest); font-family: var(--font-head); font-size: .9rem; width: 34px; height: 34px; border-radius: 50%; line-height: 34px; text-align: center; }

/* ══════════════════════════════════════════
   CONTENT PAGES
══════════════════════════════════════════ */
.page-hero { background: linear-gradient(135deg, var(--forest) 0%, #052010 100%); padding: 4.5rem 1.5rem 3.5rem; text-align: center; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--gold); margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.72); font-size: .95rem; }
.content-wrap { max-width: 920px; margin: 0 auto; padding: 4rem 1.5rem; }
.content-wrap h2 { font-family: var(--font-head); font-size: 1.45rem; color: var(--forest); margin: 2rem 0 .7rem; }
.content-wrap h3 { font-family: var(--font-ui); font-weight: 700; font-size: 1rem; color: var(--forest); margin: 1.2rem 0 .45rem; }
.content-wrap p, .content-wrap li { font-size: .9rem; color: var(--gray-600); line-height: 1.75; }
.content-wrap ul { padding-left: 1.4rem; list-style: disc; }
.content-wrap ol { padding-left: 1.4rem; list-style: decimal; }
.content-wrap a { color: var(--forest); text-decoration: underline; }
.info-box { background: var(--cream-dark); border-left: 4px solid var(--gold); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 1rem 1.2rem; margin: 1.4rem 0; }
.info-box p { color: var(--gray-800); font-weight: 600; font-size: .87rem; }

/* Toast */
.toast-container { position: fixed; top: 80px; right: 1rem; z-index: 7000; display: flex; flex-direction: column; gap: .45rem; pointer-events: none; }
.toast { background: var(--forest); color: var(--white); padding: .72rem 1.2rem; border-radius: var(--r-md); font-family: var(--font-ui); font-size: .87rem; font-weight: 600; border-left: 4px solid var(--gold); box-shadow: var(--sh-md); animation: toastIn .3s ease; max-width: 270px; }
.toast.success { border-color: var(--mint); }
.toast.error   { border-color: var(--red); }
@keyframes toastIn { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }

/* Utilities */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
.fade-in { animation: fadeUp .6s ease forwards; }
.fade-in-d { animation: fadeUp .6s .2s ease both; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta, .hero-badges { justify-content: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-side { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-coins { display: none; }
  .hamburger { display: flex; }
  .slot-ctrl { gap: .5rem; }
  .reel-col { width: 72px; }
  .reel-cell { width: 72px; font-size: 1.75rem; }
  .reels-wrap { gap: 6px; padding: 10px; }
  .btn-spin { width: 90px; height: 90px; font-size: 1rem; }
  .btn-spin .s-icon { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-2col { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 3.5rem 1rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .reel-col { width: 62px; }
  .reel-cell { width: 62px; font-size: 1.5rem; }
  .pt-grid { grid-template-columns: 1fr 1fr; }
  .info-tile .i-val { font-size: 1.2rem; }
}

/* ══════════════════════════════════════════
   EXTENDED COMPONENT STYLES
   (Bridge classes for naijplayhub HTML)
══════════════════════════════════════════ */

/* ── Container ── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 1.5rem; }
.bg-cream-dark { background: var(--cream-dark); }

/* ── Site Header / Navbar ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--sh-sm);
}
.navbar {
  max-width: 1320px; margin: 0 auto; height: var(--nav-h);
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.nav-brand img { border-radius: 50%; border: 2px solid var(--gold); }
.brand-name { font-family: var(--font-head); font-size: 1.4rem; color: var(--forest); line-height: 1; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 8px; border-radius: var(--r-sm); cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--forest); border-radius: 4px; transition: var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-menu {
  display: flex; align-items: center; gap: .2rem;
  list-style: none;
}
.nav-menu li {}
.nav-link {
  font-family: var(--font-ui); font-weight: 500; font-size: .88rem;
  color: var(--gray-600); padding: .45rem .85rem;
  border-radius: var(--r-sm); transition: var(--ease); display: block;
}
.nav-link:hover, .nav-link.active { color: var(--forest); background: var(--cream-dark); font-weight: 700; }

/* ── Buttons extended ── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-ui); font-weight: 700;
  border-radius: var(--r-pill); transition: var(--ease);
  border: none; cursor: pointer; text-decoration: none;
  padding: .72rem 1.6rem; font-size: .9rem;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--forest); box-shadow: var(--sh-gold); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240,180,41,.6); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--forest); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-sm  { padding: .42rem 1rem; font-size: .8rem; }
.btn-lg  { padding: .95rem 2.2rem; font-size: 1rem; }
.btn-xl  { padding: 1.1rem 2.6rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-outline {
  background: transparent; border: 2px solid var(--forest); color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-outline-light {
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,.25); }
.btn-outline-sm {
  background: transparent; border: 1.5px solid var(--gray-400); color: var(--gray-600);
  padding: .4rem .9rem; font-size: .82rem; border-radius: var(--r-pill);
  font-family: var(--font-ui); font-weight: 600; transition: var(--ease);
  display: inline-flex; align-items: center; gap: .35rem;
}
.btn-outline-sm:hover { border-color: var(--forest); color: var(--forest); }

/* ── Pills ── */
.pill {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--font-ui); font-size: .76rem; font-weight: 700;
  padding: .32rem .8rem; border-radius: var(--r-pill);
}
.pill-orange { background: rgba(232,84,26,.12); color: var(--orange); border: 1px solid rgba(232,84,26,.25); }
.pill-gold   { background: rgba(240,180,41,.12); color: var(--gold-dark); border: 1px solid rgba(240,180,41,.3); }
.pill-mint   { background: rgba(0,196,140,.12); color: #008f65; border: 1px solid rgba(0,196,140,.25); }
.pill-purple { background: rgba(92,31,138,.1); color: var(--purple); border: 1px solid rgba(92,31,138,.2); }
.pill-forest { background: rgba(11,77,46,.1); color: var(--forest); border: 1px solid rgba(11,77,46,.2); }

/* ── Age Gate extras ── */
.gate-title { font-family: var(--font-head); font-size: 2rem; color: var(--forest); margin: .5rem 0 .3rem; }
.gate-sub   { font-size: .9rem; color: var(--gray-600); margin-bottom: 1rem; }
.gate-badge { background: var(--red); color: var(--white); font-family: var(--font-head); font-size: 1.1rem; padding: .4rem 1.2rem; border-radius: var(--r-pill); display: inline-block; margin: .5rem 0 1rem; }
.gate-text  { font-size: .87rem; color: var(--gray-600); margin-bottom: 1rem; }
.gate-q     { font-family: var(--font-ui); font-weight: 700; font-size: 1.05rem; color: var(--gray-800); margin-bottom: 1.2rem; }
.gate-legal { font-size: .72rem; color: var(--gray-400); margin-top: 1rem; }
.gate-legal a { color: var(--forest); text-decoration: underline; }
.gate-logo  { margin-bottom: .75rem; display: flex; justify-content: center; }

/* ── Cookie banner extras ── */
.cookie-inner { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; width: 100%; }
.cookie-inner p { font-size: .85rem; font-family: var(--font-ui); flex: 1; min-width: 200px; }

/* ── Toast (standalone) ── */
.toast {
  position: fixed; top: 80px; right: 1rem; z-index: 9000;
  background: var(--forest); color: var(--white);
  padding: .72rem 1.4rem; border-radius: var(--r-md);
  font-family: var(--font-ui); font-size: .87rem; font-weight: 600;
  border-left: 4px solid var(--gold); box-shadow: var(--sh-md);
  max-width: 300px; opacity: 0; pointer-events: none;
  transform: translateX(20px); transition: opacity .3s, transform .3s;
}
.toast.show { opacity: 1; pointer-events: auto; transform: translateX(0); }

/* ── Hero section (index.html) ── */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(11,77,46,.88) 0%, rgba(92,31,138,.65) 55%, rgba(240,180,41,.18) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}
.hero-badge-row { display: flex; justify-content: center; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white); line-height: 1.12; margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.text-gold   { color: var(--gold); }
.text-forest { color: var(--forest); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 2.2rem; line-height: 1.7; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-cta-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
.stat-card {
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(240,180,41,.3); border-radius: var(--r-lg);
  padding: 1.1rem 1.8rem; text-align: center; min-width: 120px;
}
.stat-num { font-family: var(--font-head); font-size: 1.8rem; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-family: var(--font-ui); font-size: .76rem; color: rgba(255,255,255,.7); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

/* ── Disc bar (animated) ── */
.disc-bar {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  background: linear-gradient(90deg, var(--forest), var(--purple));
  padding: .7rem 1rem; overflow: hidden;
}
.disc {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; border: 2px solid rgba(255,255,255,.2);
  animation: discBounce 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes discBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.disc-gold   { background: rgba(240,180,41,.25); }
.disc-orange { background: rgba(232,84,26,.25); }
.disc-forest { background: rgba(11,77,46,.4); }
.disc-purple { background: rgba(92,31,138,.3); }
.disc-mint   { background: rgba(0,196,140,.2); }

/* ── Section head ── */
.section-head { text-align: center; margin-bottom: 3rem; }
.section-tag { font-family: var(--font-ui); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--orange); margin-bottom: .6rem; }
.section-title { font-family: var(--font-head); font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--gray-800); margin-bottom: .8rem; }
.section-sub { font-size: .95rem; color: var(--gray-600); max-width: 560px; margin: 0 auto; }

/* ── Games grid ── */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.game-card {
  background: var(--white); border-radius: var(--r-xl);
  box-shadow: var(--sh-md); overflow: hidden; transition: var(--ease);
  border: 2px solid var(--gray-100);
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.game-card__img-wrap { position: relative; overflow: hidden; height: 220px; }
.game-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.game-card:hover .game-card__img { transform: scale(1.05); }
.game-card__badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--forest);
  font-family: var(--font-ui); font-size: .72rem; font-weight: 800;
  padding: .28rem .8rem; border-radius: var(--r-pill);
}
.badge-purple { background: var(--purple) !important; color: var(--white) !important; }
.game-card__body { padding: 1.5rem; }
.game-card__title { font-family: var(--font-head); font-size: 1.3rem; color: var(--gray-800); margin-bottom: .5rem; }
.game-card__desc { font-size: .87rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1rem; }
.game-card__meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.meta-tag { background: var(--cream-dark); color: var(--gray-600); font-family: var(--font-ui); font-size: .74rem; font-weight: 600; padding: .25rem .65rem; border-radius: var(--r-pill); }
.games-cta { text-align: center; margin-top: 1rem; }

/* ── Features grid ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 1.8rem 1.5rem; text-align: center;
  box-shadow: var(--sh-sm); border: 2px solid var(--gray-100); transition: var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--gold); }
.feature-icon { font-size: 2.4rem; margin-bottom: .9rem; }
.feature-card h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--forest); margin-bottom: .45rem; }
.feature-card p { font-size: .86rem; color: var(--gray-600); line-height: 1.65; }

/* ── Leaderboard preview ── */
.lb-preview-wrap { max-width: 700px; margin: 0 auto; }
.podium {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 1rem; margin-bottom: 2rem;
}
.podium-step {
  background: var(--white); border-radius: var(--r-lg);
  padding: 1.5rem 1.2rem; text-align: center;
  box-shadow: var(--sh-md); border: 2px solid var(--gray-100);
  flex: 0 0 180px; transition: var(--ease);
}
.step-1 { border-color: var(--gold); transform: translateY(-20px); box-shadow: var(--sh-gold); }
.step-2 { border-color: #C0C0C0; }
.step-3 { border-color: #CD7F32; }
.podium-crown { font-size: 2rem; margin-bottom: .5rem; }
.podium-avatar { font-size: 2rem; margin-bottom: .5rem; }
.podium-name { font-family: var(--font-ui); font-weight: 700; font-size: .92rem; color: var(--gray-800); margin-bottom: .3rem; }
.podium-score { font-family: var(--font-head); font-size: 1.1rem; color: var(--forest); }
.podium-platform, .step-1-platform, .step-2-platform, .step-3-platform { font-size: .72rem; color: var(--gray-400); font-family: var(--font-ui); font-weight: 700; margin-top: .4rem; text-transform: uppercase; letter-spacing: .08em; }
.lb-cta { text-align: center; }

/* ── RG Strip ── */
.rg-strip { padding: 3.5rem 1.5rem; }
.bg-forest { background: linear-gradient(135deg, var(--forest), #072815); }
.rg-strip-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  background: rgba(255,255,255,.06); border-radius: var(--r-xl);
  padding: 2rem 2.5rem; border: 1px solid rgba(240,180,41,.25);
}
.rg-strip-icon { font-size: 3.5rem; flex-shrink: 0; }
.rg-strip-text { flex: 1; min-width: 200px; }
.rg-strip-text h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); margin-bottom: .4rem; }
.rg-strip-text p { font-size: .9rem; color: rgba(255,255,255,.78); line-height: 1.65; }
.rg-strip-text a { color: var(--gold); text-decoration: underline; }

/* ── Footer extended ── */
.site-footer {
  background: linear-gradient(160deg, var(--forest) 0%, #061a0f 100%);
  color: rgba(255,255,255,.78); padding: 4.5rem 1.5rem 2rem;
}
.footer-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer-brand {}
.footer-logo-link { display: flex; align-items: center; gap: .65rem; margin-bottom: .8rem; font-family: var(--font-head); font-size: 1.35rem; color: var(--white); }
.footer-logo-link img { border-radius: 50%; border: 2px solid var(--gold); }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-top: .4rem; }
.footer-social { display: flex; gap: .6rem; margin-top: .8rem; }
.social-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: var(--ease); cursor: default;
}
.footer-nav h4 { font-family: var(--font-ui); font-weight: 700; font-size: .82rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .9rem; }
.footer-nav ul li { margin-bottom: .45rem; }
.footer-nav ul li a { font-size: .82rem; color: rgba(255,255,255,.6); transition: var(--ease); }
.footer-nav ul li a:hover { color: var(--white); }
.footer-reg {}
.footer-reg h4 { font-family: var(--font-ui); font-weight: 700; font-size: .82rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .9rem; }
.reg-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .6rem; }
.reg-badge {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-sm); padding: .42rem .8rem;
  display: flex; align-items: center; gap: .4rem;
  font-family: var(--font-ui); font-size: .73rem; color: rgba(255,255,255,.72); font-weight: 600;
  transition: var(--ease); text-decoration: none;
}
a.reg-badge:hover { background: rgba(240,180,41,.18); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }
.reg-icon { font-size: .9rem; }
.reg-label {}
.reg-note { font-size: .74rem; color: rgba(255,255,255,.45); line-height: 1.5; }
.footer-bottom { max-width: 1320px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; }
.footer-disclaimer { font-size: .74rem; color: rgba(255,255,255,.45); line-height: 1.65; margin-bottom: .6rem; }
.footer-disclaimer a { color: var(--gold); }
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.35); }
.footer-copy a { color: var(--gold); }

/* ── Modal extended ── */
.modal-wrap {
  background: var(--white); border-radius: var(--r-xl);
  padding: 2.5rem 2rem; max-width: 500px; width: 100%;
  box-shadow: var(--sh-lg); border: 3px solid var(--gold);
  position: relative;
  transform: translateY(20px); transition: transform .3s;
}
.modal-overlay.show .modal-wrap { transform: translateY(0); }
.modal-head { text-align: center; margin-bottom: 1.5rem; }
.modal-icon { font-size: 2.5rem; margin-bottom: .6rem; }
.modal-head h2 { font-family: var(--font-head); font-size: 1.7rem; color: var(--forest); margin-bottom: .35rem; }
.modal-head p { font-size: .88rem; color: var(--gray-600); }
.modal-form {}
.modal-legal { font-size: .72rem; color: var(--gray-400); text-align: center; margin-top: .8rem; }
.form-group select {
  width: 100%; padding: .72rem 1rem;
  border: 2px solid var(--gray-200); border-radius: var(--r-md);
  font-family: var(--font-ui); font-size: .9rem; color: var(--gray-800);
  transition: var(--ease); background: var(--white);
}
.form-group select:focus { outline: none; border-color: var(--forest); }
.form-group textarea {
  width: 100%; padding: .72rem 1rem;
  border: 2px solid var(--gray-200); border-radius: var(--r-md);
  font-family: var(--font-ui); font-size: .9rem; color: var(--gray-800);
  transition: var(--ease); background: var(--white); resize: vertical;
}
.form-group textarea:focus { outline: none; border-color: var(--forest); }

/* ── Page hero extended ── */
.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, #052010 60%, var(--purple) 100%);
  padding: 5rem 1.5rem 4rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="rgba(240,180,41,0.08)"/></svg>') repeat; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--white); margin-bottom: .6rem; }
.page-hero p { color: rgba(255,255,255,.72); font-size: .95rem; max-width: 540px; margin: 0 auto .9rem; }
.breadcrumb { font-family: var(--font-ui); font-size: .8rem; color: rgba(255,255,255,.45); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 .4rem; }

/* ── Slot Page ── */
.slot-page { background: linear-gradient(160deg, #0f2d1a 0%, #0d1a2a 100%); }
.slot-main { padding: 2rem 1rem 4rem; min-height: 80vh; }
.slot-page-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.slot-page-title-wrap { flex: 1; }
.slot-page-title { font-family: var(--font-head); font-size: clamp(1.6rem, 3.5vw, 2.2rem); color: var(--gold); text-shadow: var(--sh-glow); margin-bottom: .2rem; }
.slot-page-sub { font-family: var(--font-ui); font-size: .8rem; color: rgba(255,255,255,.5); }

/* ── HUD ── */
.slot-hud {
  display: flex; justify-content: space-around; align-items: center;
  background: rgba(0,0,0,.35); border: 2px solid rgba(240,180,41,.25);
  border-radius: var(--r-xl); padding: 1rem 2rem;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.hud-item { text-align: center; }
.hud-item--center { border-left: 1px solid rgba(255,255,255,.1); border-right: 1px solid rgba(255,255,255,.1); padding: 0 2rem; }
.hud-label { font-family: var(--font-ui); font-size: .7rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .1em; display: block; margin-bottom: .2rem; }
.hud-value { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); display: flex; align-items: center; gap: .3rem; }
.hud-value--spins { font-size: 1.8rem; color: var(--mint); }
.hud-unit { font-size: .75rem; color: rgba(255,255,255,.5); font-family: var(--font-ui); font-weight: 600; }

/* ── Machine body ── */
.machine-body {
  background: linear-gradient(160deg, #1a0a2e 0%, #0b1f12 100%);
  border-radius: var(--r-xl); border: 3px solid var(--gold);
  box-shadow: 0 0 60px rgba(240,180,41,.2), var(--sh-lg);
  padding: 1.5rem; max-width: 700px; margin: 0 auto 1.5rem;
  overflow: hidden; position: relative;
}
.machine-body--king { border-color: var(--gold); background: linear-gradient(160deg, #1a0a00 0%, #0d1f0a 100%); }
.machine-body--naija { border-color: var(--purple-light); background: linear-gradient(160deg, #0a001a 0%, #0d1a0a 100%); }
.machine-top-deco {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  font-family: var(--font-head); font-size: .9rem; color: var(--gold);
  margin-bottom: 1rem; padding: .5rem; background: rgba(240,180,41,.08);
  border-radius: var(--r-lg); letter-spacing: .06em; border: 1px solid rgba(240,180,41,.15);
}

/* ── Reels container ── */
/* .reels-container and .reels-wrap styles defined in primary reel block above */
/* reel-win-line, reel-cell.win-cell — defined in first reel block above */

/* ── Slot controls ── */
.slot-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; padding: .5rem 0; flex-wrap: wrap;
}
.last-win-display {
  font-family: var(--font-ui); font-size: .8rem; color: rgba(255,255,255,.5);
  background: rgba(0,0,0,.3); padding: .4rem .9rem; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.1);
}
.last-win-display span { color: var(--gold); font-weight: 700; }
.spin-btn {
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  font-family: var(--font-head); font-size: 1rem; color: var(--forest);
  background: radial-gradient(circle at 38% 32%, #ffe97a, var(--gold) 55%, var(--gold-dark));
  box-shadow: 0 0 42px rgba(240,180,41,.7), 0 6px 0 var(--gold-dark), inset 0 2px 4px rgba(255,255,255,.45);
  transition: var(--ease); border: none; cursor: pointer;
}
.spin-btn:hover:not(:disabled) { transform: scale(1.07); box-shadow: 0 0 65px rgba(240,180,41,.9), 0 6px 0 var(--gold-dark); }
.spin-btn:active:not(:disabled) { transform: scale(.97) translateY(3px); }
.spin-btn:disabled { opacity: .65; cursor: not-allowed; animation: spinPulse .8s ease-in-out infinite; }
.spin-btn-icon { font-size: 1.6rem; }
.spin-btn-text { font-size: .9rem; letter-spacing: .08em; }
.spin-btn--naija { background: radial-gradient(circle at 38% 32%, #c8a0ff, var(--purple-light) 55%, var(--purple)); color: var(--white); box-shadow: 0 0 42px rgba(92,31,138,.7), 0 6px 0 var(--purple), inset 0 2px 4px rgba(255,255,255,.3); }
.spin-btn--naija:hover:not(:disabled) { box-shadow: 0 0 65px rgba(92,31,138,.9), 0 6px 0 var(--purple); }

.machine-bottom-deco { display: flex; justify-content: center; gap: .6rem; padding-top: .8rem; }
.machine-light {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); animation: lightBlink 1.2s ease-in-out infinite;
}
.machine-light:nth-child(2) { animation-delay: .2s; }
.machine-light:nth-child(3) { animation-delay: .4s; }
.machine-light:nth-child(4) { animation-delay: .6s; }
.machine-light:nth-child(5) { animation-delay: .8s; }
.machine-light--purple { background: var(--purple-light); }
@keyframes lightBlink { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── Win overlay ── */
.win-overlay {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,.8); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.win-overlay.show { display: flex; }
.confetti-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; display: none;
}
.confetti-canvas.show { display: block; }
.win-overlay-inner {
  background: var(--white); border-radius: var(--r-xl);
  padding: 3rem 2.5rem; max-width: 440px; width: 100%;
  text-align: center; position: relative; z-index: 1;
  box-shadow: 0 0 80px rgba(240,180,41,.4), var(--sh-lg);
  border: 3px solid var(--gold);
  animation: winPopIn .4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes winPopIn { from{transform:scale(.7);opacity:0} to{transform:scale(1);opacity:1} }
.win-icon { font-size: 4rem; margin-bottom: .8rem; animation: winIconSpin 1s ease; }
@keyframes winIconSpin { from{transform:rotate(-30deg) scale(.5)} to{transform:rotate(0) scale(1)} }
.win-title { font-family: var(--font-head); font-size: 2rem; color: var(--forest); margin-bottom: .6rem; }
.win-amount-wrap { margin-bottom: .8rem; }
.win-amount { font-family: var(--font-head); font-size: 2.4rem; color: var(--gold); text-shadow: var(--sh-gold); }
.win-sub { font-size: .88rem; color: var(--gray-600); margin-bottom: 1.5rem; }
.win-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ── Refill overlay ── */
.refill-overlay {
  position: fixed; inset: 0; z-index: 7000;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
}
.refill-overlay:not([hidden]) { display: flex; align-items: center; justify-content: center; padding: 1rem; }
.refill-inner {
  background: var(--white); border-radius: var(--r-xl);
  padding: 3rem 2.5rem; max-width: 400px; width: 100%;
  text-align: center; box-shadow: var(--sh-lg); border: 3px solid var(--gold);
}
.refill-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.refill-inner h2 { font-family: var(--font-head); font-size: 1.8rem; color: var(--forest); margin-bottom: .5rem; }
.refill-inner p { font-size: .88rem; color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.6; }
.refill-inner .btn { margin: .4rem; }

/* ── Paytable ── */
.paytable-section { max-width: 700px; margin: 0 auto 1.5rem; }
.paytable-toggle-btn { display: block; margin: 0 auto; }
.paytable-wrap {
  display: none; background: rgba(255,255,255,.05);
  border: 1px solid rgba(240,180,41,.2); border-radius: var(--r-lg);
  padding: 1.5rem; margin-top: .8rem;
}
.paytable-wrap.open { display: block; }
.paytable-wrap--open { display: block !important; }
.paytable-wrap h3 { font-family: var(--font-head); color: var(--gold); margin-bottom: .5rem; }
.paytable-note { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.paytable-table { width: 100%; border-collapse: collapse; }
.paytable-table th { font-family: var(--font-ui); font-size: .78rem; text-align: left; color: rgba(255,255,255,.55); padding: .5rem; border-bottom: 1px solid rgba(255,255,255,.1); text-transform: uppercase; letter-spacing: .08em; }
.paytable-table td { padding: .55rem .5rem; font-family: var(--font-ui); font-size: .87rem; color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.05); }
.paytable-table tr:last-child td { border-bottom: none; }
.paytable-scatter, .paytable-wild { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: .6rem; }

/* Paytable on rules.html (light bg) */
.rules-section .paytable-table th { color: var(--gray-600); border-bottom: 1px solid var(--gray-200); }
.rules-section .paytable-table td { color: var(--gray-800); border-bottom: 1px solid var(--gray-100); }
.rules-section .paytable-note { color: var(--gray-600); }

/* ── Game rules summary ── */
.game-rules-summary {
  max-width: 700px; margin: 0 auto;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 1.5rem;
}
.game-rules-summary h3 { font-family: var(--font-head); color: var(--gold); margin-bottom: 1rem; }
.game-rules-summary ol { padding-left: 1.5rem; list-style: decimal; }
.game-rules-summary li { font-family: var(--font-ui); font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: .4rem; }

/* ── Leaderboard page ── */
.podium-section { margin-bottom: 3rem; }
.lb-table-section {}
.lb-table-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.lb-filter-tabs { display: flex; gap: .5rem; }
.tab-btn {
  background: var(--cream-dark); color: var(--gray-600);
  font-family: var(--font-ui); font-weight: 600; font-size: .84rem;
  padding: .5rem 1.2rem; border-radius: var(--r-pill); border: none;
  cursor: pointer; transition: var(--ease);
}
.tab-btn.active, .tab-btn:hover { background: var(--forest); color: var(--white); }
.lb-table-wrap { overflow-x: auto; border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.lb-table { width: 100%; border-collapse: collapse; background: var(--white); }
.lb-table thead tr { background: var(--forest); }
.lb-table thead th { padding: .9rem 1.2rem; font-family: var(--font-ui); font-size: .8rem; font-weight: 700; color: var(--gold); text-align: left; text-transform: uppercase; letter-spacing: .08em; }
.lb-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: var(--ease); }
.lb-table tbody tr:hover { background: var(--cream); }
.lb-table tbody td { padding: .85rem 1.2rem; font-family: var(--font-ui); font-size: .9rem; color: var(--gray-800); }
.lb-table .rank { font-family: var(--font-head); font-size: 1.1rem; }
.lb-table .player-name { font-weight: 600; }
.lb-table .score { color: var(--forest); font-weight: 700; }
.lb-table .wins { color: var(--orange); font-weight: 700; }
.lb-note { font-size: .8rem; color: var(--gray-400); text-align: center; margin-top: 1rem; font-style: italic; }
.lb-games-cta { text-align: center; background: var(--cream-dark); border-radius: var(--r-xl); padding: 2.5rem; margin-top: 2rem; }
.lb-games-cta h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--forest); margin-bottom: .4rem; }
.lb-games-cta p { font-size: .88rem; color: var(--gray-600); margin-bottom: 1.2rem; }
.lb-cta-btns { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.page-hero--lb { background: linear-gradient(135deg, #1a0a2e 0%, var(--forest) 60%, #0d1f3c 100%); }

/* ── Games catalogue page ── */
.games-catalogue-grid { display: flex; flex-direction: column; gap: 3rem; margin-bottom: 3rem; }
.game-full-card {
  display: grid; grid-template-columns: 380px 1fr; gap: 2.5rem;
  background: var(--white); border-radius: var(--r-xl);
  box-shadow: var(--sh-md); overflow: hidden; border: 2px solid var(--gray-100);
  transition: var(--ease);
}
.game-full-card:hover { box-shadow: var(--sh-lg); }
.gfc-reverse { direction: rtl; }
.gfc-reverse > * { direction: ltr; }
.gfc-preview { position: relative; overflow: hidden; }
.gfc-preview img { width: 100%; height: 100%; object-fit: cover; }
.gfc-ribbon {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--gold); color: var(--forest);
  font-family: var(--font-ui); font-size: .74rem; font-weight: 800;
  padding: .3rem .9rem; border-radius: var(--r-pill);
}
.ribbon-purple { background: var(--purple) !important; color: var(--white) !important; }
.gfc-info { padding: 2rem; display: flex; flex-direction: column; gap: .8rem; }
.gfc-tag-row { display: flex; flex-wrap: wrap; gap: .4rem; }
.gfc-title { font-family: var(--font-head); font-size: 1.7rem; color: var(--gray-800); }
.gfc-desc { font-size: .9rem; color: var(--gray-600); line-height: 1.7; }
.gfc-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.gfc-detail-item { background: var(--cream); border-radius: var(--r-md); padding: .7rem; text-align: center; }
.detail-label { font-size: .72rem; color: var(--gray-400); font-family: var(--font-ui); font-weight: 600; display: block; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }
.detail-val { font-family: var(--font-head); color: var(--forest); font-size: .92rem; }
.gfc-symbols h4 { font-family: var(--font-ui); font-weight: 700; font-size: .8rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.symbol-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.symbol-row span { font-size: 1.5rem; cursor: help; }
.gfc-cta { margin-top: auto; }
.games-info-box {
  background: var(--cream-dark); border-radius: var(--r-xl); padding: 2.5rem; margin-top: 1rem;
  border: 2px solid var(--gray-200);
}
.games-info-box h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--forest); margin-bottom: 1.5rem; }
.info-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.info-col h4 { font-family: var(--font-ui); font-weight: 700; color: var(--forest); font-size: .9rem; margin-bottom: .6rem; }
.info-col ul { padding-left: 1.2rem; list-style: disc; }
.info-col li { font-size: .84rem; color: var(--gray-600); line-height: 1.7; margin-bottom: .3rem; }

/* ── Content pages (rules/terms/privacy) ── */
.content-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; }
.legal-layout   { display: grid; grid-template-columns: 1fr 260px; gap: 2.5rem; }
.content-main, .legal-content {}
.content-sidebar, .legal-sidebar {}
.sidebar-card {
  background: var(--white); border-radius: var(--r-lg); padding: 1.5rem;
  border: 2px solid var(--gray-200); box-shadow: var(--sh-sm); margin-bottom: 1.2rem;
}
.sidebar-card h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--forest); margin-bottom: .8rem; }
.sidebar-card ul { padding-left: 0; list-style: none; }
.sidebar-card ul li { margin-bottom: .4rem; }
.sidebar-card ul li a { font-size: .85rem; color: var(--forest); text-decoration: underline; transition: var(--ease); }
.sidebar-card ul li a:hover { color: var(--orange); }
.sidebar-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.6; margin-bottom: .8rem; }
.sidebar-card--warning { border-color: var(--gold); background: rgba(240,180,41,.06); }
.sidebar-game-links { display: flex; flex-direction: column; gap: .5rem; }
.legal-meta { background: var(--cream-dark); border-left: 4px solid var(--gold); padding: 1rem 1.2rem; border-radius: 0 var(--r-md) var(--r-md) 0; margin-bottom: 2rem; }
.legal-meta p { font-size: .85rem; color: var(--gray-600); line-height: 1.65; margin-bottom: .3rem; }
.legal-meta p:last-child { margin-bottom: 0; }
.legal-section { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-100); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-family: var(--font-head); font-size: 1.25rem; color: var(--forest); margin-bottom: .7rem; }
.legal-section h3 { font-family: var(--font-ui); font-weight: 700; font-size: .95rem; color: var(--forest); margin: 1rem 0 .5rem; }
.legal-section p { font-size: .88rem; color: var(--gray-600); line-height: 1.75; margin-bottom: .6rem; }
.legal-section ul { padding-left: 1.4rem; list-style: disc; }
.legal-section li { font-size: .87rem; color: var(--gray-600); line-height: 1.7; margin-bottom: .35rem; }
.legal-section a { color: var(--forest); text-decoration: underline; }
.legal-section code { background: var(--cream-dark); padding: .15rem .45rem; border-radius: 4px; font-family: monospace; font-size: .84rem; color: var(--forest); }

/* ── Rules page ── */
.rules-section { margin-bottom: 2rem; }
.rules-card { background: var(--white); border-radius: var(--r-xl); padding: 2rem; box-shadow: var(--sh-sm); border: 2px solid var(--gray-100); }
.rules-card--king { border-left: 5px solid var(--gold); }
.rules-card--naija { border-left: 5px solid var(--purple-light); }
.rules-card-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.rules-icon { font-size: 1.8rem; }
.rules-card-head h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--forest); }
.rules-card-body {}
.rules-card-body h3 { font-family: var(--font-ui); font-weight: 700; font-size: .95rem; color: var(--forest); margin: 1.2rem 0 .6rem; }
.rules-card-body p { font-size: .88rem; color: var(--gray-600); line-height: 1.7; margin-bottom: .6rem; }
.rules-list { padding-left: 1.4rem; list-style: disc; }
.rules-list li { font-size: .87rem; color: var(--gray-600); line-height: 1.7; margin-bottom: .35rem; }
.rules-cta { margin-top: 1.2rem; }

/* ── Responsible Gaming page ── */
.rg-block { margin-bottom: 2rem; }
.rg-block-inner { display: flex; gap: 2rem; background: var(--white); border-radius: var(--r-xl); padding: 2rem; box-shadow: var(--sh-sm); border: 2px solid var(--gray-100); }
.rg-block-inner--centered { flex-direction: column; align-items: center; text-align: center; }
.rg-block--warning .rg-block-inner { border-color: var(--gold); background: rgba(240,180,41,.04); }
.rg-block--danger  .rg-block-inner { border-color: var(--red); background: rgba(229,57,53,.04); }
.rg-block--reg     .rg-block-inner { border-color: var(--forest); background: rgba(11,77,46,.03); }
.rg-block--help    .rg-block-inner { border-color: var(--mint); }
.rg-block--contact .rg-block-inner { background: linear-gradient(135deg, var(--forest), #072815); color: var(--white); }
.rg-block--contact h2 { color: var(--gold); }
.rg-block--contact p { color: rgba(255,255,255,.78); }
.rg-block-icon { font-size: 3rem; flex-shrink: 0; line-height: 1; }
.rg-block-content { flex: 1; }
.rg-block-content h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--forest); margin-bottom: .7rem; }
.rg-block-content p { font-size: .88rem; color: var(--gray-600); line-height: 1.72; margin-bottom: .6rem; }
.rg-block-content ul { padding-left: 1.4rem; list-style: disc; }
.rg-block-content li { font-size: .87rem; color: var(--gray-600); line-height: 1.7; margin-bottom: .35rem; }
.rg-block-content a { color: var(--forest); text-decoration: underline; }
.rg-highlight { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .8rem; }
.rg-highlight span { background: var(--cream-dark); border: 1px solid var(--gray-200); padding: .3rem .8rem; border-radius: var(--r-pill); font-size: .78rem; font-family: var(--font-ui); font-weight: 600; color: var(--gray-800); }
.warning-signs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-top: .8rem; }
.warning-sign { background: var(--cream-dark); border-radius: var(--r-lg); padding: 1rem; text-align: center; border: 1px solid var(--gray-200); }
.ws-icon { font-size: 1.8rem; display: block; margin-bottom: .4rem; }
.warning-sign p { font-size: .8rem; color: var(--gray-600); line-height: 1.5; }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; margin-top: .8rem; }
.tip-card { background: var(--cream-dark); border-radius: var(--r-lg); padding: 1.2rem; border: 1px solid var(--gray-200); }
.tip-num { width: 32px; height: 32px; background: var(--forest); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: .95rem; margin-bottom: .6rem; }
.tip-card h4 { font-family: var(--font-ui); font-weight: 700; font-size: .88rem; color: var(--forest); margin-bottom: .35rem; }
.tip-card p { font-size: .82rem; color: var(--gray-600); line-height: 1.6; }
.org-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 1rem; }
.org-card {
  display: flex; gap: 1rem; background: var(--cream); border-radius: var(--r-lg);
  padding: 1.3rem; border: 2px solid var(--gray-200); transition: var(--ease); text-decoration: none;
}
.org-card:hover { border-color: var(--forest); transform: translateY(-3px); box-shadow: var(--sh-md); }
.org-card-icon { font-size: 2.2rem; flex-shrink: 0; }
.org-card-info h4 { font-family: var(--font-ui); font-weight: 700; color: var(--forest); font-size: .92rem; margin-bottom: .35rem; }
.org-card-info p { font-size: .78rem; color: var(--gray-600); line-height: 1.55; margin-bottom: .35rem; }
.org-link { font-size: .74rem; color: var(--forest); font-weight: 700; text-decoration: underline; }
.helplines-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-top: 1rem; }
.helpline-card {
  background: var(--cream); border-radius: var(--r-lg); padding: 1.3rem;
  border: 2px solid var(--gray-200); text-decoration: none; display: block;
  transition: var(--ease);
}
.helpline-card:hover { border-color: var(--mint); transform: translateY(-3px); }
.helpline-card h4 { font-family: var(--font-ui); font-weight: 700; color: var(--forest); font-size: .9rem; margin-bottom: .4rem; }
.helpline-card p { font-size: .8rem; color: var(--gray-600); line-height: 1.55; margin-bottom: .4rem; }
.helpline-card span { font-size: .74rem; color: var(--forest); font-weight: 700; text-decoration: underline; }
.page-hero--rg { background: linear-gradient(135deg, #1a0330 0%, var(--forest) 60%, #0a2040 100%); }

/* ── Contact page ── */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.contact-card {
  background: var(--white); border-radius: var(--r-xl); padding: 2rem;
  text-align: center; box-shadow: var(--sh-sm); border: 2px solid var(--gray-100); transition: var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.contact-card--primary { border-color: var(--gold); background: rgba(240,180,41,.04); }
.contact-card-icon { font-size: 2.5rem; margin-bottom: .8rem; }
.contact-card h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--forest); margin-bottom: .5rem; }
.contact-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1.2rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; }
.contact-form-section h2 { font-family: var(--font-head); font-size: 1.6rem; color: var(--forest); margin-bottom: .4rem; }
.contact-form-section p { font-size: .88rem; color: var(--gray-600); margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-success { text-align: center; padding: 3rem 1rem; }
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.contact-success h3 { font-family: var(--font-head); font-size: 1.7rem; color: var(--forest); margin-bottom: .5rem; }
.contact-success p { font-size: .9rem; color: var(--gray-600); margin-bottom: 1.5rem; }
.contact-faq h2 { font-family: var(--font-head); font-size: 1.6rem; color: var(--forest); margin-bottom: 1.2rem; }
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item { background: var(--white); border: 2px solid var(--gray-100); border-radius: var(--r-lg); overflow: hidden; }
.faq-item summary { padding: 1rem 1.2rem; font-family: var(--font-ui); font-weight: 600; font-size: .9rem; color: var(--gray-800); cursor: pointer; list-style: none; transition: var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: '▶ '; color: var(--orange); font-size: .7rem; }
.faq-item[open] summary { background: var(--cream-dark); color: var(--forest); }
.faq-item[open] summary::before { content: '▼ '; }
.faq-item p { padding: .8rem 1.2rem 1rem; font-size: .86rem; color: var(--gray-600); line-height: 1.7; border-top: 1px solid var(--gray-100); }
.faq-item a { color: var(--forest); text-decoration: underline; }

/* ── Responsive extended ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .game-full-card { grid-template-columns: 1fr; }
  .gfc-preview { height: 260px; }
  .content-layout, .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar, .content-sidebar { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 3px solid var(--gold); z-index: 999; padding: 1rem; flex-direction: column; gap: .4rem; box-shadow: var(--sh-md); }
  .nav-menu.open { display: flex; }
  .nav-menu li button { width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: .8rem; }
  .podium { gap: .5rem; }
  .podium-step { flex: 0 0 130px; padding: 1rem .8rem; }
  .reels-container { gap: 4px; padding: .6rem; }
  .reel-col { width: 72px; }
  .reel-cell { width: 72px; font-size: 1.75rem; }
  .slot-hud { padding: .8rem 1rem; }
  .hud-item--center { padding: 0 1rem; }
  .spin-btn { width: 84px; height: 84px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .rg-block-inner { flex-direction: column; gap: 1rem; }
}
@media (max-width: 480px) {
  .hero-content { padding: 4rem 1rem 3rem; }
  .stat-card { min-width: 90px; padding: .8rem 1rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .reels-container { gap: 3px; padding: .4rem; }
  .reel-col { width: 58px; }
  .reel-cell { width: 58px; font-size: 1.45rem; }
  .podium-step { flex: 0 0 100px; }
  .contact-cards { grid-template-columns: 1fr; }
  .lb-table-head { flex-direction: column; }
}
