/* ============================================================
   🔒 VPN GUIDE — Premium Glassmorphism Theme
   ============================================================
   Modern glass design with cyberpunk aesthetic
   ============================================================ */

/* ─── CSS Variables ─── */
:root {
  /* Colors */
  --primary: #667eea;
  --primary-dark: #5a67d8;
  --secondary: #764ba2;
  --accent: #00d4ff;
  --accent-glow: rgba(0, 212, 255, 0.5);
  --success: #43e97b;
  --warning: #f093fb;
  --danger: #f5576c;
  
  /* Background */
  --bg-dark: #0a0a0f;
  --bg-darker: #050508;
  
  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-hover: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-hover: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --glass-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.5);
  --glass-blur: blur(20px) saturate(180%);
  
  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #667eea 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #050508 100%);
  --gradient-glow: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
  
  /* Spacing */
  --container-max: 1200px;
  --section-padding: 100px 0;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ─── Background with Unsplash Image ─── */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80') center/cover no-repeat;
  opacity: 0.15;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(10, 10, 15, 0.9) 0%, rgba(5, 5, 8, 0.95) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  z-index: -1;
}

/* ─── Animated Background Orbs ─── */
.bg-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s ease-in-out infinite;
}

.bg-orbs .orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(102, 126, 234, 0.15);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.bg-orbs .orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(118, 75, 162, 0.15);
  bottom: -150px;
  right: -150px;
  animation-delay: -5s;
}

.bg-orbs .orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(0, 212, 255, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.02); }
}

/* ─── Container ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

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

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

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

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

/* ─── Glass Effect ─── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  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 0.5s ease;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
  color: white;
  text-shadow: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  transform: translateY(-3px);
  color: white;
  text-shadow: none;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-large {
  padding: 18px 42px;
  font-size: 1.125rem;
}

/* ─── Navigation ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.navbar-brand:hover {
  color: white;
}

.navbar-brand .logo {
  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;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-nav a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: white;
}

.navbar-cta {
  padding: 10px 20px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  color: white !important;
  font-weight: 600;
}

/* ─── Hero Section ─── */
.hero {
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

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

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 50px;
  position: relative;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero p {
  font-size: 1.35rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-stat .label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Sections ─── */
.section {
  padding: var(--section-padding);
}

.section-dark {
  background: rgba(0, 0, 0, 0.3);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

/* ─── VPN Cards ─── */
.vpn-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.vpn-card {
  display: block;
  overflow: hidden;
  transition: all var(--transition-normal);
  color: white;
  position: relative;
}

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

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

.vpn-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.vpn-card-header {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.vpn-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background: linear-gradient(135deg, currentColor, transparent);
}

.vpn-name {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.vpn-rating {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vpn-card-body {
  padding: 30px;
}

.vpn-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 20px rgba(67, 233, 123, 0.3);
}

.vpn-desc {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── Category Cards ─── */
.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.category-card {
  padding: 24px;
  transition: all var(--transition-normal);
  color: white;
}

.category-card:hover {
  transform: translateX(8px);
}

.category-card h3 {
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ─── CTA Section ─── */
.cta-section {
  padding: var(--section-padding);
}

.cta-card {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
}

.cta-card h2 {
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* ─── Article Page ─── */
.article-page {
  padding: 120px 0 80px;
}

.article-header {
  margin-bottom: 2rem;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 0.5rem;
}

/* ─── Article Content ─── */
.article-content {
  max-width: 800px;
}

.article-intro {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ─── Rating Badge ─── */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  margin-bottom: 2rem;
}

.rating-score {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-label {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ─── Pros & Cons ─── */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.pros {
  background: rgba(67, 233, 123, 0.1);
  border: 1px solid rgba(67, 233, 123, 0.3);
}

.cons {
  background: rgba(245, 87, 108, 0.1);
  border: 1px solid rgba(245, 87, 108, 0.3);
}

.pros h3, .cons h3 {
  margin-bottom: 1rem;
}

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

.pros li, .cons li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
}

.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: bold;
}

/* ─── Features Grid ─── */
.features-grid {
  padding: 24px;
  margin-bottom: 2rem;
}

.features-grid h3 {
  margin-bottom: 1.5rem;
}

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

.feature {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature .label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.feature .value {
  font-weight: 600;
  color: var(--text-primary);
}

/* ─── Speed Tests ─── */
.speed-tests {
  padding: 24px;
  margin-bottom: 2rem;
}

.speed-tests h3 {
  margin-bottom: 1.5rem;
}

.speed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.speed-item {
  text-align: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
}

.speed-item .label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.speed-item .value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

/* ─── Top Picks ─── */
.top-picks {
  padding: 24px;
  margin-bottom: 2rem;
}

.top-picks h3 {
  margin-bottom: 1.5rem;
}

.picks-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pick-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.pick-card:hover {
  background: rgba(102, 126, 234, 0.2);
}

.pick-card .rank {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 40px;
}

.pick-card .name {
  flex: 1;
  font-weight: 600;
}

.pick-card .score {
  background: var(--gradient-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

/* ─── CTA Box ─── */
.cta-box {
  padding: 32px;
  text-align: center;
  margin: 2rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
}

.cta-box h3 {
  margin-bottom: 0.5rem;
}

.cta-box p {
  margin-bottom: 1.5rem;
}

/* ─── Related Articles ─── */
.related-articles {
  padding: 32px;
  margin: 3rem 0;
}

.related-articles h2 {
  margin-bottom: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.related-card {
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  color: white;
}

.related-card:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: translateY(-4px);
}

.related-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.related-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Category Page ─── */
.category-header {
  padding: 120px 0 40px;
  text-align: center;
}

.category-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.category-page {
  padding: 40px 0 80px;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.article-card {
  padding: 24px;
  transition: all var(--transition-normal);
  color: white;
}

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

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

.article-category {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.article-rating {
  font-weight: 600;
  color: var(--accent);
}

.article-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.article-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ─── Ad Container ─── */
.ad-container {
  margin: 2rem 0;
  text-align: center;
}

/* ─── Footer ─── */
.footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 60px 0 30px;
  border-top: 1px solid var(--glass-border);
}

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

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
}

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

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

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.disclaimer {
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }
  
  .hero-content {
    padding: 40px 24px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .vpn-cards {
    grid-template-columns: 1fr;
  }
  
  .category-cards {
    grid-template-columns: 1fr;
  }
  
  .pros-cons {
    grid-template-columns: 1fr;
  }
  
  .speed-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .article-list {
    grid-template-columns: 1fr;
  }
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(40px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

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

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

@keyframes slideInRight {
  from { 
    opacity: 0; 
    transform: translateX(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

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

.hero-content {
  animation: fadeInUp 1s ease;
}

.vpn-card {
  animation: fadeInUp 0.6s ease backwards;
}

.vpn-card:nth-child(1) { animation-delay: 0.1s; }
.vpn-card:nth-child(2) { animation-delay: 0.2s; }
.vpn-card:nth-child(3) { animation-delay: 0.3s; }
.vpn-card:nth-child(4) { animation-delay: 0.4s; }
.vpn-card:nth-child(5) { animation-delay: 0.5s; }

.category-card {
  animation: slideInLeft 0.6s ease backwards;
}

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

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ─── Selection ─── */
::selection {
  background: var(--primary);
  color: white;
}

/* ─── Glow Effect on Focus ─── */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
