/* JetTon Games - Lime on Black Theme */
/* SlotSpot.ru Casino Review Pages */

:root {
  /* Core Colors - Lime/Black Theme */
  --background: #0a0a0a;
  --background-secondary: #0f0f0f;
  --background-card: #141414;
  --background-elevated: #1a1a1a;
  
  /* Foreground Colors */
  --foreground: #ffffff;
  --foreground-muted: #a0a0a0;
  --foreground-secondary: #6b6b6b;
  
  /* Primary - Lime Green */
  --primary: #c8ff00;
  --primary-light: #d4ff33;
  --primary-dark: #a3cc00;
  --primary-hover: #b8ee00;
  --primary-glow: rgba(200, 255, 0, 0.4);
  --primary-glow-strong: rgba(200, 255, 0, 0.6);
  
  /* Accent Colors */
  --accent-green: #00ff88;
  --accent-green-glow: rgba(0, 255, 136, 0.4);
  --accent-gold: #ffd700;
  --accent-gold-light: #ffe033;
  --accent-gold-glow: rgba(255, 215, 0, 0.4);
  --accent-cyan: #00e5ff;
  --accent-cyan-glow: rgba(0, 229, 255, 0.4);
  --accent-pink: #ff0080;
  --accent-pink-glow: rgba(255, 0, 128, 0.4);
  
  /* Borders */
  --border: #2a2a2a;
  --border-light: #3a3a3a;
  --border-primary: rgba(200, 255, 0, 0.3);
  
  /* Status Colors */
  --success: #00ff88;
  --destructive: #ff4444;
  --warning: #ffaa00;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
  --gradient-card: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --gradient-glow: radial-gradient(ellipse at center top, rgba(200, 255, 0, 0.08) 0%, transparent 50%);
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Orbitron', monospace;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Spacing & Radius */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--background);
  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 Utilities */
.text-primary {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary-glow);
}

.text-muted {
  color: var(--foreground-muted);
}

.neon-text {
  text-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--primary-glow);
}

.neon-text-green {
  text-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--primary-glow);
  color: var(--primary);
}

.neon-text-gold {
  text-shadow: 0 0 10px var(--accent-gold-glow), 0 0 20px var(--accent-gold-glow);
  color: var(--accent-gold);
}

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

.header .container,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

.header .mobile-menu-btn {
  margin-left: auto;
}

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

.logo-icon {
  font-size: 1.5rem;
  margin-right: 0.25rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

/* Main content spacing below fixed header */
main {
  padding-top: 0;
}

.breadcrumbs {
  margin-top: 80px;
}

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

@media (min-width: 992px) {
  .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);
  text-shadow: 0 0 10px var(--primary-glow);
}

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

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  z-index: 200;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.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);
  background: rgba(200, 255, 0, 0.1);
}

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

.nav-dropdown-toggle:hover {
  color: var(--primary);
}

.nav-dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.2s;
}

.nav-vip {
  color: var(--accent-gold) !important;
  text-shadow: 0 0 10px var(--accent-gold-glow);
}

.nav-about {
  color: var(--foreground-muted);
}

.text-purple {
  color: #a855f7;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--foreground);
  border-radius: 1px;
  transition: all 0.3s;
}

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

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
  z-index: 99;
}

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

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

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

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

.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-family: inherit;
  font-size: inherit;
  cursor: pointer;
  text-align: left;
}

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

.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-secondary);
  font-size: 0.9rem;
}

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

/* Legacy mobile menu support */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 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);
}

/* Promo Badge in Header */
.promo-badge {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 255, 0, 0.1);
  border: 1px solid rgba(200, 255, 0, 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(--primary);
}

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

.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: var(--primary);
  color: var(--background);
  box-shadow: 0 0 25px var(--primary-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 0 40px var(--primary-glow-strong), 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);
  box-shadow: 0 0 20px var(--primary-glow);
}

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

/* ========================================
   HERO SECTION
======================================== */
.hero {
  padding: 2rem 1rem 3rem;
  background: var(--gradient-glow);
  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) 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;
}

.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;
  color: var(--primary);
}

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

/* ========================================
   STICKY CTA
======================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 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.5);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

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

.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.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(--accent-gold);
  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;
}

/* ========================================
   SECTIONS
======================================== */
.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;
  color: var(--primary);
}

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

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

/* ========================================
   TABLE OF CONTENTS
======================================== */
.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 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(200, 255, 0, 0.1);
  color: var(--primary);
}

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

/* ========================================
   PROMO BOX
======================================== */
.promo-box {
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.15), rgba(200, 255, 0, 0.05));
  border: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 2rem 0;
  box-shadow: 0 0 30px var(--primary-glow), inset 0 0 30px rgba(200, 255, 0, 0.05);
  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(200, 255, 0, 0.1), transparent);
  animation: promo-shine 4s ease-in-out infinite;
}

@keyframes promo-pulse {
  0%, 100% {
    box-shadow: 0 0 30px var(--primary-glow), inset 0 0 30px rgba(200, 255, 0, 0.05);
  }
  50% {
    box-shadow: 0 0 50px var(--primary-glow), 0 0 80px rgba(200, 255, 0, 0.2), inset 0 0 30px rgba(200, 255, 0, 0.08);
  }
}

@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(--primary);
  text-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow);
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(200, 255, 0, 0.1);
  border-radius: var(--radius);
  border: 1px dashed var(--primary);
  cursor: pointer;
  transition: all 0.3s;
}

.promo-box-code:hover {
  background: rgba(200, 255, 0, 0.2);
  transform: scale(1.05);
}

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

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

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

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

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

/* ========================================
   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: var(--primary);
  color: var(--background);
  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;
}

/* ========================================
   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(200, 255, 0, 0.08), rgba(200, 255, 0, 0.02));
  border: 1px solid var(--primary);
  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(--primary-glow);
}

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

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

/* ========================================
   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(200, 255, 0, 0.08);
  border-color: var(--primary);
}

.info-card-success {
  background: rgba(0, 255, 136, 0.08);
  border-color: var(--accent-green);
}

.info-card-warning {
  background: rgba(255, 170, 0, 0.08);
  border-color: var(--warning);
}

/* ========================================
   FEATURE GRID
======================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

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

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

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

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

.feature-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-value {
  font-size: 0.85rem;
  color: var(--foreground-muted);
}

/* ========================================
   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(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

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

/* ========================================
   FAQ SECTION
======================================== */
.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(200, 255, 0, 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;
}

/* ========================================
   SEE ALSO / RELATED LINKS
======================================== */
.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);
  transform: translateX(3px);
}

/* ========================================
   REVIEWS
======================================== */
.review-card {
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  font-weight: 700;
}

.review-name {
  font-weight: 600;
}

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

.review-rating {
  color: var(--accent-gold);
}

.review-text {
  color: var(--foreground-muted);
  line-height: 1.7;
}

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

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

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

.footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-col {
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

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

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

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-warning {
  background: rgba(255, 170, 0, 0.1);
  border: 1px solid rgba(255, 170, 0, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  font-size: 0.875rem;
  color: var(--foreground-muted);
  line-height: 1.6;
}

.footer-warning strong {
  color: var(--warning);
}

.highlight {
  color: var(--primary);
}

.highlight-gold {
  color: var(--accent-gold);
}

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

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center { text-align: center; }
.hidden { display: none; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--accent-gold); }
.text-green { color: var(--accent-green); }

/* Crypto Badge */
.crypto-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: rgba(200, 255, 0, 0.1);
  border: 1px solid rgba(200, 255, 0, 0.3);
  border-radius: 0.375rem;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}

/* Provider Tags */
.provider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.provider-tag {
  padding: 0.375rem 0.75rem;
  background: var(--background-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--foreground-muted);
  transition: all 0.2s;
}

.provider-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.payment-method {
  padding: 0.5rem 1rem;
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--foreground-muted);
}

/* License Badge */
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--accent-green);
  border-radius: var(--radius);
  color: var(--accent-green);
  font-size: 0.875rem;
}

/* Table Styles */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

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

.info-table th {
  color: var(--foreground-muted);
  font-weight: 500;
  font-size: 0.875rem;
}

.info-table td {
  color: var(--foreground);
}

.info-table tr:hover {
  background: rgba(200, 255, 0, 0.03);
}
