/* ============================================
   BELATRA GAMES REVIEW 2026
   Neon Retro-Arcade Theme
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Core palette */
  --bg-deep:        #0F051D;
  --bg-surface:     #1A0A2E;
  --bg-card:        #15082A;
  --neon-cyan:      #00F3FF;
  --neon-pink:      #FF00E6;
  --neon-cyan-dim:  rgba(0, 243, 255, 0.15);
  --neon-pink-dim:  rgba(255, 0, 230, 0.15);
  --text-primary:   #F0E6FF;
  --text-secondary: #A78FCC;
  --text-muted:     #6B5B8D;
  --gold:           #FFD700;

  /* Typography */
  --font-heading: 'Press Start 2P', monospace;
  --font-body:    'Outfit', sans-serif;

  /* Spacing */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: 4rem;

  /* Border radius */
  --radius: 8px;
  --radius-lg: 16px;

  /* Neon glow */
  --glow-cyan: 0 0 10px rgba(0, 243, 255, 0.4), 0 0 40px rgba(0, 243, 255, 0.15);
  --glow-pink: 0 0 10px rgba(255, 0, 230, 0.4), 0 0 40px rgba(255, 0, 230, 0.15);
  --glow-cyan-strong: 0 0 15px rgba(0, 243, 255, 0.6), 0 0 60px rgba(0, 243, 255, 0.25), 0 0 100px rgba(0, 243, 255, 0.1);
  --glow-pink-strong: 0 0 15px rgba(255, 0, 230, 0.6), 0 0 60px rgba(255, 0, 230, 0.25), 0 0 100px rgba(255, 0, 230, 0.1);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color 0.3s var(--ease-out), text-shadow 0.3s var(--ease-out);
}

a:hover {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-primary);
}

h1 { font-size: clamp(1.2rem, 3vw, 2rem); letter-spacing: 2px; }
h2 { font-size: clamp(1rem, 2.5vw, 1.5rem); letter-spacing: 1px; }
h3 { font-size: clamp(0.85rem, 2vw, 1.1rem); letter-spacing: 1px; }

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--gap-sm);
}

ul, ol {
  padding-left: var(--gap-md);
  margin-bottom: var(--gap-sm);
}

li {
  color: var(--text-secondary);
  margin-bottom: var(--gap-xs);
}

::selection {
  background: var(--neon-cyan);
  color: var(--bg-deep);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--neon-cyan), var(--neon-pink));
  border-radius: 4px;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gap-md);
}

.section {
  padding: var(--gap-xl) 0;
}

.text-cyan   { color: var(--neon-cyan); }
.text-pink   { color: var(--neon-pink); }
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }

.neon-underline {
  position: relative;
  display: inline-block;
}
.neon-underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  box-shadow: var(--glow-cyan);
  border-radius: 2px;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 5, 29, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 243, 255, 0.12);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 243, 255, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 var(--gap-md);
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-logo span {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

.nav-links {
  display: flex;
  gap: var(--gap-md);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-cyan);
  text-shadow: none;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 26px;
  height: 2px;
  background: var(--neon-cyan);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(15, 5, 29, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--gap-lg);
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid rgba(0, 243, 255, 0.15);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--gap-md) var(--gap-xl);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 243, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 0, 230, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: var(--gap-md);
  text-shadow: var(--glow-cyan-strong);
  animation: flicker 4s infinite alternate;
}

.hero h1 .highlight {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink-strong);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: var(--gap-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   NEON FLICKERING ANIMATION
   ============================================ */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: var(--glow-cyan-strong);
    opacity: 1;
  }
  20%, 24%, 55% {
    text-shadow: none;
    opacity: 0.85;
  }
}

@keyframes flicker-pink {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow: var(--glow-pink-strong);
    opacity: 1;
  }
  20%, 24%, 55% {
    text-shadow: none;
    opacity: 0.85;
  }
}

/* ============================================
   CSS-ONLY WHEEL OF FORTUNE
   ============================================ */
.wheel-container {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto var(--gap-lg);
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  border: 4px solid var(--neon-cyan);
  box-shadow: var(--glow-cyan-strong);
  animation: spin-wheel 20s linear infinite;
  overflow: hidden;
}

@keyframes spin-wheel {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.wheel-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  left: 50%;
  transform-origin: 0% 100%;
  clip-path: polygon(0% 100%, 100% 0%, 0% 0%);
}

.wheel-segment:nth-child(1) { background: rgba(0, 243, 255, 0.25); transform: rotate(0deg); }
.wheel-segment:nth-child(2) { background: rgba(255, 0, 230, 0.25); transform: rotate(45deg); }
.wheel-segment:nth-child(3) { background: rgba(0, 243, 255, 0.15); transform: rotate(90deg); }
.wheel-segment:nth-child(4) { background: rgba(255, 0, 230, 0.15); transform: rotate(135deg); }
.wheel-segment:nth-child(5) { background: rgba(0, 243, 255, 0.25); transform: rotate(180deg); }
.wheel-segment:nth-child(6) { background: rgba(255, 0, 230, 0.25); transform: rotate(225deg); }
.wheel-segment:nth-child(7) { background: rgba(0, 243, 255, 0.15); transform: rotate(270deg); }
.wheel-segment:nth-child(8) { background: rgba(255, 0, 230, 0.15); transform: rotate(315deg); }

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: var(--bg-deep);
  border: 3px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.wheel-pointer {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid var(--gold);
  z-index: 6;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

/* ============================================
   GEOMETRIC ARCADE SHAPES (Hero decoration)
   ============================================ */
.arcade-shapes {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.arcade-shape {
  position: absolute;
  border: 2px solid;
  opacity: 0.15;
  animation: float-shape 12s ease-in-out infinite;
}

.arcade-shape:nth-child(1) {
  width: 80px; height: 80px;
  border-color: var(--neon-cyan);
  top: 15%; left: 8%;
  animation-delay: 0s;
  transform: rotate(45deg);
}
.arcade-shape:nth-child(2) {
  width: 60px; height: 60px;
  border-color: var(--neon-pink);
  top: 25%; right: 12%;
  border-radius: 50%;
  animation-delay: -3s;
}
.arcade-shape:nth-child(3) {
  width: 100px; height: 100px;
  border-color: var(--neon-cyan);
  bottom: 20%; left: 5%;
  border-radius: 50%;
  animation-delay: -6s;
}
.arcade-shape:nth-child(4) {
  width: 50px; height: 50px;
  border-color: var(--neon-pink);
  bottom: 30%; right: 8%;
  transform: rotate(30deg);
  animation-delay: -9s;
}
.arcade-shape:nth-child(5) {
  width: 70px; height: 70px;
  border-color: var(--gold);
  top: 60%; left: 15%;
  animation-delay: -4s;
  transform: rotate(60deg);
}

@keyframes float-shape {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  50%      { transform: translateY(-25px) rotate(180deg); opacity: 0.25; }
}

/* ============================================
   MAGNETIC CTA BUTTONS
   ============================================ */
.btn-magnetic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.btn-magnetic::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: 0; bottom: 0;
  width: 300%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}

.btn-magnetic:hover::before {
  left: 100%;
}

.btn-magnetic:hover {
  box-shadow: var(--glow-cyan-strong), var(--glow-pink-strong);
  transform: scale(1.05);
}

.btn-magnetic--outline {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}
.btn-magnetic--outline:hover {
  background: var(--neon-cyan);
  color: var(--bg-deep);
  box-shadow: var(--glow-cyan-strong);
}

.btn-magnetic--pink {
  background: transparent;
  color: var(--neon-pink);
  border: 2px solid var(--neon-pink);
  box-shadow: var(--glow-pink);
}
.btn-magnetic--pink:hover {
  background: var(--neon-pink);
  color: var(--bg-deep);
  box-shadow: var(--glow-pink-strong);
}

/* ============================================
   NEON GLOW CARDS
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 243, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.card:hover {
  border-color: rgba(0, 243, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.08);
  transform: translateY(-4px);
}

.card--pink:hover {
  border-color: rgba(255, 0, 230, 0.3);
  box-shadow: 0 0 30px rgba(255, 0, 230, 0.08);
}

.card h3 {
  color: var(--neon-cyan);
  margin-bottom: var(--gap-sm);
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.3);
}

.card--pink h3 {
  color: var(--neon-pink);
  text-shadow: 0 0 8px rgba(255, 0, 230, 0.3);
}

.card p:last-child {
  margin-bottom: 0;
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap-lg);
}

.card-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* ============================================
   GAME CARDS (games.html)
   ============================================ */
.game-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(0, 243, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.game-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-6px);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 2px solid var(--neon-cyan);
  position: relative;
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
}

.game-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  color: var(--bg-deep);
  font-family: var(--font-heading);
  font-size: 0.55rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.game-card-body {
  padding: var(--gap-md);
}

.game-card-body h3 {
  color: var(--neon-cyan);
  margin-bottom: var(--gap-xs);
  font-size: 0.85rem;
}

.game-card-meta {
  display: flex;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-sm);
  flex-wrap: wrap;
}

.game-card-tag {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0, 243, 255, 0.3);
  color: var(--neon-cyan);
  font-weight: 500;
}

.game-card-tag--pink {
  border-color: rgba(255, 0, 230, 0.3);
  color: var(--neon-pink);
}

/* ============================================
   TIMELINE (index.html)
   ============================================ */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--neon-cyan), var(--neon-pink));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--gap-lg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: var(--glow-cyan);
}

.timeline-item:nth-child(even)::before {
  background: var(--neon-pink);
  box-shadow: var(--glow-pink);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--neon-cyan);
  margin-bottom: 4px;
}

.timeline-item:nth-child(even) .timeline-year {
  color: var(--neon-pink);
}

.timeline-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--gap-md);
  padding: var(--gap-lg) 0;
}

.stat-item {
  text-align: center;
  padding: var(--gap-md);
  background: var(--bg-card);
  border: 1px solid rgba(0, 243, 255, 0.1);
  border-radius: var(--radius);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ============================================
   PARTNERS / CASINO GRID
   ============================================ */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-lg);
}

.casino-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 243, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.casino-card:hover {
  border-color: var(--neon-pink);
  box-shadow: var(--glow-pink);
  transform: translateY(-4px);
}

.casino-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.3);
  margin-bottom: var(--gap-xs);
}

.casino-features {
  list-style: none;
  padding: 0;
  margin: var(--gap-sm) 0;
  text-align: left;
}

.casino-features li {
  font-size: 0.9rem;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.casino-features li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
}

.casino-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-family: var(--font-heading);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: var(--gap-sm);
}

.casino-badge--crypto {
  background: rgba(0, 243, 255, 0.12);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 243, 255, 0.3);
}

.casino-badge--fiat {
  background: rgba(255, 0, 230, 0.12);
  color: var(--neon-pink);
  border: 1px solid rgba(255, 0, 230, 0.3);
}

.casino-badge--hybrid {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* ============================================
   TECH FEATURES GRID
   ============================================ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap-lg);
}

.tech-item {
  background: var(--bg-card);
  border: 1px solid rgba(0, 243, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
  position: relative;
  overflow: hidden;
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--neon-cyan), var(--neon-pink));
}

.tech-icon {
  font-size: 2rem;
  margin-bottom: var(--gap-sm);
  display: block;
}

.tech-item h3 {
  color: var(--neon-cyan);
  margin-bottom: var(--gap-xs);
  font-size: 0.85rem;
}

/* ============================================
   JACKPOT SHOWCASE
   ============================================ */
.jackpot-highlight {
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.05), rgba(255, 0, 230, 0.05));
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--gap-xl) var(--gap-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jackpot-highlight::before,
.jackpot-highlight::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.jackpot-highlight::before {
  width: 300px; height: 300px;
  background: var(--neon-cyan);
  top: -100px; left: -100px;
}
.jackpot-highlight::after {
  width: 250px; height: 250px;
  background: var(--neon-pink);
  bottom: -80px; right: -80px;
}

.jackpot-amount {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.2);
  animation: pulse-gold 2s ease-in-out infinite;
  margin: var(--gap-md) 0;
}

@keyframes pulse-gold {
  0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.2); }
  50%      { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 80px rgba(255, 215, 0, 0.4); }
}

/* ============================================
   SECTION DIVIDER
   ============================================ */
.divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-pink), transparent);
  margin: var(--gap-xl) 0;
  opacity: 0.4;
}

/* ============================================
   CRITERIA LIST (partners.html)
   ============================================ */
.criteria-list {
  list-style: none;
  padding: 0;
  counter-reset: criteria;
}

.criteria-list li {
  counter-increment: criteria;
  padding: var(--gap-sm) var(--gap-md);
  padding-left: 60px;
  position: relative;
  margin-bottom: var(--gap-xs);
  background: var(--bg-card);
  border-radius: var(--radius);
  border-left: 3px solid var(--neon-cyan);
  font-size: 0.95rem;
}

.criteria-list li:nth-child(even) {
  border-left-color: var(--neon-pink);
}

.criteria-list li::before {
  content: counter(criteria);
  position: absolute;
  left: var(--gap-sm);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--neon-cyan);
}

.criteria-list li:nth-child(even)::before {
  color: var(--neon-pink);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid rgba(0, 243, 255, 0.1);
  padding: var(--gap-xl) 0 var(--gap-lg);
  text-align: center;
  background: rgba(15, 5, 29, 0.8);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gap-md);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  margin-bottom: var(--gap-sm);
  letter-spacing: 2px;
}

.footer-logo span {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--gap-md);
  margin-bottom: var(--gap-md);
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--neon-cyan);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { min-height: 70vh; }
  .card-grid, .card-grid--2, .casino-grid, .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  :root { font-size: 15px; }

  .hero { min-height: 60vh; padding-top: 100px; }
  .hero h1 { font-size: 1.1rem; }

  .section { padding: var(--gap-lg) 0; }

  .card-grid, .card-grid--2, .casino-grid, .tech-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .wheel-container {
    width: 200px;
    height: 200px;
  }

  .btn-magnetic {
    padding: 12px 28px;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  :root { font-size: 14px; }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .nav-logo { font-size: 0.65rem; }
}

/* ============================================
   PAGE-SPECIFIC: BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 90px;
  padding-bottom: var(--gap-sm);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
}
.breadcrumb a:hover {
  color: var(--neon-cyan);
}
.breadcrumb .sep {
  color: var(--text-muted);
  user-select: none;
}
.breadcrumb .current {
  color: var(--neon-cyan);
}

/* ============================================
   INTERNAL LINK STYLES
   ============================================ */
.int-link {
  color: var(--neon-cyan);
  border-bottom: 1px dashed rgba(0, 243, 255, 0.4);
  transition: border-color 0.3s, text-shadow 0.3s;
}
.int-link:hover {
  border-bottom-color: var(--neon-pink);
  text-shadow: 0 0 8px rgba(255, 0, 230, 0.4);
}

/* ============================================
   EXTERNAL LINK STYLES
   ============================================ */
.ext-link {
  color: var(--neon-pink);
  border-bottom: 1px dotted rgba(255, 0, 230, 0.4);
}
.ext-link:hover {
  border-bottom-color: var(--neon-cyan);
}

/* ============================================
   PROGRESS BAR / RATING VISUAL
   ============================================ */
.rating-bar {
  width: 100%;
  height: 6px;
  background: rgba(0, 243, 255, 0.1);
  border-radius: 3px;
  margin-top: 6px;
  margin-bottom: var(--gap-sm);
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  box-shadow: var(--glow-cyan);
  transition: width 1s var(--ease-out);
}

/* ============================================
   FEATURE COMPARISON TABLE
   ============================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--gap-md) 0;
  font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  color: var(--neon-cyan);
  letter-spacing: 1px;
  background: rgba(0, 243, 255, 0.05);
}

.comparison-table td {
  color: var(--text-secondary);
}

.comparison-table tr:hover td {
  background: rgba(0, 243, 255, 0.03);
}
