/* ===========================
   NairaWin – Premium Casino Aggregator
   Main Stylesheet
   =========================== */

/* ---------- CSS Variables ---------- */
:root {
  --bg-deep:    #06060f;
  --bg-dark:    #0d0d1f;
  --bg-card:    #111126;
  --bg-card2:   #161632;
  --neon:       #00ff88;
  --neon-dim:   rgba(0,255,136,.18);
  --neon-glow:  0 0 8px #00ff88, 0 0 20px rgba(0,255,136,.5);
  --gold:       #ffd700;
  --gold-dim:   rgba(255,215,0,.18);
  --gold-glow:  0 0 8px #ffd700, 0 0 20px rgba(255,215,0,.4);
  --purple:     #9b59ff;
  --purple-dim: rgba(155,89,255,.2);
  --text-main:  #e8e8f0;
  --text-muted: #8888aa;
  --border:     rgba(255,255,255,.08);
  --radius:     14px;
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--neon); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
img { max-width: 100%; }
ul { list-style: none; }

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

.neon-text {
  color: var(--neon);
  text-shadow: var(--neon-glow);
}

.gold-text {
  color: var(--gold);
  text-shadow: var(--gold-glow);
}

.section {
  padding: 90px 0;
  position: relative;
}

/* ---------- Age Warning Bar ---------- */
.age-bar {
  background: linear-gradient(90deg, #1a0a2e, #0d1a0d, #1a0a2e);
  border-bottom: 1px solid var(--neon-dim);
  padding: 8px 20px;
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.age-bar .age-icon { font-size: 1rem; }
.age-bar strong { color: var(--neon); }
.age-link {
  background: rgba(0,255,136,.15);
  border: 1px solid var(--neon-dim);
  color: var(--neon) !important;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .75rem;
  transition: all var(--transition);
}
.age-link:hover { background: var(--neon-dim); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6,6,15,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}
.logo-accent {
  color: var(--neon);
  text-shadow: var(--neon-glow);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--neon);
  background: var(--neon-dim);
  text-shadow: 0 0 6px rgba(0,255,136,.5);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,255,136,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(155,89,255,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 60% 80%, rgba(255,215,0,.08) 0%, transparent 50%),
    linear-gradient(135deg, #06060f 0%, #0d0d1f 50%, #0a0a1a 100%);
}

/* Animated grid lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 80px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,136,.1);
  border: 1px solid rgba(0,255,136,.3);
  color: var(--neon);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 24px;
  animation: fadeInUp .6s ease both;
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 22px;
  animation: fadeInUp .7s ease .1s both;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp .7s ease .2s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  animation: fadeInUp .7s ease .3s both;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon);
  text-shadow: var(--neon-glow);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon);
  text-shadow: var(--neon-glow);
  line-height: 1;
}

.stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--neon), #00cc66);
  color: #06060f !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 0 30px rgba(0,255,136,.4), 0 4px 20px rgba(0,0,0,.5);
  animation: fadeInUp .7s ease .4s both;
  letter-spacing: .5px;
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 50px rgba(0,255,136,.6), 0 8px 30px rgba(0,0,0,.6);
  color: #06060f !important;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--neon);
  animation: bounce 2s infinite;
  font-size: 1.2rem;
  opacity: .6;
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--neon-dim);
  border: 1px solid rgba(0,255,136,.25);
  color: var(--neon);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Casinos Section ---------- */
.casinos-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,255,136,.05) 0%, transparent 60%),
    var(--bg-dark);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 9px 22px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--neon-dim);
  border-color: rgba(0,255,136,.4);
  color: var(--neon);
}

/* Casino Cards */
.casinos-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.casino-card {
  position: relative;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.casino-card:hover {
  border-color: rgba(0,255,136,.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,0,0,.5), 0 0 30px rgba(0,255,136,.08);
}
.casino-card:hover::before { opacity: 1; }

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  z-index: 2;
}
.badge-hot   { background: linear-gradient(135deg, #ff4500, #ff8c00); color: #fff; box-shadow: 0 0 15px rgba(255,69,0,.4); }
.badge-popular { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #06060f; box-shadow: 0 0 15px rgba(255,215,0,.4); }
.badge-bonus { background: linear-gradient(135deg, #9b59ff, #6c3ce1); color: #fff; box-shadow: 0 0 15px rgba(155,89,255,.4); }

.card-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 28px 24px;
}

.card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 130px;
}

.casino-logo-wrap {
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  justify-content: center;
  overflow: hidden;
}

.betlivex-logo { background: linear-gradient(135deg, #0d0d1f, #1a0a2e); border: 1px solid rgba(0,255,136,.25); }

/* Real logo images */
.casino-logo-img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.clogo-icon { font-size: 1.6rem; line-height: 1; }
.clogo-name { font-size: .75rem; font-weight: 700; color: #fff; letter-spacing: .5px; }

.casino-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stars { color: var(--gold); font-size: .85rem; letter-spacing: 1px; }
.rating-num { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

.card-center {
  flex: 1;
}

.casino-name {
  font-family: 'Orbitron', monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.casino-bonus {
  margin-bottom: 14px;
}
.bonus-label {
  display: block;
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 3px;
}
.bonus-value {
  font-size: .95rem;
  font-weight: 700;
  color: var(--neon);
  text-shadow: 0 0 8px rgba(0,255,136,.4);
}
.bonus-amount {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: var(--gold-glow);
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.feature-tag {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.feature-tag i { color: var(--neon); font-size: .65rem; }

.casino-payment {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pay-icon {
  font-size: .72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.pay-icon i { color: var(--gold); }

.card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--neon), #00cc66);
  color: #06060f !important;
  font-weight: 800;
  font-size: .9rem;
  padding: 13px 28px;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,255,136,.35);
  text-decoration: none;
  width: 100%;
  justify-content: center;
}
.play-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 35px rgba(0,255,136,.55);
  color: #06060f !important;
}

.play-btn-gold {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  box-shadow: 0 0 20px rgba(255,215,0,.35);
}
.play-btn-gold:hover {
  box-shadow: 0 0 35px rgba(255,215,0,.55);
  color: #06060f !important;
}

.play-btn-purple {
  background: linear-gradient(135deg, #9b59ff, #6c3ce1);
  color: #fff !important;
  box-shadow: 0 0 20px rgba(155,89,255,.35);
}
.play-btn-purple:hover {
  box-shadow: 0 0 35px rgba(155,89,255,.55);
  color: #fff !important;
}

.card-tc {
  font-size: .68rem;
  color: var(--text-muted);
  text-align: center;
}

.card-detail-toggle {
  cursor: pointer;
  color: var(--text-muted);
  font-size: .8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
  padding: 4px;
}
.card-detail-toggle:hover { color: var(--neon); }
.card-detail-toggle i { transition: transform var(--transition); }
.card-detail-toggle.open i { transform: rotate(180deg); }

/* Card Details (expanded) */
.card-detail {
  display: none;
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  background: rgba(0,255,136,.02);
}
.card-detail.open { display: block; }

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.detail-item strong {
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.detail-item span {
  font-size: .95rem;
  font-weight: 700;
  color: var(--neon);
}
.detail-text {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Hidden card */
.casino-card.hidden { display: none; }

/* ---------- Bonuses Section ---------- */
.bonuses-section {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(155,89,255,.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(255,215,0,.05) 0%, transparent 60%),
    var(--bg-deep);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bonuses-grid-single {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 0 auto;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.bonus-card:hover {
  border-color: rgba(0,255,136,.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,.5);
}

.bonus-card-featured {
  border-color: rgba(255,215,0,.3);
  background: linear-gradient(135deg, #1a1400, #0d0d1f);
  box-shadow: 0 0 30px rgba(255,215,0,.1);
}
.bonus-card-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 0 50px rgba(255,215,0,.2);
}

.bonus-featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  color: #06060f;
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.bonus-icon {
  width: 64px;
  height: 64px;
  background: var(--neon-dim);
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--neon);
}
.bonus-card-featured .bonus-icon {
  background: var(--gold-dim);
  border-color: rgba(255,215,0,.3);
  color: var(--gold);
}

.bonus-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
}

.bonus-card p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.bonus-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--neon-dim);
  border: 1px solid rgba(0,255,136,.3);
  color: var(--neon) !important;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .88rem;
  transition: all var(--transition);
}
.bonus-cta:hover {
  background: var(--neon);
  color: #06060f !important;
  box-shadow: var(--neon-glow);
}
.bonus-card-featured .bonus-cta {
  background: var(--gold-dim);
  border-color: rgba(255,215,0,.3);
  color: var(--gold) !important;
}
.bonus-card-featured .bonus-cta:hover {
  background: var(--gold);
  color: #06060f !important;
  box-shadow: var(--gold-glow);
}

/* ---------- Rating Section ---------- */
.rating-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rating-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: all var(--transition);
}
.rating-item:hover {
  border-color: rgba(0,255,136,.2);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.rating-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.neon-icon {
  background: var(--neon-dim);
  border: 1px solid rgba(0,255,136,.2);
  color: var(--neon);
}
.gold-icon {
  background: var(--gold-dim);
  border: 1px solid rgba(255,215,0,.2);
  color: var(--gold);
}

.rating-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.rating-item p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Why Section ---------- */
.why-section {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,255,136,.04) 0%, transparent 50%),
    var(--bg-dark);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text .section-tag { display: inline-flex; }
.why-text .section-title { text-align: left; margin-bottom: 16px; }
.why-text > p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: var(--text-main);
}
.why-list li i { color: var(--neon); font-size: 1rem; flex-shrink: 0; }

.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  transition: all var(--transition);
}
.wc span { font-size: .85rem; font-weight: 700; color: #fff; }
.wc1 { border-color: rgba(0,255,136,.2); }
.wc1:hover { background: rgba(0,255,136,.05); transform: translateY(-5px); }
.wc1 i { color: var(--neon); }
.wc2 { border-color: rgba(255,215,0,.2); }
.wc2:hover { background: rgba(255,215,0,.05); transform: translateY(-5px); }
.wc2 i { color: var(--gold); }
.wc3 { border-color: rgba(0,255,136,.2); }
.wc3:hover { background: rgba(0,255,136,.05); transform: translateY(-5px); }
.wc3 i { color: var(--neon); }
.wc4 { border-color: rgba(155,89,255,.2); }
.wc4:hover { background: rgba(155,89,255,.05); transform: translateY(-5px); }
.wc4 i { color: var(--purple); }

/* ---------- FAQ Section ---------- */
.faq-section {
  background: var(--bg-deep);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(0,255,136,.3); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
  font-family: 'Inter', sans-serif;
}
.faq-question:hover { color: var(--neon); }
.faq-question i { color: var(--neon); transition: transform var(--transition); flex-shrink: 0; font-size: .9rem; }
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.75;
}
.faq-answer a { color: var(--neon); text-decoration: underline; }

/* ---------- Disclaimer Block ---------- */
.disclaimer-block {
  background: linear-gradient(135deg, #0a0a1a, #111126);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}

.disclaimer-inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background: rgba(255,165,0,.04);
  border: 1px solid rgba(255,165,0,.15);
  border-radius: var(--radius);
  padding: 36px;
}

.disclaimer-icon {
  font-size: 3rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255,140,0,.5));
}

.disclaimer-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.disclaimer-text p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}
.disclaimer-text a { color: var(--neon); }
.disclaimer-text strong { color: #fff; }
.disclaimer-small { font-size: .78rem; opacity: .7; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #0a0a1a 0%, #06060f 100%);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo { margin-bottom: 14px; }

.footer-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-regulators {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reg-title {
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 4px;
}
.reg-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--text-muted) !important;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,.02);
  transition: all var(--transition);
}
.reg-link i { color: var(--neon); }
.reg-link:hover {
  border-color: rgba(0,255,136,.2);
  color: var(--neon) !important;
  background: var(--neon-dim);
}

/* Regulator logo inside footer links */
.reg-link-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reg-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
  background: #fff;
  padding: 2px;
}

/* ================================================
   18+ AGE GATE POPUP
================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 4, 14, 0.97);
  backdrop-filter: blur(12px);
  padding: 20px;
}
.age-gate.hidden {
  display: none;
}
.age-gate-box {
  background: linear-gradient(145deg, #111126, #1a1a3a);
  border: 1px solid rgba(0,255,136,.25);
  border-radius: 24px;
  padding: 50px 44px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 80px rgba(0,255,136,.1), 0 30px 60px rgba(0,0,0,.7);
  animation: ageGateIn .5s cubic-bezier(.4,0,.2,1) both;
  position: relative;
  overflow: hidden;
}
.age-gate-box::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
}
@keyframes ageGateIn {
  from { opacity: 0; transform: scale(.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
.age-gate-icon {
  font-size: 4rem;
  margin-bottom: 10px;
  line-height: 1;
  filter: drop-shadow(0 0 16px rgba(255,215,0,.5));
}
.age-gate-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.age-gate-logo .logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}
.age-gate-logo .logo-accent { color: var(--neon); text-shadow: var(--neon-glow); }
.age-gate h2 {
  font-family: 'Orbitron', monospace;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.age-gate-sub {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.age-gate-sub strong { color: #fff; }
.age-gate-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.age-gate-yes {
  background: linear-gradient(135deg, var(--neon), #00cc66);
  color: #06060f !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  box-shadow: 0 0 20px rgba(0,255,136,.35);
}
.age-gate-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0,255,136,.6);
}
.age-gate-no {
  background: rgba(255,255,255,.05);
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}
.age-gate-no:hover {
  border-color: rgba(255,80,80,.4);
  color: #ff6666 !important;
}
.age-gate-legal {
  font-size: .72rem;
  color: var(--text-muted);
  opacity: .6;
  line-height: 1.6;
}
.age-gate-legal a { color: var(--neon); }

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col li a:hover { color: var(--neon); }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255,0,0,.15);
  border: 2px solid rgba(255,0,0,.4);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
  color: #ff4444;
  margin-top: 20px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-disclaimer { opacity: .6; }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #111126, #1a1a3a);
  border-top: 1px solid rgba(0,255,136,.2);
  padding: 18px 20px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -10px 40px rgba(0,0,0,.6);
}
.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.cookie-text i { color: var(--neon); font-size: 1.4rem; flex-shrink: 0; }
.cookie-text p { font-size: .85rem; color: var(--text-muted); }
.cookie-text a { color: var(--neon); }

.cookie-actions { display: flex; gap: 10px; }

.cookie-btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.cookie-accept {
  background: linear-gradient(135deg, var(--neon), #00cc66);
  color: #06060f;
  box-shadow: 0 0 15px rgba(0,255,136,.3);
}
.cookie-accept:hover { transform: translateY(-2px); box-shadow: 0 0 25px rgba(0,255,136,.5); }
.cookie-decline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.cookie-decline:hover { border-color: rgba(255,255,255,.2); color: #fff; }

/* ---------- Scroll animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Inner Pages Shared ---------- */
.page-hero {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,255,136,.08) 0%, transparent 55%),
    linear-gradient(135deg, #06060f 0%, #0d0d1f 100%);
  padding: 120px 0 70px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.page-content {
  padding: 70px 0 100px;
  background: var(--bg-dark);
}
.page-content .container {
  max-width: 860px;
}

.page-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neon);
  margin: 36px 0 14px;
}
.page-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 24px 0 10px;
}
.page-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: .92rem;
}
.page-content ul, .page-content ol {
  list-style: disc;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.page-content a { color: var(--neon); text-decoration: underline; }

/* ---------- Particles (CSS only) ---------- */
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  pointer-events: none;
}

@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .rating-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(6,6,15,.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    backdrop-filter: blur(20px);
  }
  .main-nav.open { display: flex; }
  .burger { display: flex; }

  .card-inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .card-left { flex-direction: row; min-width: auto; width: 100%; justify-content: space-between; }
  .card-right { width: 100%; }
  .play-btn { width: 100%; }
  .detail-grid { grid-template-columns: repeat(2,1fr); }

  .bonuses-grid { grid-template-columns: 1fr; }
  .rating-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-badge { top: 8px; right: 8px; font-size: .68rem; }
  .hero-stats { gap: 24px; }
  .disclaimer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.5rem; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
