/* ============================================================
   PeacockNaija — Main Stylesheet
   Palette: Ivory #FEFBF3, Deep Teal #0A3D4A, Gold #F5C518,
            Vivid Green #1DB954, Coral #FF6B35, Purple #7B2FBE
   Fonts: Fredoka One (headings) + Nunito (body) + Outfit (UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --ivory:       #FEFBF3;
  --teal:        #0A3D4A;
  --teal-light:  #0E5266;
  --gold:        #F5C518;
  --gold-dark:   #D4A800;
  --green:       #1DB954;
  --coral:       #FF6B35;
  --purple:      #7B2FBE;
  --purple-light:#A855F7;
  --white:       #FFFFFF;
  --gray-50:     #F8F9FA;
  --gray-100:    #F0F2F5;
  --gray-200:    #E4E7EC;
  --gray-400:    #9CA3AF;
  --gray-600:    #6B7280;
  --gray-800:    #1F2937;
  --red:         #EF4444;

  --font-head:   'Fredoka One', cursive;
  --font-body:   'Nunito', sans-serif;
  --font-ui:     'Outfit', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --radius-pill: 100px;

  --shadow-sm:   0 2px 8px rgba(10,61,74,.10);
  --shadow-md:   0 6px 24px rgba(10,61,74,.15);
  --shadow-lg:   0 12px 48px rgba(10,61,74,.20);
  --shadow-glow: 0 0 32px rgba(245,197,24,.55);
  --shadow-gold: 0 4px 20px rgba(245,197,24,.45);

  --nav-h:       68px;
  --transition:  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(--ivory);
  color: var(--gray-800);
  line-height: 1.6;
  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; }

/* ── Age Gate ── */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--teal) 0%, #061e25 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
#age-gate .gate-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 460px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  border: 3px solid var(--gold);
}
#age-gate .gate-logo {
  width: 90px; height: 90px; object-fit: contain;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--ivory);
  padding: 8px;
  border: 2px solid var(--gold);
}
#age-gate .gate-box h2 {
  font-family: var(--font-head);
  font-size: 2rem; color: var(--teal);
  margin-bottom: .5rem;
}
#age-gate .gate-box p {
  font-size: .95rem; color: var(--gray-600);
  margin-bottom: 2rem; line-height: 1.5;
}
#age-gate .gate-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.8rem;
  border-radius: 50%;
  width: 64px; height: 64px;
  line-height: 64px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-gold);
}
.gate-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-gate-yes {
  background: linear-gradient(135deg, var(--green) 0%, #15a04a 100%);
  color: var(--white);
  font-family: var(--font-ui); font-weight: 700;
  font-size: 1rem; padding: .9rem 2rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(29,185,84,.4);
  transition: var(--transition);
}
.btn-gate-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,185,84,.5); }
.btn-gate-no {
  background: var(--gray-100); color: var(--gray-600);
  font-family: var(--font-ui); font-weight: 600;
  font-size: 1rem; padding: .9rem 2rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.btn-gate-no:hover { background: var(--gray-200); }
.gate-disclaimer {
  font-size: .78rem; color: var(--gray-400);
  margin-top: 1.5rem; line-height: 1.4;
}

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: var(--teal);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
#cookie-banner p { font-size: .88rem; 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(--teal);
  font-family: var(--font-ui); font-weight: 700;
  padding: .6rem 1.6rem; border-radius: var(--radius-pill);
  font-size: .88rem; white-space: nowrap;
  transition: var(--transition);
}
.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(--shadow-sm);
}
.nav-inner {
  max-width: 1280px; 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: .75rem;
  text-decoration: none;
}
.nav-brand img {
  width: 42px; height: 42px; object-fit: contain;
  border-radius: 50%; border: 2px solid var(--gold);
}
.nav-brand .brand-name {
  font-family: var(--font-head);
  font-size: 1.5rem; color: var(--teal);
  line-height: 1;
}
.nav-brand .brand-name span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: .25rem;
}
.nav-links a {
  font-family: var(--font-ui); font-weight: 500;
  font-size: .92rem; color: var(--gray-600);
  padding: .5rem .85rem; border-radius: var(--radius-pill);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--ivory); color: var(--teal); font-weight: 700;
}
.nav-links a.nav-cta {
  background: var(--coral); color: var(--white);
  font-weight: 700; margin-left: .5rem;
  box-shadow: 0 2px 10px rgba(255,107,53,.3);
}
.nav-links a.nav-cta:hover {
  background: #e05020; transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,107,53,.45);
}
.nav-balance {
  display: flex; align-items: center; gap: .5rem;
  background: var(--ivory); border: 2px solid var(--gold);
  border-radius: var(--radius-pill);
  padding: .35rem .9rem;
  font-family: var(--font-ui); font-weight: 700;
  font-size: .9rem; color: var(--teal);
  cursor: default;
}
.nav-balance .coin-icon { font-size: 1.1rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--radius-sm);
  background: none;
  transition: var(--transition);
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--teal); border-radius: 4px;
  transition: var(--transition);
}
.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 {
  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(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-ui); font-weight: 600;
  font-size: 1rem; color: var(--teal);
  padding: .75rem 1rem; border-radius: var(--radius-md);
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--ivory); }
.mobile-menu .nav-cta {
  background: var(--coral); color: var(--white);
  text-align: center; border-radius: var(--radius-pill);
}

/* ── Disclaimer Bar ── */
.disclaimer-bar {
  background: linear-gradient(90deg, var(--purple) 0%, var(--teal) 100%);
  color: var(--white); text-align: center;
  font-family: var(--font-ui); font-size: .82rem; font-weight: 500;
  padding: .45rem 1rem; letter-spacing: .02em;
}
.disclaimer-bar strong { color: var(--gold); }

/* ── Hero ── */
.hero {
  min-height: 88vh;
  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(135deg, rgba(10,61,74,.85) 0%, rgba(123,47,190,.6) 60%, rgba(245,197,24,.2) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 4rem 2rem; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white); line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-text h1 .highlight {
  color: var(--gold);
  text-shadow: var(--shadow-glow);
}
.hero-text p {
  font-size: 1.1rem; color: rgba(255,255,255,.88);
  margin-bottom: 2rem; line-height: 1.7;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero-badge {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white); font-family: var(--font-ui);
  font-size: .82rem; font-weight: 600;
  padding: .4rem .9rem; border-radius: var(--radius-pill);
}
.hero-badges .badge-age { background: var(--gold); color: var(--teal); border-color: var(--gold); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Buttons ── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #e8b400 100%);
  color: var(--teal); font-family: var(--font-ui); font-weight: 800;
  font-size: 1rem; padding: .95rem 2.2rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  transition: var(--transition); display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(245,197,24,.6); }
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: var(--white); font-family: var(--font-ui); font-weight: 700;
  font-size: 1rem; padding: .95rem 2.2rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,.5);
  transition: var(--transition); display: inline-flex; align-items: center; gap: .5rem;
}
.btn-secondary:hover { background: rgba(255,255,255,.25); border-color: var(--white); }

.btn-teal {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
  color: var(--white); font-family: var(--font-ui); font-weight: 700;
  font-size: 1rem; padding: .85rem 2rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  transition: var(--transition); display: inline-flex; align-items: center; gap: .5rem;
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,61,74,.4); }

.btn-coral {
  background: linear-gradient(135deg, var(--coral) 0%, #e05020 100%);
  color: var(--white); font-family: var(--font-ui); font-weight: 700;
  font-size: 1rem; padding: .85rem 2rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(255,107,53,.4);
  transition: var(--transition); display: inline-flex; align-items: center; gap: .5rem;
}
.btn-coral:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,.5); }

.btn-outline {
  background: transparent; color: var(--teal);
  font-family: var(--font-ui); font-weight: 700;
  font-size: .95rem; padding: .75rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--teal);
  transition: var(--transition); display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

/* ── Hero Visual ── */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(245,197,24,.4);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 360px; width: 100%;
  text-align: center;
}
.hero-card-title {
  font-family: var(--font-head);
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: 1.5rem;
}
.mini-reels {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 1.5rem;
}
.mini-reel {
  width: 72px; height: 72px;
  background: var(--teal);
  border-radius: var(--radius-md);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 20px rgba(245,197,24,.35);
  animation: reelPulse 2s infinite;
}
.mini-reel:nth-child(2) { animation-delay: .3s; }
.mini-reel:nth-child(3) { animation-delay: .6s; }
@keyframes reelPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 20px rgba(245,197,24,.35); }
  50% { transform: scale(1.05); box-shadow: 0 0 32px rgba(245,197,24,.6); }
}
.hero-coins-bar {
  background: var(--ivory); border-radius: var(--radius-pill);
  padding: .6rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-ui); font-size: .9rem;
}
.hero-coins-bar .coins-label { color: var(--gray-600); font-weight: 500; }
.hero-coins-bar .coins-val { color: var(--teal); font-weight: 800; font-size: 1.1rem; }

/* ── Section Shared ── */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--teal); color: var(--white); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: rgba(245,197,24,.15); color: var(--gold-dark);
  font-family: var(--font-ui); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: var(--radius-pill);
  border: 1px solid rgba(245,197,24,.3);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--teal); margin-bottom: .75rem;
  line-height: 1.2;
}
.section-dark .section-header h2 { color: var(--gold); }
.section-header p {
  font-size: 1.05rem; color: var(--gray-600); max-width: 560px; margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,.75); }

/* ── No Money Banner ── */
.no-money-banner {
  background: linear-gradient(90deg, var(--green) 0%, #12a042 100%);
  color: var(--white); text-align: center;
  font-family: var(--font-ui); font-weight: 700; font-size: .9rem;
  padding: .6rem 1rem; letter-spacing: .02em;
}
.no-money-banner a { color: var(--gold); text-decoration: underline; }

/* ── Game Cards ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.game-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.game-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
}
.game-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--coral); color: var(--white);
  font-family: var(--font-ui); font-weight: 700; font-size: .75rem;
  padding: .3rem .8rem; border-radius: var(--radius-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.4rem;
  color: var(--teal); margin-bottom: .4rem;
}
.game-card-body p {
  font-size: .9rem; color: var(--gray-600); margin-bottom: 1.2rem;
  line-height: 1.5;
}
.game-card-meta {
  display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.2rem;
}
.meta-tag {
  background: var(--ivory); color: var(--teal);
  font-family: var(--font-ui); font-weight: 600; font-size: .78rem;
  padding: .3rem .75rem; border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
}
.game-card .btn-primary { width: 100%; justify-content: center; }

/* ── Stats / Features ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.stat-card {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(245,197,24,.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem; text-align: center;
}
.stat-card .stat-num {
  font-family: var(--font-head); font-size: 2.8rem;
  color: var(--gold); line-height: 1;
  margin-bottom: .4rem;
}
.stat-card .stat-label {
  font-family: var(--font-ui); font-size: .88rem;
  color: rgba(255,255,255,.7); font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1.2rem;
  box-shadow: 0 4px 16px rgba(245,197,24,.3);
}
.feature-card h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--teal); margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.5; }

/* ── Leaderboard ── */
.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.leaderboard-table thead {
  background: var(--teal); color: var(--gold);
  font-family: var(--font-ui); font-weight: 700; font-size: .88rem;
  letter-spacing: .05em; text-transform: uppercase;
}
.leaderboard-table th, .leaderboard-table td {
  padding: 1rem 1.25rem; text-align: left;
}
.leaderboard-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  font-family: var(--font-ui); font-size: .92rem;
  transition: var(--transition);
}
.leaderboard-table tbody tr:hover { background: var(--ivory); }
.leaderboard-table .rank-1 td:first-child { color: var(--gold); font-weight: 800; font-size: 1.1rem; }
.leaderboard-table .rank-2 td:first-child { color: var(--gray-400); font-weight: 700; }
.leaderboard-table .rank-3 td:first-child { color: var(--coral); font-weight: 700; }
.rank-medal { font-size: 1.3rem; }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(10,61,74,.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(--radius-xl);
  padding: 2.5rem 2rem; max-width: 500px; width: 100%;
  box-shadow: var(--shadow-lg); border: 3px solid var(--gold);
  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(--teal); margin-bottom: .5rem; }
.modal-box p { font-size: .9rem; color: var(--gray-600); margin-bottom: 1.5rem; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gray-100); color: var(--gray-600);
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--gray-200); }
.modal-box { position: relative; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-family: var(--font-ui); font-weight: 600; font-size: .88rem; color: var(--gray-600); margin-bottom: .4rem; }
.form-group input {
  width: 100%; padding: .75rem 1rem;
  border: 2px solid var(--gray-200); border-radius: var(--radius-md);
  font-family: var(--font-ui); font-size: .95rem; color: var(--gray-800);
  transition: var(--transition);
}
.form-group input:focus { outline: none; border-color: var(--teal); }
.form-group .form-check {
  display: flex; align-items: flex-start; gap: .5rem;
  font-family: var(--font-ui); font-size: .82rem; color: var(--gray-600);
}
.form-group .form-check input[type=checkbox] { margin-top: 2px; accent-color: var(--teal); }
.modal-submit { width: 100%; justify-content: center; font-size: 1.05rem; padding: 1rem; }

/* ── SLOT MACHINE ── */
.slot-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #0c2233 0%, #1a0d35 50%, #0a2a1e 100%);
  padding-top: var(--nav-h);
}
.slot-page .disclaimer-bar { background: rgba(0,0,0,.4); }

.slot-arena {
  max-width: 900px; margin: 0 auto; padding: 2rem 1rem;
}
.slot-title {
  text-align: center; margin-bottom: 2rem;
}
.slot-title h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold);
  text-shadow: 0 0 30px rgba(245,197,24,.7);
  margin-bottom: .4rem;
}
.slot-title p { color: rgba(255,255,255,.65); font-family: var(--font-ui); font-size: .95rem; }

/* Machine body */
.slot-machine {
  background: linear-gradient(180deg, #1a2a3a 0%, #0d1b2a 100%);
  border-radius: 28px;
  border: 4px solid var(--gold);
  box-shadow: 0 0 60px rgba(245,197,24,.3), 0 0 120px rgba(123,47,190,.2), inset 0 0 40px rgba(0,0,0,.5);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.slot-machine::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--coral), var(--green), var(--gold), var(--purple));
  animation: rainbowSlide 3s linear infinite;
  background-size: 400% 100%;
}
@keyframes rainbowSlide {
  0% { background-position: 0% 0%; }
  100% { background-position: 400% 0%; }
}

/* Lights row */
.slot-lights {
  display: flex; justify-content: space-between; margin-bottom: 1.5rem;
}
.slot-light {
  width: 16px; height: 16px; border-radius: 50%;
  animation: lightBlink 1.2s infinite;
}
.slot-light:nth-child(odd)  { background: var(--gold); animation-delay: 0s; }
.slot-light:nth-child(even) { background: var(--coral); animation-delay: .4s; }
.slot-light.green { background: var(--green); animation-delay: .8s; }
@keyframes lightBlink {
  0%,100% { opacity: 1; box-shadow: 0 0 8px currentColor; }
  50%      { opacity: .3; box-shadow: none; }
}

/* Reels container */
.reels-container {
  display: flex; gap: 10px; justify-content: center;
  background: #060f18;
  border: 3px solid rgba(245,197,24,.5);
  border-radius: var(--radius-lg);
  padding: 14px;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 4px 24px rgba(0,0,0,.8), 0 0 24px rgba(245,197,24,.15);
}
.reel-col {
  width: 90px; height: 204px; /* ROWS*68 = 3*68 = 204 */
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(245,197,24,.3);
  background: linear-gradient(180deg, #0a0f14 0%, #12202e 100%);
  position: relative;
}
.reel-col::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(6,15,24,.7) 0%, transparent 25%, transparent 75%, rgba(6,15,24,.7) 100%);
  pointer-events: none; z-index: 2;
}
.reel-strip {
  display: flex; flex-direction: column;
  gap: 8px; padding: 0;
  will-change: transform;
  transition: none;
}
.reel-cell {
  width: 90px; height: 60px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; border-radius: 10px;
  background: rgba(255,255,255,.04);
  position: relative; z-index: 1;
  user-select: none;
}
/* Payline overlay */
.payline {
  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 20px rgba(245,197,24,.5);
}

/* Controls */
.slot-controls {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 1rem; align-items: center; margin-bottom: 1.5rem;
}
.slot-info-block {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(245,197,24,.2);
  border-radius: var(--radius-md);
  padding: .75rem 1rem; text-align: center;
}
.slot-info-block .info-label {
  font-family: var(--font-ui); font-size: .72rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .2rem;
}
.slot-info-block .info-val {
  font-family: var(--font-head); font-size: 1.6rem; color: var(--gold);
  line-height: 1;
}
.slot-info-block .info-val.win-flash { color: var(--green); animation: winFlash .5s infinite; }
@keyframes winFlash { 0%,100%{opacity:1;} 50%{opacity:.4;} }

.btn-spin {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #ffe066, var(--gold) 60%, var(--gold-dark));
  color: var(--teal);
  font-family: var(--font-head); font-size: 1.3rem;
  box-shadow: 0 0 40px rgba(245,197,24,.7), 0 6px 0 var(--gold-dark), inset 0 2px 4px rgba(255,255,255,.4);
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  position: relative;
  user-select: none;
}
.btn-spin .spin-icon { font-size: 1.8rem; }
.btn-spin:hover:not(:disabled) {
  transform: scale(1.06);
  box-shadow: 0 0 60px rgba(245,197,24,.9), 0 6px 0 var(--gold-dark);
}
.btn-spin:active:not(:disabled) {
  transform: scale(.97) translateY(3px);
  box-shadow: 0 0 30px rgba(245,197,24,.6), 0 2px 0 var(--gold-dark);
}
.btn-spin:disabled {
  opacity: .6; cursor: not-allowed;
  animation: spinPulse .8s 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: 1rem;
  margin-bottom: 1rem; flex-wrap: wrap;
}
.bet-row label {
  font-family: var(--font-ui); font-size: .85rem; color: rgba(255,255,255,.6);
  font-weight: 600;
}
.bet-btns { display: flex; gap: .5rem; }
.btn-bet {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  font-family: var(--font-ui); font-weight: 700; font-size: .85rem;
  padding: .45rem .9rem; border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,.15);
  transition: var(--transition);
}
.btn-bet.active, .btn-bet:hover {
  background: var(--gold); color: var(--teal); border-color: var(--gold);
}
.btn-max-bet {
  background: var(--coral); color: var(--white);
  font-family: var(--font-ui); font-weight: 700; font-size: .85rem;
  padding: .45rem 1.1rem; border-radius: var(--radius-pill);
  transition: var(--transition);
}
.btn-max-bet:hover { background: #e05020; }

/* Win Overlay */
.win-overlay {
  position: absolute; inset: 0;
  background: rgba(10,61,74,.88);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  display: none; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  z-index: 100;
}
.win-overlay.show { display: flex; }
.win-overlay .win-emoji { font-size: 4rem; animation: winBounce .6s infinite alternate; }
@keyframes winBounce { from{transform:scale(1);} to{transform:scale(1.2);} }
.win-overlay .win-text {
  font-family: var(--font-head);
  font-size: 2.2rem; color: var(--gold);
  text-shadow: 0 0 30px rgba(245,197,24,.8);
  animation: winTextPulse 1s infinite;
}
@keyframes winTextPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.win-overlay .win-amount {
  font-family: var(--font-head); font-size: 1.5rem;
  color: var(--green);
}
.win-overlay .btn-close-win {
  background: var(--gold); color: var(--teal);
  font-family: var(--font-ui); font-weight: 800;
  padding: .7rem 2rem; border-radius: var(--radius-pill);
  margin-top: .5rem; transition: var(--transition);
}
.win-overlay .btn-close-win:hover { background: var(--gold-dark); transform: scale(1.04); }

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

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

/* Paytable */
.paytable {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(245,197,24,.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem; margin-top: 1rem;
}
.paytable-title {
  font-family: var(--font-head); font-size: 1rem; color: var(--gold);
  margin-bottom: .75rem; text-align: center;
}
.paytable-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: .5rem;
}
.pt-row {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-ui); font-size: .82rem; color: rgba(255,255,255,.75);
}
.pt-sym { font-size: 1.3rem; }
.pt-mult { color: var(--gold); font-weight: 700; }

/* ── Responsible Gaming ── */
.rg-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2rem 1.5rem; border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.rg-card h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--teal); margin-bottom: .75rem; }
.rg-card p, .rg-card li { font-size: .94rem; color: var(--gray-600); line-height: 1.7; }
.rg-card ul { padding-left: 1.25rem; list-style: disc; }
.rg-orgs { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.rg-org-card {
  background: var(--ivory); border-radius: var(--radius-lg);
  padding: 1.5rem; text-align: center; border: 2px solid var(--gray-200);
  transition: var(--transition);
}
.rg-org-card:hover { border-color: var(--teal); }
.rg-org-card .rg-org-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.rg-org-card h4 { font-family: var(--font-ui); font-weight: 700; color: var(--teal); font-size: 1rem; margin-bottom: .4rem; }
.rg-org-card p { font-size: .82rem; color: var(--gray-600); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%; padding: .8rem 1rem;
  border: 2px solid var(--gray-200); border-radius: var(--radius-md);
  font-family: var(--font-ui); font-size: .95rem; color: var(--gray-800);
  background: var(--white); transition: var(--transition);
}
.contact-form .form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus { outline: none; border-color: var(--teal); }

/* ── Footer ── */
#site-footer {
  background: var(--teal);
  color: rgba(255,255,255,.8);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand img {
  width: 52px; height: 52px; object-fit: contain;
  border-radius: 50%; border: 2px solid var(--gold);
  margin-bottom: .75rem;
}
.footer-brand .brand-name {
  font-family: var(--font-head); font-size: 1.5rem; color: var(--white); margin-bottom: .5rem;
}
.footer-brand .brand-name span { color: var(--gold); }
.footer-brand p { font-size: .85rem; line-height: 1.6; color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--teal); }

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

.footer-regulators {
  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-regulators p {
  font-family: var(--font-ui); font-size: .78rem;
  color: rgba(255,255,255,.5); text-align: center; margin-bottom: .75rem;
}
.reg-badges { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.reg-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: .5rem 1rem;
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-ui); font-size: .78rem; color: rgba(255,255,255,.75);
  font-weight: 600;
  transition: var(--transition);
}
a.reg-badge {
  cursor: pointer;
  text-decoration: none;
}
a.reg-badge:hover {
  background: rgba(245,197,24,.2);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.reg-badge .reg-icon { font-size: 1rem; }

.footer-disclaimer {
  font-size: .78rem; color: rgba(255,255,255,.45);
  line-height: 1.6; text-align: center; margin-bottom: 1.5rem;
}
.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: .8rem; color: rgba(255,255,255,.4);
}
.footer-bottom .age-badge {
  background: var(--gold); color: var(--teal);
  font-family: var(--font-head); font-size: .95rem;
  width: 36px; height: 36px; border-radius: 50%; line-height: 36px;
  text-align: center; font-weight: 900;
}

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

/* ── Generic content pages ── */
.page-hero {
  background: linear-gradient(135deg, var(--teal) 0%, #07303c 100%);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1rem; }
.content-section { max-width: 900px; margin: 0 auto; padding: 4rem 1.5rem; }
.content-section h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--teal); margin: 2rem 0 .75rem; }
.content-section h3 { font-family: var(--font-ui); font-weight: 700; font-size: 1.05rem; color: var(--teal); margin: 1.25rem 0 .5rem; }
.content-section p, .content-section li { font-size: .94rem; color: var(--gray-600); line-height: 1.75; }
.content-section ul { padding-left: 1.5rem; list-style: disc; }
.content-section ol { padding-left: 1.5rem; list-style: decimal; }
.content-section a { color: var(--teal); text-decoration: underline; }
.info-box {
  background: var(--ivory); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.25rem; margin: 1.5rem 0;
}
.info-box p { color: var(--gray-800); font-weight: 600; font-size: .9rem; }

/* ── Utility ── */
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ── Animations ── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
.fade-in { animation: fadeInUp .6s ease forwards; }
.fade-in-delay { animation: fadeInUp .6s .2s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-balance { display: none; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .slot-controls { grid-template-columns: 1fr auto 1fr; gap: .5rem; }
  .reel-col { width: 72px; height: 204px; }
  .reel-cell { width: 72px; font-size: 1.8rem; }
  .reels-container { gap: 6px; padding: 10px; }
  .btn-spin { width: 88px; height: 88px; font-size: 1rem; }
  .btn-spin .spin-icon { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .section { padding: 3.5rem 1rem; }
  .reel-col { width: 64px; }
  .reel-cell { width: 64px; font-size: 1.6rem; }
  .slot-info-block .info-val { font-size: 1.3rem; }
  .btn-spin { width: 78px; height: 78px; }
  .paytable-grid { grid-template-columns: 1fr 1fr; }
}
