/* =====================================================
   IP ADDRESS DETAILS - CYBER DARK THEME
   Black/Dark Green with Neon Green Accents
   ===================================================== */

/* CSS Variables - Cyber Color Palette */
:root {
  /* Primary Colors - Neon Green */
  --primary: #00ff88;
  --primary-light: #33ffaa;
  --primary-dark: #00cc6a;
  --primary-glow: rgba(0, 255, 136, 0.4);
  
  /* Accent Colors */
  --accent-cyan: #00ffff;
  --accent-emerald: #00ff88;
  --accent-amber: #ffcc00;
  --accent-rose: #ff4466;
  --accent-blue: #00aaff;
  
  /* Background Colors - Deep Black */
  --bg-darkest: #000000;
  --bg-darker: #050505;
  --bg-dark: #0a0a0a;
  --bg-card: #0d0d0d;
  --bg-card-hover: #141414;
  --bg-elevated: #1a1a1a;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  
  /* Border Colors - Neon Green */
  --border-subtle: rgba(0, 255, 136, 0.15);
  --border-glow: rgba(0, 255, 136, 0.5);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00cc6a 50%, #00aa55 100%);
  --gradient-hero: linear-gradient(135deg, #000000 0%, #001a0d 50%, #002211 100%);
  --gradient-card: linear-gradient(180deg, rgba(13, 13, 13, 0.95) 0%, rgba(5, 5, 5, 0.98) 100%);
  --gradient-cta: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  --gradient-warning: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
  --gradient-danger: linear-gradient(135deg, #ff4466 0%, #cc2244 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.6), 0 2px 4px -2px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7), 0 4px 6px -4px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.7), 0 8px 10px -6px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(0, 255, 136, 0.2);
  --shadow-glow-lg: 0 0 50px rgba(0, 255, 136, 0.3);
  
  /* Animations */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-darkest);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background Pattern - Subtle Grid */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 255, 136, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(0, 200, 100, 0.05), transparent),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(0, 255, 136, 0.03), transparent),
    linear-gradient(rgba(0, 255, 136, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 50px 50px, 50px 50px;
  pointer-events: none;
  z-index: -1;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* =====================================================
   LAYOUT COMPONENTS
   ===================================================== */

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Premium Card Styles with Neon Border */
.card, .port-container {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

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

.card:hover, .port-container:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.card:hover::before, .port-container:hover::before {
  opacity: 1;
}

/* Glass Card Variant */
.glass-card {
  background: rgba(13, 13, 13, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
}

/* Gradient Border Effect */
.gradient-border {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), transparent 50%, var(--primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero-section {
  background: var(--gradient-hero);
  position: relative;
  padding: 4rem 2rem;
  margin-bottom: 2rem;
  border-radius: 0 0 2rem 2rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

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

/* Primary Button - Neon Green */
.btn-primary, .action-button.primary {
  background: var(--gradient-primary);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover, .action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
}

/* CTA Button - For VPN conversions */
.btn-cta {
  background: var(--gradient-cta);
  color: #000;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
  animation: neon-pulse 2s ease-in-out infinite;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.6);
}

@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4); }
  50% { box-shadow: 0 4px 35px rgba(0, 255, 136, 0.7); }
}

/* Secondary Button */
.btn-secondary, .action-button.secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border-glow);
}

.btn-secondary:hover, .action-button.secondary:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

/* =====================================================
   VPN PROMOTION COMPONENTS
   ===================================================== */

/* VPN Alert Banner */
.vpn-alert {
  background: linear-gradient(135deg, rgba(255, 68, 102, 0.1) 0%, rgba(200, 30, 60, 0.05) 100%);
  border: 1px solid rgba(255, 68, 102, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.vpn-alert::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-danger);
}

.vpn-alert-safe {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 200, 100, 0.05) 100%);
  border-color: rgba(0, 255, 136, 0.3);
}

.vpn-alert-safe::before {
  background: var(--gradient-cta);
}

/* VPN Feature Card */
.vpn-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.vpn-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow-lg);
  border-color: var(--primary);
}

.vpn-feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: #000;
}

/* VPN Comparison Table */
.vpn-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.vpn-table thead {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-dark) 100%);
}

.vpn-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid var(--border-subtle);
}

.vpn-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.vpn-table tbody tr {
  transition: background var(--transition-fast);
}

.vpn-table tbody tr:hover {
  background: rgba(0, 255, 136, 0.05);
}

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

/* Best Choice Badge */
.best-choice {
  position: relative;
}

.best-choice::after {
  content: '🏆 Best Choice';
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  background: var(--gradient-cta);
  color: #000;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  animation: bounce 2s ease-in-out infinite;
}

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

/* =====================================================
   PRIVACY SCORE VISUALIZATION
   ===================================================== */

.privacy-score-display {
  background: var(--bg-dark);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-subtle);
}

.score-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(
    var(--primary) calc(var(--score) * 3.6deg),
    var(--bg-elevated) 0deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.score-circle::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--bg-dark);
  border-radius: 50%;
}

.score-value {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 20px var(--primary-glow);
}

/* Score Status Colors */
.score-excellent { --accent-color: #00ff88; }
.score-good { --accent-color: #00ffff; }
.score-fair { --accent-color: #ffcc00; }
.score-poor { --accent-color: #ff4466; }

/* =====================================================
   FORM ELEMENTS
   ===================================================== */

.form-input, input[type="text"], input[type="email"], input[type="number"], textarea, select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

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

.form-input::placeholder {
  color: var(--text-muted);
}

/* =====================================================
   NAVIGATION
   ===================================================== */

.nav-container {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-link {
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(0, 255, 136, 0.1);
}

.nav-link.active {
  color: var(--primary);
  background: rgba(0, 255, 136, 0.15);
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-link {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

/* Animate on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children animations */
.stagger-children > * {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

/* =====================================================
   LOADING STATES
   ===================================================== */

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 0.5rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =====================================================
   STATUS INDICATORS
   ===================================================== */

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

.status-vulnerable {
  color: var(--accent-rose);
}

.status-warning {
  color: var(--accent-amber);
}

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

.status-badge-success {
  background: rgba(0, 255, 136, 0.15);
  color: var(--primary);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.status-badge-danger {
  background: rgba(255, 68, 102, 0.15);
  color: var(--accent-rose);
  border: 1px solid rgba(255, 68, 102, 0.3);
}

.status-badge-warning {
  background: rgba(255, 204, 0, 0.15);
  color: var(--accent-amber);
  border: 1px solid rgba(255, 204, 0, 0.3);
}

/* =====================================================
   BLOG CARD STYLES
   ===================================================== */

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all var(--transition-normal);
}

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

.blog-card-image {
  height: 200px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-image i {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.5;
}

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

.blog-card-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 255, 136, 0.1);
  color: var(--primary);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-excerpt {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =====================================================
   AFFILIATE PROMO BOX
   ===================================================== */

.affiliate-promo {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 200, 100, 0.03) 100%);
  border: 2px solid var(--primary);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.affiliate-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.affiliate-promo-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-cta);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  animation: neon-pulse 2s ease-in-out infinite;
}

.affiliate-logo {
  max-height: 60px;
  margin-bottom: 1rem;
}

.affiliate-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 20px var(--primary-glow);
}

.affiliate-price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
  margin-left: 0.5rem;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 1rem;
    border-radius: 0 0 1rem 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .card, .port-container {
    padding: 1rem;
    border-radius: 0.75rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .vpn-table {
    font-size: 0.875rem;
  }
  
  .vpn-table th, .vpn-table td {
    padding: 0.75rem;
  }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

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

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

.glow-effect {
  box-shadow: var(--shadow-glow);
}

.glow-effect-lg {
  box-shadow: var(--shadow-glow-lg);
}

.border-glow {
  border-color: var(--border-glow);
}

.border-neon {
  border: 1px solid var(--primary);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3), inset 0 0 10px rgba(0, 255, 136, 0.1);
}

.bg-blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Hide scrollbar but keep functionality */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Neon text glow on hover */
.neon-hover:hover {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--primary-glow);
}
