/* ========================================
   POKERDOM CASINO STYLES - PREMIUM DESIGN
   Bright Casino Aesthetic with Neon Effects
======================================== */

:root {
  /* PokerDom Brand Colors - BRIGHTER */
  --primary: #00ff88;
  --primary-hover: #00e67a;
  --primary-dark: #00cc6a;
  --primary-glow: rgba(0, 255, 136, 0.5);
  --primary-glow-strong: rgba(0, 255, 136, 0.8);
  --primary-light: rgba(0, 255, 136, 0.12);
  --primary-15: rgba(0, 255, 136, 0.18);
  
  /* Secondary Accent - Cyan */
  --secondary: #00e5ff;
  --secondary-glow: rgba(0, 229, 255, 0.5);
  
  /* Backgrounds - Deep with color tints */
  --background: #050510;
  --background-secondary: #080816;
  --background-elevated: #0f0f22;
  --background-card: rgba(15, 15, 35, 0.85);
  --background-glass: rgba(15, 20, 40, 0.7);
  
  /* Text Colors */
  --foreground: #ffffff;
  --foreground-muted: #c0c5d8;
  --foreground-secondary: #8890a8;
  
  /* Accent Colors - BRIGHTER */
  --accent-gold: #ffd500;
  --accent-gold-light: #ffe44d;
  --accent-gold-glow: rgba(255, 213, 0, 0.6);
  --accent-red: #ff4d6a;
  --accent-purple: #bf5fff;
  --accent-purple-glow: rgba(191, 95, 255, 0.5);
  --accent-blue: #4d9fff;
  --warning: #ffaa00;
  --destructive: #ff4757;
  
  /* Borders */
  --border: rgba(0, 255, 136, 0.25);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-glass: rgba(255, 255, 255, 0.1);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00e5ff 100%);
  --gradient-gold: linear-gradient(135deg, #ffd500 0%, #ff9500 100%);
  --gradient-purple: linear-gradient(135deg, #bf5fff 0%, #8b5cf6 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a18 0%, #050510 100%);
  --gradient-hero: linear-gradient(180deg, rgba(0, 255, 136, 0.08) 0%, transparent 60%);
  
  /* Spacing & Radius */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  /* Fonts */
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Orbitron', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Shadows */
  --shadow-glow: 0 0 40px var(--primary-glow);
  --shadow-glow-strong: 0 0 60px var(--primary-glow-strong);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.6);
}

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

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

body {
  font-family: var(--font-base);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 100% 60% at 50% -10%, rgba(0, 255, 136, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 30%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 0% 70%, rgba(191, 95, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.content-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
}

/* Neon Text Effects */
.neon-text {
  text-shadow: 0 0 10px var(--primary-glow), 0 0 30px var(--primary-glow), 0 0 60px var(--primary-glow);
  color: var(--primary);
}

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

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

/* Glass Effect */
.glass {
  background: var(--background-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
}

/* ========================================
   HEADER - RESPONSIVE
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  opacity: 0.6;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  min-height: 56px;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0.875rem 0;
    min-height: 64px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }
}

.logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

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

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

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

.nav > a {
  color: var(--foreground-muted);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
}

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

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

.text-purple {
  color: var(--accent-purple);
  text-shadow: 0 0 10px var(--accent-purple-glow);
}

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

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

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

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

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

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

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

.nav-dropdown-menu a:hover {
  color: var(--primary);
  background: var(--primary-light);
  padding-left: 1.25rem;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 16, 0.98);
  backdrop-filter: blur(20px);
  padding: 1rem;
  overflow-y: auto;
  z-index: 999;
}

@media (min-width: 768px) {
  .mobile-nav {
    top: 64px;
  }
}

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

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

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

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

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

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

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

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

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

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

.mobile-nav-section-content a {
  display: block;
  padding: 0.75rem 0;
  color: var(--foreground-secondary);
  font-size: 0.9rem;
}

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

/* ========================================
   BREADCRUMBS - RESPONSIVE
======================================== */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--foreground-secondary);
  margin-top: 70px;
  padding: 1rem 1rem;
  background: rgba(10, 10, 20, 0.5);
  border-bottom: 1px solid var(--border-glass);
}

@media (min-width: 768px) {
  .breadcrumbs {
    margin-top: 80px;
    padding: 1.25rem 1.5rem;
    font-size: 0.875rem;
  }
}

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

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

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

.breadcrumbs-current {
  color: var(--primary);
  font-weight: 500;
}

/* ========================================
   BUTTONS - RESPONSIVE
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

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

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

.btn-primary {
  background: var(--gradient-primary);
  color: #000;
  box-shadow: 0 4px 25px var(--primary-glow), 0 0 50px var(--primary-glow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px var(--primary-glow-strong), 0 0 80px var(--primary-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: inset 0 0 25px var(--primary-light);
}

.btn-secondary:hover {
  background: var(--primary-15);
  box-shadow: 0 0 40px var(--primary-glow), inset 0 0 30px var(--primary-light);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: 0 4px 25px var(--accent-gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 50px var(--accent-gold-glow);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
  }
}

/* Pulse Animation */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 25px var(--primary-glow), 0 0 50px var(--primary-glow); }
  50% { box-shadow: 0 4px 40px var(--primary-glow-strong), 0 0 80px var(--primary-glow-strong); }
}

.btn-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ========================================
   HERO SECTION - RESPONSIVE
======================================== */
.hero {
  position: relative;
  text-align: center;
  padding: 2rem 1rem 3rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 3rem 1.5rem 4rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 4rem 2rem 5rem;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(191, 95, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(0, 229, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 229, 255, 0.1) 100%);
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
  box-shadow: 0 0 30px var(--primary-glow);
  animation: pulse-glow 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .hero-badge {
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.hero-title {
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--foreground) 0%, var(--foreground) 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--foreground-muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-subtitle {
    margin-bottom: 2rem;
  }
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: var(--background-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .hero-rating {
    padding: 1rem 2rem;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.hero-rating-value {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-rating-stars {
  color: var(--accent-gold);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  text-shadow: 0 0 15px var(--accent-gold-glow);
}

.hero-rating-text {
  font-size: 0.75rem;
  color: var(--foreground-secondary);
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-rating-text {
    width: auto;
    border-left: 1px solid var(--border-glass);
    padding-left: 1rem;
    margin-left: 0.5rem;
    font-size: 0.875rem;
  }
}

/* Casino Logo */
.casino-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .casino-logo {
    margin-bottom: 1rem;
  }
}

.casino-logo-text {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 25px var(--primary-glow));
  letter-spacing: 0.1em;
}

/* ========================================
   PROMO BOX - RESPONSIVE & BRIGHTER
======================================== */
.promo-box {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 20, 40, 0.95) 0%, rgba(20, 25, 50, 0.9) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  margin: 1.5rem auto;
  max-width: 100%;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 0 60px var(--primary-glow),
    0 0 120px rgba(0, 255, 136, 0.15),
    inset 0 0 60px rgba(0, 255, 136, 0.05);
  overflow: hidden;
}

@media (min-width: 480px) {
  .promo-box {
    padding: 2rem;
    max-width: 450px;
  }
}

@media (min-width: 768px) {
  .promo-box {
    padding: 2.5rem;
    max-width: 500px;
    margin: 2rem auto;
  }
}

.promo-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 255, 136, 0.15), transparent, rgba(0, 229, 255, 0.1), transparent);
  animation: rotate-glow 8s linear infinite;
  opacity: 0.6;
}

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

.promo-box > * {
  position: relative;
  z-index: 1;
}

.promo-box-label {
  font-size: 0.7rem;
  color: var(--foreground-secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .promo-box-label {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}

.promo-box-code {
  font-family: var(--font-accent);
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 25px var(--primary-glow));
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
}

.promo-box-code:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 40px var(--primary-glow-strong));
}

.promo-box-promocode {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 213, 0, 0.15);
  border: 2px dashed var(--accent-gold);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.promo-box-promocode:hover {
  background: rgba(255, 213, 0, 0.25);
  transform: scale(1.03);
}

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

.promo-box-promocode-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-shadow: 0 0 20px var(--accent-gold-glow);
}

.promo-box-bonus {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 0 25px var(--accent-gold-glow);
}

.promo-box-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .promo-box-features {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.promo-feature {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--foreground-muted);
}

@media (min-width: 768px) {
  .promo-feature {
    font-size: 0.875rem;
    gap: 0.5rem;
  }
}

.promo-feature-icon {
  color: var(--primary);
  font-weight: 700;
}

.promo-box-cta {
  margin-top: 0.75rem;
}

/* ========================================
   CARDS - RESPONSIVE
======================================== */
.card {
  position: relative;
  background: linear-gradient(135deg, var(--background-card) 0%, rgba(20, 25, 45, 0.7) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  height: 100%;
}

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

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-elevated);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  box-shadow: 0 8px 25px var(--primary-glow);
}

@media (min-width: 768px) {
  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}

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

@media (min-width: 768px) {
  .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

.card-text {
  color: var(--foreground-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .card-text {
    font-size: 0.95rem;
  }
}

/* Features Grid - Responsive */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

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

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

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

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

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

@media (min-width: 768px) {
  .stat-card {
    padding: 1.5rem 1.25rem;
  }
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

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

.stat-value {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--foreground-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
}

/* ========================================
   CONTENT SECTIONS
======================================== */
.section {
  padding: 2.5rem 0;
}

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

.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 12px var(--primary-glow));
}

@media (min-width: 768px) {
  .section-icon {
    font-size: 1.75rem;
  }
}

/* Quick Links - Responsive */
.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

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

@media (min-width: 768px) {
  .quick-links {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }
}

.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground-muted);
  font-weight: 500;
  font-size: 0.8rem;
  text-align: center;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .quick-link {
    padding: 1.25rem 0.75rem;
    font-size: 0.85rem;
  }
}

.quick-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--primary-glow);
}

.quick-link-icon {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .quick-link-icon {
    font-size: 1.5rem;
  }
}

/* Info Box - Responsive */
.info-box {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 229, 255, 0.05) 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .info-box {
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
  }
}

.info-box-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 0.95rem;
}

.info-box-text {
  color: var(--foreground-muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* Trust Badges - Responsive */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

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

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  text-align: center;
}

.trust-badge-icon {
  font-size: 1.75rem;
  filter: drop-shadow(0 0 12px var(--primary-glow));
}

@media (min-width: 768px) {
  .trust-badge-icon {
    font-size: 2rem;
  }
}

.trust-badge-text {
  font-size: 0.7rem;
  color: var(--foreground-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .trust-badge-text {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
}

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

@media (min-width: 768px) {
  .toc {
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
  }
}

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

.toc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

@media (min-width: 640px) {
  .toc-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

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

.toc-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  color: var(--foreground-muted);
  font-size: 0.85rem;
  transition: all 0.2s;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.toc-item:hover {
  color: var(--primary);
  background: var(--primary-light);
  transform: translateX(4px);
}

.toc-arrow {
  color: var(--primary);
  font-size: 0.75rem;
}

/* FAQ - Responsive */
.faq-section {
  margin: 2rem 0;
}

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

@media (min-width: 768px) {
  .faq-item {
    margin-bottom: 1rem;
  }
}

.faq-item:hover {
  border-color: rgba(0, 255, 136, 0.4);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
}

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

@media (min-width: 768px) {
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
}

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

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s;
  font-weight: 300;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

@media (min-width: 768px) {
  .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
}

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

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

@media (min-width: 768px) {
  .pros-cons {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

@media (min-width: 768px) {
  .pros, .cons {
    padding: 2rem;
  }
}

.pros {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.12) 0%, rgba(0, 229, 255, 0.06) 100%);
  border: 1px solid var(--primary);
}

.cons {
  background: linear-gradient(135deg, rgba(255, 77, 106, 0.12) 0%, rgba(255, 71, 87, 0.06) 100%);
  border: 1px solid var(--accent-red);
}

.pros h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cons h4 {
  color: var(--accent-red);
  margin-bottom: 1rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .pros h4, .cons h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

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

.pros li, .cons li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--foreground-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .pros li, .cons li {
    padding: 0.625rem 0;
    padding-left: 2rem;
    font-size: 0.9rem;
  }
}

.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: 700;
}

/* Bonus Table - Responsive */
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .bonus-table {
    margin: 2rem 0;
    font-size: 0.95rem;
  }
}

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

@media (min-width: 768px) {
  .bonus-table th,
  .bonus-table td {
    padding: 1rem 1.25rem;
  }
}

.bonus-table th {
  background: var(--background-elevated);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bonus-table td {
  background: var(--background-card);
}

.bonus-table tr:hover td {
  background: var(--primary-light);
}

/* Payment Methods - Responsive */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .payment-methods {
    gap: 0.75rem;
    margin: 2rem 0;
  }
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.875rem;
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .payment-badge {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    gap: 0.5rem;
  }
}

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

/* Steps - Responsive */
.steps {
  margin: 2rem 0;
}

.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.25rem;
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .step {
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.step:hover {
  border-color: var(--primary);
  transform: translateX(6px);
  box-shadow: -6px 0 30px var(--primary-glow);
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px var(--primary-glow);
}

@media (min-width: 768px) {
  .step-number {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

.step-content h4 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .step-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}

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

@media (min-width: 768px) {
  .step-content p {
    font-size: 0.95rem;
  }
}

/* Sticky CTA - Responsive */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 16, 0.96);
  backdrop-filter: blur(20px);
  border-top: 2px solid var(--primary);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
  box-shadow: 0 -10px 50px rgba(0, 255, 136, 0.2);
}

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

.sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

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

@media (max-width: 480px) {
  .sticky-cta-info {
    display: none;
  }
}

.sticky-cta-name {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sticky-cta-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.sticky-cta-rating svg {
  filter: drop-shadow(0 0 5px var(--accent-gold-glow));
}

.sticky-cta-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .sticky-cta-buttons {
    width: auto;
    justify-content: flex-end;
  }
}

/* Promo Inline - Responsive */
.promo-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.875rem;
  background: linear-gradient(135deg, rgba(255, 213, 0, 0.15) 0%, rgba(255, 149, 0, 0.1) 100%);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-gold);
  cursor: pointer;
  transition: all 0.3s;
}

.promo-inline:hover {
  background: rgba(255, 213, 0, 0.25);
  box-shadow: 0 0 25px var(--accent-gold-glow);
}

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

/* Disclaimer - Responsive */
.disclaimer {
  background: rgba(20, 20, 40, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 2.5rem 0 1.5rem;
}

@media (min-width: 768px) {
  .disclaimer {
    padding: 1.5rem;
    margin: 3rem 0 2rem;
  }
}

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

.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
}

.disclaimer-badge-18 {
  background: rgba(255, 77, 106, 0.2);
  color: var(--accent-red);
  border: 1px solid rgba(255, 77, 106, 0.4);
}

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

@media (min-width: 768px) {
  .disclaimer-text {
    font-size: 0.75rem;
  }
}

/* Footer - Responsive & Premium */
.footer {
  background: linear-gradient(180deg, var(--background-secondary) 0%, rgba(5, 5, 12, 1) 100%);
  border-top: 2px solid var(--primary);
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
    margin-top: 4rem;
  }
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-glass);
}

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

.footer-logo .logo {
  font-size: 1.5rem;
}

.footer-logo-tagline {
  font-size: 0.8rem;
  color: var(--foreground-secondary);
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-promo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 213, 0, 0.1);
  border: 1px dashed var(--accent-gold);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-gold);
  cursor: pointer;
  transition: all 0.3s;
}

.footer-promo:hover {
  background: rgba(255, 213, 0, 0.2);
}

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

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

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

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col h4 span {
  font-size: 1rem;
}

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

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

.footer-col ul a {
  font-size: 0.85rem;
  color: var(--foreground-muted);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

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

.footer-col ul a::before {
  content: '→';
  font-size: 0.7rem;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.2s;
}

.footer-col ul a:hover::before {
  opacity: 1;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.875rem;
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--foreground-muted);
}

.footer-badge-icon {
  font-size: 1rem;
}

.footer-warning {
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.1) 0%, rgba(255, 77, 106, 0.05) 100%);
  border: 1px solid rgba(255, 170, 0, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 2rem 0;
  font-size: 0.8rem;
  color: var(--foreground-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .footer-warning {
    padding: 1.5rem;
    margin: 2.5rem 0;
    font-size: 0.85rem;
  }
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-glass);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--foreground-secondary);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    font-size: 0.8rem;
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  color: var(--foreground-secondary);
  transition: color 0.2s;
}

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

/* Utilities */
.mb-4 { margin-bottom: 1rem; }
.text-muted { color: var(--foreground-muted); }
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }

/* Review Cards */
.review-card {
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.review-card:hover {
  border-color: rgba(0, 255, 136, 0.3);
}

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

.review-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #000;
  font-weight: 700;
  flex-shrink: 0;
}

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

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

.review-rating {
  margin-left: auto;
  color: var(--accent-gold);
  text-shadow: 0 0 10px var(--accent-gold-glow);
}

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

/* Advantage List for PokerDom */
.advantage-list {
  margin: 2rem 0;
}

.advantage-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.advantage-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.advantage-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.advantage-content h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

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

/* Sections Grid */
.sections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .sections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.section-card {
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .section-card {
    padding: 2rem;
  }
}

.section-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.section-card p {
  color: var(--foreground-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.section-card ul {
  list-style: none;
  margin-top: 1rem;
}

.section-card li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--foreground-muted);
  font-size: 0.875rem;
}

.section-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Cross-Links Section */
.cross-links {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(255, 213, 0, 0.03) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.cross-links::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold), var(--primary));
}

@media (min-width: 768px) {
  .cross-links {
    padding: 2rem;
    margin: 3rem 0;
  }
}

.cross-links-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .cross-links-title {
    font-size: 1.25rem;
  }
}

.cross-links-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.75rem !important;
}

@media (min-width: 640px) {
  .cross-links-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (min-width: 900px) {
  .cross-links-grid {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 1rem !important;
  }
}

.cross-link {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 1.25rem 1rem !important;
  background: linear-gradient(135deg, rgba(15, 15, 34, 0.9) 0%, rgba(26, 31, 46, 0.9) 100%) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  color: var(--foreground-muted) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  min-height: 80px !important;
}

.cross-link:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.3) !important;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(15, 15, 34, 0.95) 100%) !important;
}

.cross-link.active {
  border-color: var(--primary) !important;
  border-width: 2px !important;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.05) 100%) !important;
  color: var(--primary) !important;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.2) !important;
}

.cross-link-icon {
  font-size: 1.5rem !important;
  line-height: 1 !important;
}
