/* SlotSpot.ru - Static CSS */
/* Based on slotspot.ru/casinos/1win reference design */

/* CSS Variables */
: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;
  
  --destructive: #ef4444;
  
  --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%);
  
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Orbitron', monospace;
  --font-mono: 'JetBrains Mono', 'Fira Code', 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;
  padding-bottom: 80px;
}

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

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

svg {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

svg:not([width]):not([class*="section-icon"]) {
  width: 1em;
  height: 1em;
}

/* 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; }
}

/* Text Colors */
.text-primary { 
  color: var(--primary-light); 
  text-shadow: 0 0 10px var(--primary-glow);
}
.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-gold { 
  color: var(--neon-gold-light); 
  text-shadow: 0 0 10px var(--neon-gold-glow);
}

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

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

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

/* 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;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

.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,
.nav-link {
  color: var(--foreground-muted);
  transition: all 0.3s;
  position: relative;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

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

.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;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 200;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-content {
  padding: 0.5rem 0;
}

.nav-dropdown-link,
.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-link:hover,
.nav-dropdown-menu a:hover {
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.1);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

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

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

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

.mobile-menu-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--foreground-muted);
  border-bottom: 1px solid var(--border);
}

.mobile-menu-link:hover {
  color: var(--primary-light);
}

/* Mobile Menu Accordion */
.mobile-nav-section {
  border-bottom: 1px solid var(--border);
}

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

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

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

.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 {
  display: block;
  padding: 0.5rem 0;
  color: var(--foreground-muted);
  font-size: 0.9rem;
}

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

/* Promo Badge in Header */
.promo-badge {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
}

@media (min-width: 640px) {
  .promo-badge { display: flex; }
}

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

.promo-badge-code {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--neon-green-light);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 5rem 1rem 1rem;
  font-size: 0.875rem;
}

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

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

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

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

/* 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;
  text-decoration: none;
}

.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-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;
}

/* 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);
}

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

/* Slot Hero Section */
.slot-hero {
  padding: 2rem 0 3rem;
  background: radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.05) 30%, transparent 60%);
}

.slot-hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .slot-hero-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}

.slot-hero-image {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.slot-hero-image img {
  max-width: 140px;
  max-height: 100px;
  object-fit: contain;
}

.slot-hero-info {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .slot-hero-info {
    text-align: left;
  }
}

.slot-hero-info h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .slot-hero-info h1 {
    font-size: 2.5rem;
  }
}

.slot-hero-provider {
  color: var(--foreground-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

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

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

.slot-stat {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 0.5rem;
  text-align: center;
}

.slot-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.25rem;
}

.slot-stat-label {
  font-size: 0.7rem;
  color: var(--foreground-muted);
  text-transform: uppercase;
}

.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--foreground-muted);
  margin-top: 1rem;
}

/* Hero Section (for subpages) */
.hero {
  padding: 2rem 1rem 3rem;
  background: radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.06) 30%, transparent 60%);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--foreground) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--foreground-muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sticky CTA Bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-cta-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  padding: 4px;
}

.sticky-cta-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sticky-cta-name {
  font-weight: 700;
  font-size: 1rem;
  display: none;
}

@media (min-width: 640px) {
  .sticky-cta-name { display: block; }
}

.sticky-cta-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--neon-gold-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.sticky-cta-buttons {
  display: flex;
  gap: 0.5rem;
}

.sticky-cta-buttons .btn {
  padding: 0.625rem 1rem;
  font-size: 0.8rem;
}

@media (min-width: 640px) {
  .sticky-cta-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Content Container */
.content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section */
.section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

section[id] {
  scroll-margin-top: 100px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--foreground);
}

.section-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.section p {
  color: var(--foreground-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

/* 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:hover {
  border-color: var(--primary);
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* TOC */
.toc {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.toc-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  list-style: none;
}

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

.toc-list li {
  margin: 0;
}

.toc-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--foreground-muted);
  font-size: 0.875rem;
  transition: all 0.2s;
}

.toc-list a:hover {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-light);
}

.toc-list a::before {
  content: '\2192';
  color: var(--primary);
}

/* Verdict Box */
.verdict-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid var(--neon-green);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

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

@media (min-width: 768px) {
  .verdict-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.verdict-section h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.verdict-section ul {
  list-style: none;
  margin: 0;
}

.verdict-section li {
  padding: 0.375rem 0;
  color: var(--foreground-muted);
  font-size: 0.9rem;
}

.verdict-for h4 { color: var(--neon-green-light); }
.verdict-against h4 { color: var(--neon-gold-light); }

/* Facts Table */
.facts-table {
  width: 100%;
  border-collapse: collapse;
}

.facts-table tr {
  border-bottom: 1px solid var(--border);
}

.facts-table tr:last-child {
  border-bottom: none;
}

.facts-table td {
  padding: 0.875rem 0.5rem;
  font-size: 0.9rem;
}

.facts-table td:first-child {
  color: var(--foreground-muted);
  width: 40%;
}

.facts-table td:last-child {
  color: var(--foreground);
  font-weight: 500;
}

/* Bonus Conditions */
.bonus-conditions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.bonus-condition {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.bonus-condition-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.25rem;
}

.bonus-condition-label {
  font-size: 0.75rem;
  color: var(--foreground-muted);
  text-transform: uppercase;
}

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

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

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

.payment-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.payment-card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.payment-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.payment-card p {
  font-size: 0.75rem;
  color: var(--foreground-muted);
  margin: 0;
}

/* Registration Steps */
.reg-steps {
  display: grid;
  gap: 1rem;
}

.reg-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.reg-step-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--neon-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.reg-step h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.reg-step p {
  color: var(--foreground-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* Pros Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-col, .cons-col {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.pros-col {
  border: 1px solid var(--neon-green);
}

.cons-col {
  border: 1px solid var(--destructive);
}

.pros-col h4 {
  color: var(--neon-green-light);
  margin-bottom: 1rem;
}

.cons-col h4 {
  color: #f87171;
  margin-bottom: 1rem;
}

.pros-col ul, .cons-col ul {
  list-style: none;
}

.pros-col li, .cons-col li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.pros-col li:last-child, .cons-col li:last-child {
  border-bottom: none;
}

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

.features-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 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;
}

.features-list strong {
  display: block;
  margin-bottom: 0.25rem;
}

.features-list p {
  margin: 0;
  font-size: 0.875rem;
}

/* Promo Banner */
.promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
}

.promo-banner-label {
  color: var(--foreground-muted);
  font-size: 0.9rem;
}

.promo-banner-text {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
}

/* 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;
}

/* FAQ */
.faq {
  margin: 3rem 0;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(59, 130, 246, 0.05);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  color: var(--foreground-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
.footer {
  background: var(--background-secondary);
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  padding: 3rem 1rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.footer-about p {
  font-size: 0.875rem;
  color: var(--foreground-muted);
  margin-bottom: 1rem;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--foreground-secondary);
}

.footer-badge-18 {
  background: rgba(239, 68, 68, 0.2);
  color: var(--destructive);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--foreground-muted);
  transition: color 0.2s;
}

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

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

/* Disclaimer */
.disclaimer {
  margin: 3rem 0;
  padding: 1.5rem;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.disclaimer-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.disclaimer-badge-18 {
  background: rgba(239, 68, 68, 0.2);
  color: var(--destructive);
}

.disclaimer-text {
  font-size: 0.75rem;
  color: var(--foreground-secondary);
  line-height: 1.6;
}

/* Quick Pills */
.quick-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--foreground-muted);
  transition: all 0.2s;
}

.quick-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--foreground);
}

/* Mobile Grid */
.mobile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mobile-item {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.mobile-item-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.mobile-item h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.mobile-item p {
  font-size: 0.75rem;
  color: var(--foreground-muted);
  margin: 0;
}

/* Compare Table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  color: var(--foreground-muted);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.compare-table td:first-child {
  font-weight: 600;
}

.compare-table tr:first-child td {
  background: rgba(16, 185, 129, 0.1);
}

/* Start Steps */
.start-steps {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

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

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

.start-step:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.start-step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--neon-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 0.75rem;
}

.start-step h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.start-step p {
  font-size: 0.8rem;
  color: var(--foreground-muted);
  margin: 0;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.1));
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
}

/* ============================================
   MISSING COMPONENT STYLES
   ============================================ */

/* Promo Box */
/* Main Promo Box - Enhanced Visibility */
.promo-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.1));
  border: 3px solid var(--neon-green);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 2rem 0;
  box-shadow: 0 0 30px var(--neon-green-glow), inset 0 0 30px rgba(16, 185, 129, 0.1);
  position: relative;
  overflow: hidden;
  animation: promo-pulse 3s ease-in-out infinite;
}

.promo-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  animation: promo-shine 4s ease-in-out infinite;
}

@keyframes promo-pulse {
  0%, 100% { box-shadow: 0 0 30px var(--neon-green-glow), inset 0 0 30px rgba(16, 185, 129, 0.1); }
  50% { box-shadow: 0 0 50px var(--neon-green-glow), 0 0 80px rgba(16, 185, 129, 0.3), inset 0 0 30px rgba(16, 185, 129, 0.15); }
}

@keyframes promo-shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.promo-box-label {
  font-size: 0.9rem;
  color: var(--foreground-secondary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

.promo-box-code {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-green-light);
  text-shadow: 0 0 20px var(--neon-green-glow), 0 0 40px var(--neon-green-glow);
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius);
  border: 1px dashed var(--neon-green);
}

.promo-box-bonus {
  font-size: 1rem;
  color: var(--neon-gold-light);
  margin-top: 0.75rem;
  font-weight: 600;
  position: relative;
}

.promo-box-cta {
  margin-top: 1rem;
  position: relative;
}

/* Inline Promo Code - For text mentions */
.promo-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
  border: 2px solid var(--neon-green);
  border-radius: var(--radius);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--neon-green-light);
  text-shadow: 0 0 10px var(--neon-green-glow);
  box-shadow: 0 0 15px var(--neon-green-glow);
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-inline:hover {
  box-shadow: 0 0 25px var(--neon-green-glow);
  transform: scale(1.05);
}

.promo-inline svg {
  width: 14px;
  height: 14px;
}

/* Floating Promo Banner */
.promo-banner {
  background: linear-gradient(90deg, var(--neon-green), rgba(16, 185, 129, 0.8));
  color: #000;
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.promo-banner-code {
  background: rgba(0,0,0,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}

/* Section Promo Highlight */
.promo-highlight-section {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(16, 185, 129, 0.15));
  border-left: 4px solid var(--neon-green);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.promo-highlight-section .promo-icon {
  width: 48px;
  height: 48px;
  color: var(--neon-green-light);
  flex-shrink: 0;
}

.promo-highlight-section .promo-text {
  flex: 1;
  min-width: 200px;
}

.promo-highlight-section .promo-text h4 {
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.promo-highlight-section .promo-text p {
  color: var(--foreground-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.promo-highlight-section .promo-code-badge {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-green-light);
  text-shadow: 0 0 15px var(--neon-green-glow);
  background: rgba(16, 185, 129, 0.15);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--neon-green);
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-highlight-section .promo-code-badge:hover {
  box-shadow: 0 0 25px var(--neon-green-glow);
  transform: scale(1.05);
}

/* Steps List */
.steps-list {
  list-style: none;
  counter-reset: steps;
  padding: 0;
  margin: 1.5rem 0;
}

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

.steps-list li::before {
  content: counter(steps);
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--neon-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

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

.step-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

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

/* Check List */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

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

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

.check-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list li a {
  color: var(--primary);
  text-decoration: underline;
}

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

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

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

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--foreground-muted);
}

/* Bonus Grid */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.bonus-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.02));
  border: 1px solid var(--neon-green);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s;
}

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--neon-green-glow);
}

.bonus-value {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

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

/* Data Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--background-card);
  border-radius: var(--radius);
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 1rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  background: var(--background-elevated);
  color: var(--foreground-muted);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(59, 130, 246, 0.05);
}

/* Info Cards */
.info-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  margin: 1rem 0;
  border-left: 4px solid;
}

.info-card-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-card ul,
.info-card ol {
  margin: 0.5rem 0 0 1.25rem;
  padding: 0;
}

.info-card li {
  margin-bottom: 0.35rem;
}

.info-card-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--primary);
}

.info-card-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--neon-green);
}

.info-card-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--neon-gold);
}

.info-card-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: var(--destructive);
}

/* See Also Section */
.see-also {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: var(--background-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.see-also-title {
  font-size: 1rem;
  color: var(--foreground-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.see-also-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

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

.see-also-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--background-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: all 0.2s;
}

.see-also-link::before {
  content: "→";
  color: var(--primary);
}

.see-also-link:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateX(3px);
}

/* Hero Rating */
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.hero-rating-value {
  font-size: 2rem;
  font-weight: 800;
}

.hero-rating-stars {
  font-size: 1.5rem;
  color: var(--neon-gold-light);
}

/* Utility Classes */
.text-center { text-align: center; }
.hidden { display: none; }
.text-neon-cyan { color: var(--neon-cyan-light); }
.text-neon-green { color: var(--neon-green-light); }
.text-neon-gold { color: var(--neon-gold-light); }
.text-neon-purple { color: var(--neon-purple-light); }
.text-neon-pink { color: var(--neon-pink); }
