@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-VariableFont_opsz,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Italic-VariableFont_opsz,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Orbitron";
  src: url("/fonts/Orbitron-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("/fonts/BebasNeue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #0a0e1a;
  --background-secondary: #0b0f1a;
  --background-card: #1a1f2e;
  --background-elevated: #1e2433;
  --foreground: #f8fafc;
  --foreground-muted: #94a3b8;
  --foreground-secondary: #64748b;
  
  --primary: #3b82f6;
  --primary-light: #60a5fa;
  --primary-hover: #2563eb;
  --primary-glow: rgba(59, 130, 246, 0.4);
  
  --neon-green: #10b981;
  --neon-green-light: #34d399;
  --neon-green-glow: rgba(16, 185, 129, 0.4);
  --neon-purple: #8b5cf6;
  --neon-purple-light: #a78bfa;
  --neon-purple-glow: rgba(139, 92, 246, 0.4);
  --neon-cyan: #06b6d4;
  --neon-cyan-light: #22d3ee;
  --neon-cyan-glow: rgba(6, 182, 212, 0.4);
  --neon-gold: #f59e0b;
  --neon-gold-light: #fbbf24;
  --neon-gold-glow: rgba(245, 158, 11, 0.4);
  --neon-pink: #ec4899;
  --neon-pink-glow: rgba(236, 72, 153, 0.4);
  
  --border: #2a2d3a;
  --border-light: #3a3d4a;
  
  --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 25%, #2a1f4a 50%, #1a1f3a 75%, #0a0e1a 100%);
  --gradient-card: linear-gradient(145deg, rgba(26, 31, 46, 0.95) 0%, rgba(11, 15, 26, 0.98) 100%);
  --gradient-card-hover: linear-gradient(145deg, rgba(30, 36, 51, 0.98) 0%, rgba(15, 20, 30, 0.99) 100%);
  
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Orbitron', monospace;
  
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--gradient-hero);
  background-attachment: fixed;
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

.font-accent {
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
}

/* Text Colors with Neon Glow */
.text-primary { 
  color: var(--primary-light); 
  text-shadow: 0 0 10px var(--primary-glow), 0 0 20px rgba(59, 130, 246, 0.3);
}
.text-muted { color: var(--foreground-muted); }
.text-green { 
  color: var(--neon-green-light); 
  text-shadow: 0 0 10px var(--neon-green-glow);
}
.text-purple { 
  color: var(--neon-purple-light); 
  text-shadow: 0 0 10px var(--neon-purple-glow);
}
.text-cyan { 
  color: var(--neon-cyan-light); 
  text-shadow: 0 0 10px var(--neon-cyan-glow);
}
.text-gold { 
  color: var(--neon-gold-light); 
  text-shadow: 0 0 10px var(--neon-gold-glow);
}
.text-pink {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink-glow);
}

/* Neon Text Effects */
.neon-text {
  text-shadow: 0 0 10px var(--primary-glow),
               0 0 20px rgba(59, 130, 246, 0.5),
               0 0 40px rgba(59, 130, 246, 0.3);
}

.neon-text-green {
  text-shadow: 0 0 10px var(--neon-green-glow),
               0 0 20px rgba(16, 185, 129, 0.5),
               0 0 40px rgba(16, 185, 129, 0.3);
}

.neon-text-gold {
  text-shadow: 0 0 10px var(--neon-gold-glow),
               0 0 20px rgba(245, 158, 11, 0.5),
               0 0 40px rgba(245, 158, 11, 0.3);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--neon-purple-light), var(--neon-cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--neon-gold-light), #fcd34d, var(--neon-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Container === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 0.5rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-right .promo-banner {
  display: none;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .header-right .promo-banner {
    display: flex;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 0 20px var(--primary-glow);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--neon-purple));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 20px var(--primary-glow);
}

.nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav { display: flex; }
}

.nav > a {
  color: var(--foreground-muted);
  transition: all 0.3s;
  position: relative;
}

.nav > a:hover {
  color: var(--primary-light);
  text-shadow: 0 0 10px var(--primary-glow);
}

.nav > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
  transition: width 0.3s;
}

.nav > a:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground-muted);
  cursor: pointer;
  padding: 0.5rem 0;
  transition: all 0.3s;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus {
  color: var(--primary-light);
  text-shadow: 0 0 10px var(--primary-glow);
  outline: none;
}

.nav-dropdown-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.nav-dropdown-arrow {
  font-size: 0.7em;
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--foreground-muted);
  transition: all 0.2s;
  font-size: 0.9rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.1);
  text-shadow: 0 0 10px var(--primary-glow);
  outline: none;
}

.nav-dropdown-menu a::before {
  content: '›';
  margin-right: 0.5rem;
  color: var(--primary);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--foreground-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--primary-light);
}

.mobile-nav-section {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  color: var(--foreground);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.mobile-nav-section-title:hover {
  color: var(--primary-light);
}

.mobile-nav-section-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s;
}

.mobile-nav-section.active .mobile-nav-section-arrow {
  transform: rotate(180deg);
}

.mobile-nav-section-content {
  display: none;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
}

.mobile-nav-section.active .mobile-nav-section-content {
  display: block;
}

.mobile-nav-section-content a {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: none;
}

.mobile-nav-section-content a:last-child {
  border-bottom: none;
}

.mobile-nav > a {
  font-weight: 500;
}

.mobile-nav-vip {
  color: var(--neon-gold) !important;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--neon-purple));
  color: white;
  box-shadow: 0 0 25px var(--primary-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 40px var(--primary-glow), 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px) scale(1.02);
}

.btn-green {
  background: linear-gradient(135deg, var(--neon-green), #059669);
  color: white;
  box-shadow: 0 0 25px var(--neon-green-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-green:hover {
  box-shadow: 0 0 40px var(--neon-green-glow), 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px) scale(1.02);
}

.btn-gold {
  background: linear-gradient(135deg, var(--neon-gold), #d97706);
  color: white;
  box-shadow: 0 0 25px var(--neon-gold-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 0 40px var(--neon-gold-glow), 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px) scale(1.02);
}

.btn-purple {
  background: linear-gradient(135deg, var(--neon-purple), #6d28d9);
  color: white;
  box-shadow: 0 0 25px var(--neon-purple-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-purple:hover {
  box-shadow: 0 0 40px var(--neon-purple-glow), 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border-light);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  text-transform: none;
}

/* === Cards === */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .card {
    padding: 1.75rem;
  }
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 40px var(--primary-glow), 0 10px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-6px);
}

.card:hover::before {
  opacity: 1;
}

.card-neon-green:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 40px var(--neon-green-glow), 0 10px 40px rgba(0, 0, 0, 0.4);
}

.card-neon-green:hover::before {
  background: linear-gradient(90deg, transparent, var(--neon-green-glow), transparent);
}

.card-neon-purple:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 40px var(--neon-purple-glow), 0 10px 40px rgba(0, 0, 0, 0.4);
}

.card-neon-gold:hover {
  border-color: var(--neon-gold);
  box-shadow: 0 0 40px var(--neon-gold-glow), 0 10px 40px rgba(0, 0, 0, 0.4);
}

.card-static {
  transform: none !important;
}

.card-static:hover {
  transform: none !important;
}

/* === Badge === */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-primary {
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--neon-green-light);
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.badge-purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--neon-purple-light);
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--neon-gold-light);
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: var(--neon-cyan-light);
  border: 1px solid rgba(6, 182, 212, 0.4);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

/* === Hero Section === */
.hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.05) 30%, transparent 60%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--primary-light);
  margin-bottom: 2rem;
}

.hero-badge-icon {
  width: 16px;
  height: 16px;
  color: var(--primary-light);
}

/* Hero Title */
.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--foreground);
  letter-spacing: -0.02em;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  color: var(--foreground-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.0625rem;
    max-width: 580px;
  }
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-btn-play .btn-icon {
  width: 16px;
  height: 16px;
}

.hero-btn-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-btn-reviews .btn-icon-right {
  width: 16px;
  height: 16px;
}

/* Ghost Button Style */
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--foreground);
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Hero Features */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground-muted);
  font-size: 0.875rem;
}

.hero-feature-icon {
  width: 18px;
  height: 18px;
  color: var(--foreground-secondary);
}

.hero-feature-icon-star {
  color: var(--neon-gold);
}

@media (min-width: 768px) {
  .hero-features {
    gap: 3rem;
  }
}

/* === Grid === */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 480px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* === Slot Card === */
.slot-card {
  position: relative;
  overflow: hidden;
}

.slot-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--primary) 0%, var(--neon-purple) 50%, var(--neon-cyan) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.slot-card-image img.slot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pos-doghouse { object-position: 50% 75%; }
.pos-anubis   { object-position: 50% 20%; }
.pos-miami    { object-position: 50% 25%; }

.slot-card-image::after {
  pointer-events: none;
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
}

.slot-card-content {
  padding: 1.5rem;
}

.slot-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.slot-card-provider {
  color: var(--primary-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.slot-card-stats {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.slot-card-stat {
  font-size: 0.875rem;
  color: var(--foreground-muted);
}

.slot-card-stat span {
  color: var(--neon-green-light);
  font-weight: 700;
  text-shadow: 0 0 8px var(--neon-green-glow);
}

/* === Casino Card === */
.casino-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.casino-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.casino-card-logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--background-elevated), var(--background-card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--primary-light);
}

.casino-card-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.casino-card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--neon-gold-light);
  text-shadow: 0 0 10px var(--neon-gold-glow);
}

.casino-card-bonus {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.casino-card-bonus strong {
  color: var(--neon-green-light);
  font-size: 1.375rem;
  display: block;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 10px var(--neon-green-glow);
}

/* Promo Banner */
.promo-banner {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.promo-banner-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
}

.promo-banner-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: #1e3a8a;
  background: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

/* Floating Promo Banner */
.floating-promo {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(37, 99, 235, 0.4);
}

.floating-promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
}

.floating-promo-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
}

.floating-promo-code {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: #1e3a8a;
  background: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  letter-spacing: 0.08em;
}

.floating-promo-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-left: 1rem;
  transition: background 0.2s;
}

.floating-promo-close:hover {
  background: rgba(255,255,255,0.3);
}

.section-title-accent {
  font-family: 'Inter', var(--font-body), sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .section-title-accent {
    font-size: 1.8rem;
  }
}

/* === Section === */
.section {
  padding: 2rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 3rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .section-header {
    margin-bottom: 3.5rem;
  }
}

.section-header h2 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .section-header h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

.section-header p {
  color: var(--foreground-muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .section-header p {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

/* === Breadcrumbs === */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--foreground-muted);
}

.breadcrumbs a {
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--primary-light);
}

.breadcrumbs span {
  color: var(--foreground-secondary);
}

/* === Slot Page Hero === */
.slot-hero {
  padding: 1rem 0 4rem;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 40%, transparent 70%);
  position: relative;
}

.slot-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 26, 0.5) 100%);
  pointer-events: none;
}

.slot-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .slot-hero-content {
    grid-template-columns: 0.5fr 1fr;
  }
}

.slot-hero-image {
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .slot-hero-image {
    max-width: 350px;
    margin-left: auto;
    margin-right: 2rem;
  }
}

.slot-hero-info h1 {
  margin-bottom: 1rem;
}

.slot-hero-provider {
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.slot-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .slot-hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.slot-stat {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s;
}

.slot-stat:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.slot-stat-value {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--neon-green-light);
  text-shadow: 0 0 15px var(--neon-green-glow);
}

.slot-stat-label {
  font-size: 0.75rem;
  color: var(--foreground-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* === Slot Navigation === */
.slot-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.slot-nav a {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground-muted);
  transition: all 0.3s;
  border: 1px solid transparent;
}

.slot-nav a:hover {
  background: var(--background-card);
  color: var(--foreground);
  border-color: var(--border);
}

.slot-nav a.active {
  background: linear-gradient(135deg, var(--primary), var(--neon-purple));
  color: white;
  box-shadow: 0 0 20px var(--primary-glow);
}

/* === Review Card === */
.review-card {
  padding: 1.75rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.review-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--neon-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 0 0 20px var(--primary-glow);
}

.review-author {
  font-weight: 600;
  font-size: 1.0625rem;
}

.review-date {
  font-size: 0.8125rem;
  color: var(--foreground-muted);
}

.review-rating {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.review-rating .star {
  color: var(--neon-gold-light);
  text-shadow: 0 0 10px var(--neon-gold-glow);
}

.review-rating .star.empty {
  color: var(--border);
  text-shadow: none;
}

.review-text {
  color: var(--foreground-muted);
  line-height: 1.75;
  font-size: 1.0625rem;
}

/* === Demo Section === */
.demo-frame {
  aspect-ratio: 16/9;
  background: var(--gradient-card);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 0 60px var(--primary-glow), 0 20px 60px rgba(0, 0, 0, 0.5);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.demo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.demo-frame-icon {
  font-size: 5rem;
  color: var(--primary-light);
  text-shadow: 0 0 30px var(--primary-glow);
  position: relative;
  z-index: 1;
}

.demo-frame p {
  color: var(--foreground-muted);
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
}

/* === Features List === */
.features-list {
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list .icon {
  color: var(--neon-green-light);
  flex-shrink: 0;
  font-size: 1.25rem;
  text-shadow: 0 0 10px var(--neon-green-glow);
}

.features-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.features-list p {
  color: var(--foreground-muted);
  font-size: 0.9375rem;
}

/* === Info Box === */
.info-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.info-box-green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border-color: rgba(16, 185, 129, 0.3);
}

.info-box-gold {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border-color: rgba(245, 158, 11, 0.3);
}

/* === Stats Grid === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-item:hover {
  border-color: var(--primary);
  box-shadow: 0 0 25px var(--primary-glow);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-light);
  text-shadow: 0 0 15px var(--primary-glow);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--foreground-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === Content Sections === */
.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.content-section h3 {
  margin: 2rem 0 1rem;
  color: var(--primary-light);
}

.content-section p {
  color: var(--foreground-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}

.content-section ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.content-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--foreground-muted);
}

.content-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon-green-light);
  text-shadow: 0 0 8px var(--neon-green-glow);
}

/* === Footer === */
.footer {
  background: var(--background-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4,
.footer-links h4 {
  margin-bottom: 1.25rem;
  color: var(--foreground);
  font-size: 1.125rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a,
.footer-links a {
  color: var(--foreground-muted);
  transition: all 0.2s;
}

.footer-col a:hover,
.footer-links a:hover {
  color: var(--primary-light);
  text-shadow: 0 0 10px var(--primary-glow);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand p {
  color: var(--foreground-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links h4 {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--foreground-muted);
  font-size: 0.875rem;
}

.footer-warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--neon-gold-light);
  font-size: 0.9375rem;
}

/* === Utilities === */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

/* === Animations === */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 25px var(--primary-glow); }
  50% { box-shadow: 0 0 50px var(--primary-glow), 0 0 80px rgba(59, 130, 246, 0.3); }
}

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

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* === 18+ Warning === */
.age-warning {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-card);
  border: 1px solid var(--neon-gold);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  z-index: 50;
  box-shadow: 0 0 25px var(--neon-gold-glow), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.age-warning-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--neon-gold), #d97706);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

/* === Highlight Text === */
.highlight {
  color: var(--primary-light);
  text-shadow: 0 0 10px var(--primary-glow);
}

.highlight-green {
  color: var(--neon-green-light);
  text-shadow: 0 0 10px var(--neon-green-glow);
}

.highlight-gold {
  color: var(--neon-gold-light);
  text-shadow: 0 0 10px var(--neon-gold-glow);
}

/* === Divider === */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: 2rem 0;
}

/* === Neon Border === */
.neon-border {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow), inset 0 0 15px rgba(59, 130, 246, 0.1);
}

.neon-border-green {
  border-color: var(--neon-green);
  box-shadow: 0 0 15px var(--neon-green-glow), inset 0 0 15px rgba(16, 185, 129, 0.1);
}

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
}

.cta-section h3 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--foreground-muted);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

/* === FAQ Section === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.faq-item[open] {
  border-color: var(--neon-green);
  box-shadow: 0 0 20px var(--neon-green-glow);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--foreground);
  list-style: none;
  transition: all 0.3s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--primary-light);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--neon-green-light);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--foreground-muted);
  line-height: 1.7;
  animation: faq-fade-in 0.3s ease;
}

.faq-answer p {
  margin-bottom: 0.75rem;
}

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

.faq-answer ul,
.faq-answer ol {
  color: var(--foreground-muted);
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

@keyframes faq-fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Related Slots Section === */
.related-slots {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-slots-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.related-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .related-slots-grid {
    grid-template-columns: 1fr;
  }
}

.related-slot-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.related-slot-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}

.related-slot-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.related-slot-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.related-slot-info p {
  font-size: 0.85rem;
  color: var(--foreground-muted);
}

/* === Lazy Loading === */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
  opacity: 1;
}

/* === Breadcrumbs Schema Style === */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--foreground-muted);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--primary-light);
}

.breadcrumbs-separator {
  color: var(--foreground-secondary);
}

.breadcrumbs-current {
  color: var(--foreground);
}

/* === VIP Club Section === */
.vip-section {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 50%, rgba(139, 92, 246, 0.1) 100%);
  border: 2px solid var(--neon-gold);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vip-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  animation: vip-glow 4s ease-in-out infinite;
}

@keyframes vip-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.vip-crown {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 20px var(--neon-gold-glow));
}

.vip-title {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--neon-gold-light);
  text-shadow: 0 0 20px var(--neon-gold-glow), 0 0 40px rgba(245, 158, 11, 0.3);
  margin-bottom: 1rem;
  position: relative;
}

.vip-subtitle {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  position: relative;
}

.vip-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  position: relative;
}

.vip-benefit {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.vip-benefit:hover {
  border-color: var(--neon-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.vip-benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.vip-benefit h4 {
  color: var(--neon-gold-light);
  margin-bottom: 0.5rem;
}

.vip-benefit p {
  font-size: 0.9rem;
  color: var(--foreground-muted);
}

/* === Contact Form === */
.contact-form-section {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--foreground-secondary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* === Post-Registration Bonus Block === */
.bonus-block {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(34, 197, 94, 0.1) 100%);
  border: 2px solid var(--neon-green);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .bonus-block {
    padding: 2.5rem;
  }
}

.bonus-block::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .bonus-header {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.bonus-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 15px var(--neon-green-glow));
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .bonus-icon {
    font-size: 3rem;
  }
}

.bonus-header-text h3 {
  color: var(--neon-green-light);
  font-size: 1.25rem;
  text-shadow: 0 0 15px var(--neon-green-glow);
  line-height: 1.3;
}

@media (min-width: 640px) {
  .bonus-header-text h3 {
    font-size: 1.75rem;
  }
}

.bonus-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .bonus-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}

.bonus-step {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .bonus-step {
    padding: 1.5rem;
    gap: 1rem;
  }
}

.bonus-step-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--neon-green), #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--neon-green-glow);
}

@media (min-width: 640px) {
  .bonus-step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

.bonus-step-content h4 {
  margin-bottom: 0.5rem;
}

.bonus-step-content p {
  color: var(--foreground-muted);
  font-size: 0.9rem;
}

.bonus-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .bonus-amounts {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.bonus-amount {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius);
  padding: 0.75rem 0.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .bonus-amount {
    padding: 1rem;
  }
}

.bonus-amount-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neon-green-light);
  text-shadow: 0 0 10px var(--neon-green-glow);
}

@media (min-width: 640px) {
  .bonus-amount-value {
    font-size: 1.75rem;
  }
}

.bonus-amount-label {
  font-size: 0.75rem;
  color: var(--foreground-muted);
}

@media (min-width: 640px) {
  .bonus-amount-label {
    font-size: 0.85rem;
  }
}

/* === Crypto Section === */
.crypto-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid var(--neon-purple);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.crypto-header {
  text-align: center;
  margin-bottom: 2rem;
}

.crypto-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 15px var(--neon-purple-glow));
}

.crypto-header h3 {
  color: var(--neon-purple-light);
  font-size: 1.75rem;
  text-shadow: 0 0 15px var(--neon-purple-glow);
}

.crypto-coins {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.crypto-coin {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 120px;
  transition: all 0.3s ease;
}

.crypto-coin:hover {
  border-color: var(--neon-purple);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.crypto-coin-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.crypto-coin-name {
  font-weight: 600;
  color: var(--foreground);
}

.crypto-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.crypto-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius);
}

.crypto-benefit-icon {
  font-size: 1.5rem;
  color: var(--neon-green-light);
}

.crypto-benefit span {
  color: var(--foreground);
}

/* === Promo Popup === */
#promo-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.promo-popup {
  position: relative;
  max-width: 500px;
  width: 100%;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.promo-popup img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px var(--primary-glow);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-popup img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 60px var(--neon-green-glow);
}

.promo-popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--background-card);
  border: 2px solid var(--border);
  color: var(--foreground);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.promo-popup-close:hover {
  background: var(--neon-purple);
  border-color: var(--neon-purple);
  transform: rotate(90deg);
}

/* === Popular Slots Grid === */
.popular-slots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

@media (max-width: 1024px) {
  .popular-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .popular-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.popular-slot-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.popular-slot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.popular-slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popular-slot-item:hover .popular-slot-overlay {
  opacity: 1;
}

.popular-slot-item:hover img {
  transform: scale(1.05);
}

.popular-slot-btn {
  background: var(--neon-green);
  color: #000;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.popular-slot-btn:hover {
  background: var(--neon-green-light);
  transform: scale(1.05);
}
/* Quick Navigation */
.quick-nav {
  margin: 3rem 0;
}

.quick-nav-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .quick-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .quick-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quick-nav-item {
  display: flex;
  gap: 0.75rem;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all 0.3s;
}

.quick-nav-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.quick-nav-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-nav-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-light);
}

.quick-nav-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.quick-nav-item:hover h3 {
  color: var(--primary-light);
}

.quick-nav-content p {
  font-size: 0.875rem;
  color: var(--foreground-muted);
  margin-bottom: 0;
}