/* ===== CSS RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --neon-cyan: #00f3ff;
  --neon-magenta: #ff00ff;
  --neon-purple: #9d00ff;
  --dark-bg: #0a0a14;
  --dark-surface: #121220;
  --dark-card: #161626;
  --light-text: #ffffff;
  --gray-text: #a0a0c0;
  --border-color: #2a2a3a;
  --success-color: #00ff9d;
  --warning-color: #ffcc00;
  --error-color: #ff4757;
}

body {
  font-family: "Exo 2", "Rajdhani", sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* ===== BACKGROUND EFFECTS ===== */
.background-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(42, 42, 58, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(42, 42, 58, 0.2) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    transparent,
    var(--neon-cyan),
    transparent
  );
  animation: scan 4s linear infinite;
  box-shadow: 0 0 10px var(--neon-cyan);
}

@keyframes scan {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 243, 255, 0.1) 0%,
    rgba(157, 0, 255, 0.05) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  background-color: var(--neon-cyan);
  border-radius: 50%;
  animation: float 15s infinite linear;
  opacity: 0.3;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-40px) translateX(0);
  }
  75% {
    transform: translateY(-20px) translateX(-10px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

/* ===== MAIN CONTAINER ===== */
.landing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* ===== NAVIGATION ===== */
.cyber-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 24px;
  color: var(--neon-cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* ===== CYBERPUNK LOGO ANIMATION ===== */
.logo-text {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  animation: logo-pulse 4s ease-in-out infinite;
}

.logo-highlight {
  color: var(--neon-magenta);
  position: relative;
  animation: highlight-flicker 3s infinite;
}

/* Main pulsing animation */
@keyframes logo-pulse {
  0%,
  100% {
    text-shadow:
      0 0 5px rgba(255, 255, 255, 0.1),
      0 0 10px rgba(0, 243, 255, 0.2);
    transform: scale(1);
  }
  50% {
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.2),
      0 0 20px rgba(0, 243, 255, 0.4),
      0 0 30px rgba(157, 0, 255, 0.2);
    transform: scale(1.02);
  }
}

/* Magenta part flicker */
@keyframes highlight-flicker {
  0%,
  12%,
  15%,
  48%,
  52%,
  85%,
  88%,
  100% {
    color: var(--neon-magenta);
    text-shadow:
      0 0 10px var(--neon-magenta),
      0 0 20px rgba(255, 0, 255, 0.3);
  }
  13%,
  49%,
  86% {
    color: #ff66ff;
    text-shadow:
      0 0 15px #ff66ff,
      0 0 30px rgba(255, 102, 255, 0.5);
  }
  14%,
  50%,
  87% {
    color: var(--neon-magenta);
    text-shadow:
      0 0 5px var(--neon-magenta),
      0 0 10px rgba(255, 0, 255, 0.2);
  }
}

/* Scan line effect */
.logo-text::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 243, 255, 0.2) 5%,
    var(--neon-cyan) 15%,
    rgba(0, 243, 255, 0.8) 25%,
    var(--neon-cyan) 35%,
    transparent 45%,
    rgba(255, 0, 255, 0.2) 55%,
    var(--neon-magenta) 65%,
    rgba(255, 0, 255, 0.8) 75%,
    var(--neon-magenta) 85%,
    rgba(255, 0, 255, 0.2) 95%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: enhanced-scan 3s ease-in-out infinite;
  opacity: 0.7;
  border-radius: 2px;
}

@keyframes enhanced-scan {
  0% {
    background-position: -100% 0;
    opacity: 0.6;
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 3px var(--neon-cyan))
      drop-shadow(0 0 6px var(--neon-magenta));
  }
  100% {
    background-position: 100% 0;
    opacity: 0.6;
  }
}

/* Optional: Add data particles */
/* Fixed binary animation - FULLY LEFT TO FULLY RIGHT */
.logo-text::before {
  content: "01001000 01010101 01000010 00101110 01001101 01000101 00100000 00110001 00110011 00110011 00110111";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  font-size: 0.6rem;
  font-family: "Courier New", monospace;
  font-weight: bold;
  color: transparent;
  letter-spacing: 3px;
  text-align: center;
  animation: binary-scroll 20s linear infinite;
  
  /* Enhanced visual effects */
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--neon-cyan) 25%,
    var(--neon-magenta) 50%,
    var(--neon-cyan) 75%,
    transparent 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 
    0 0 5px rgba(0, 243, 255, 0.5),
    0 0 10px rgba(0, 243, 255, 0.3);
  opacity: 0.7;
  
  /* FIX: Make it wider than the container to scroll fully */
  width: 200vw; /* Twice the viewport width */
  left: -50vw; /* Center it initially */
}

@keyframes binary-scroll {
  0% {
    transform: translateX(-100%); /* Start from left (off-screen left) */
    opacity: 0;
  }
  5% {
    opacity: 0.8;
    transform: translateX(-95%); /* Start moving in */
  }
  10% {
    opacity: 1;
    transform: translateX(-90%);
  }
  90% {
    opacity: 1;
    transform: translateX(90%); /* Move through center */
  }
  95% {
    opacity: 0.8;
    transform: translateX(95%); /* Start exiting */
  }
  100% {
    transform: translateX(100%); /* End at right (off-screen right) */
    opacity: 0;
  }
}

/* Hover effects */
.logo-text:hover {
  animation-duration: 2s;
}

.logo-text:hover .logo-highlight {
  animation-duration: 1.5s;
}

.logo-text:hover::after {
  animation-duration: 3s;
  opacity: 1;
  height: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: var(--gray-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--light-text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-actions .cyber-btn {
  transition: all 0.3s ease;
}

.nav-actions .cyber-btn:hover {
  transform: translateY(-2px);
}

/* ===== BUTTONS ===== */
.cyber-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.cyber-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;
}

.cyber-btn:hover::before {
  left: 100%;
}

.login-btn {
  background: linear-gradient(135deg, #5865f2, #9b59b6);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn:hover {
  background: linear-gradient(135deg, #4752c4, #8e44ad);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.primary-btn {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--dark-bg);
  font-weight: 700;
  border: none;
  padding: 16px 32px;
  font-size: 18px;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 243, 255, 0.3);
}

.secondary-btn {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
}

.secondary-btn:hover {
  background: rgba(0, 243, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 243, 255, 0.2);
}

.cta-btn {
  background: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
  color: white;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 0, 255, 0.3);
}

/* ===== HERO SECTION ===== */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  padding: 40px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.tag-icon {
  color: var(--neon-cyan);
  font-size: 14px;
}

.tag-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--neon-cyan);
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.highlight {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: -200% center;
  }
  50% {
    background-position: 200% center;
  }
}

.hero-description {
  font-size: 18px;
  color: var(--gray-text);
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.visual-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.visual-card:hover {
  transform: translateY(-10px);
}

.card-header {
  background: rgba(22, 22, 38, 0.9);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: var(--error-color);
}
.dot.yellow {
  background: var(--warning-color);
}
.dot.green {
  background: var(--success-color);
}

.header-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--neon-cyan);
}

.card-content {
  padding: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-value {
  font-family: "Orbitron", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 5px;
  transition: all 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  line-height: 1;
}

.stat-value.updated {
  color: var(--neon-magenta);
}

.just-launched-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 24px;
  font-weight: 700;
  transform: translateY(4px);
}

.small-text {
  font-size: 0.8em;
  white-space: nowrap;
}

.stat-label-small {
  font-size: 12px;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.stat-trend {
  font-size: 16px;
  color: var(--success-color);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  justify-content: center;
}

.live-data {
  margin-top: 30px;
}

/* ===== DATA STREAM (PRO) ===== */
.data-stream {
  height: 72px;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;

  position: relative;
  overflow: hidden;

  /* layered panel */
  background:
    radial-gradient(120% 140% at 50% 0%,
      rgba(0,243,255,0.10) 0%,
      rgba(157,0,255,0.06) 35%,
      rgba(0,0,0,0.30) 70%,
      rgba(0,0,0,0.48) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  
  border: 1px solid rgba(0, 243, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.02),
    inset 0 0 18px rgba(0,243,255,0.08),
    0 10px 30px rgba(0,0,0,0.35);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

/* subtle grid — crisp but quiet */
.data-stream::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* scan shimmer (more controlled + premium) */
.data-stream::before {
  content: "";
  position: absolute;
  inset: -30% -60%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,243,255,0.10) 35%,
    rgba(255,0,255,0.08) 55%,
    transparent 80%
  );
  transform: translateX(-35%);
  opacity: 0.25;
  filter: blur(2px);
  animation: streamScan 4.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes streamScan {
  0%   { transform: translateX(-45%); opacity: 0.0; }
  18%  { opacity: 0.35; }
  55%  { opacity: 0.22; }
  100% { transform: translateX(45%); opacity: 0.0; }
}

/* vignette mask for inset “display” look */
.data-stream .stream-line {
  height: 4px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    90deg,
    rgba(0,243,255,0.06),
    rgba(0,243,255,0.12),
    rgba(0,243,255,0.06)
  );

  box-shadow:
    0 0 10px rgba(0,243,255,0.22),
    0 0 16px rgba(157,0,255,0.12);

  /* crisp edge */
  outline: 1px solid rgba(255,255,255,0.03);
}

/* pulse #1 (sharp head) */
.stream-line::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,243,255,1),
    rgba(0,243,255,0.65),
    transparent
  );
  animation: streamPulse 2.3s cubic-bezier(.2,.9,.25,1) infinite;
  filter: saturate(1.05);
}

/* pulse #2 (soft bloom trail) */
.stream-line::before {
  content: "";
  position: absolute;
  left: -55%;
  top: -50%;
  width: 55%;
  height: 200%;
  background: radial-gradient(circle,
    rgba(0,243,255,0.22) 0%,
    rgba(157,0,255,0.10) 30%,
    transparent 60%);
  animation: streamBloom 2.3s cubic-bezier(.2,.9,.25,1) infinite;
  filter: blur(6px);
  opacity: 0.85;
}

@keyframes streamPulse {
  0%   { transform: translateX(-130%); opacity: 0.0; }
  10%  { opacity: 1; }
  60%  { opacity: 1; }
  100% { transform: translateX(520%); opacity: 0.0; }
}

@keyframes streamBloom {
  0%   { transform: translateX(-120%); opacity: 0.0; }
  15%  { opacity: 0.9; }
  70%  { opacity: 0.65; }
  100% { transform: translateX(420%); opacity: 0.0; }
}

/* stagger for “alive” feel */
.stream-line:nth-child(1)::after,
.stream-line:nth-child(1)::before { animation-delay: 0s; }

.stream-line:nth-child(2)::after,
.stream-line:nth-child(2)::before { animation-delay: .18s; animation-duration: 2.1s; }

.stream-line:nth-child(3)::after,
.stream-line:nth-child(3)::before { animation-delay: .34s; animation-duration: 2.45s; }

/* accessibility */
@media (prefers-reduced-motion: reduce) {
  .data-stream::before,
  .stream-line::after,
  .stream-line::before {
    animation: none !important;
  }
}


.data-label {
  font-size: 12px;
  text-align: center;
  color: var(--neon-magenta);
  letter-spacing: 1px;
}

/* ===== LIVE STATS SECTION ===== */
.live-stats-section {
  margin: 80px 0;
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.title-underline {
  position: relative;
  display: inline-block;
}

.title-underline::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--neon-cyan);
}

.title-highlight {
  color: var(--neon-magenta);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.stat-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
}

.stat-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.stat-card-header i {
  font-size: 24px;
  color: var(--neon-cyan);
}

.stat-card-header h4 {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--light-text);
}

.stat-card-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-row-label {
  color: var(--gray-text);
  font-size: 14px;
}

.stat-row-value {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  color: var(--light-text);
  font-size: 16px;
  transition: all 0.3s ease;
}

.stat-row-value.updated {
  color: var(--neon-cyan);
  transform: scale(1.1);
}

.stat-row-value.growth {
  color: var(--success-color);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-dot.online {
  background-color: var(--success-color);
  box-shadow: 0 0 10px var(--success-color);
}

.status-dot.offline {
  background-color: var(--error-color);
  box-shadow: 0 0 10px var(--error-color);
}

.stats-update {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 20px;
  background: rgba(22, 22, 38, 0.5);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.update-time {
  color: var(--gray-text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.update-time i {
  color: var(--neon-cyan);
}

#refresh-stats {
  padding: 10px 20px;
  font-size: 14px;
}

#refresh-stats:hover i {
  animation: spin 0.5s linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Add highlight-text class */
.highlight-text {
  color: var(--neon-cyan);
  font-weight: 700;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  margin-bottom: 120px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.cyber-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.cyber-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 40px rgba(0, 243, 255, 0.1);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}

.cyber-card:hover .card-glow {
  opacity: 1;
}

.card-glow.cyan {
  background: var(--neon-cyan);
}
.card-glow.magenta {
  background: var(--neon-magenta);
}
.card-glow.purple {
  background: var(--neon-purple);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 24px;
  color: var(--neon-cyan);
}

.feature-card .card-icon {
  color: inherit;
}

.feature-card:nth-child(1) .card-icon {
  color: var(--neon-cyan);
}
.feature-card:nth-child(2) .card-icon {
  color: var(--neon-magenta);
}
.feature-card:nth-child(3) .card-icon {
  color: var(--neon-purple);
}
.feature-card:nth-child(4) .card-icon {
  color: var(--neon-cyan);
}
.feature-card:nth-child(5) .card-icon {
  color: var(--neon-magenta);
}
.feature-card:nth-child(6) .card-icon {
  color: var(--neon-purple);
}

.card-title {
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--light-text);
}

.card-description {
  color: var(--gray-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-features {
  list-style: none;
  padding: 0;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--gray-text);
  font-size: 14px;
}

.card-features i {
  color: var(--success-color);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(10, 10, 20, 0.9),
    rgba(22, 22, 38, 0.9)
  );
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 60px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 243, 255, 0.05) 0%,
    transparent 70%
  );
  z-index: -1;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.cta-content {
  flex: 1;
  min-width: 300px;
}

.cta-title {
  font-family: "Orbitron", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-description {
  font-size: 18px;
  color: var(--gray-text);
  margin-bottom: 30px;
  max-width: 500px;
}

.cta-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-stat {
  text-align: center;
}

.cta-stat-number {
  font-family: "Orbitron", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 5px;
}

.cta-stat-label {
  font-size: 14px;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-action {
  flex-shrink: 0;
}

.cta-note {
  font-size: 14px;
  color: var(--gray-text);
  text-align: center;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.cyber-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 60px;
  margin-top: 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--light-text);
}

.footer-tagline {
  font-size: 16px;
  color: var(--gray-text);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--dark-surface);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--gray-text);
  font-size: 18px;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.link-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-title {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 10px;
}

.footer-link {
  color: var(--gray-text);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-link:hover {
  color: var(--neon-cyan);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: var(--gray-text);
  font-size: 14px;
}

.copyright i {
  color: var(--error-color);
  margin: 0 5px;
}

.footer-tech {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tech-tag {
  background: rgba(0, 243, 255, 0.1);
  color: var(--neon-cyan);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cyber-nav {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 30px;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-stats {
    justify-content: center;
  }

  .stats-update {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .live-stats-section {
    padding: 40px 0;
    margin: 40px 0;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .cyber-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 32px;
  }

  .cta-title {
    font-size: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ===== UTILITY CLASSES ===== */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-80 {
  margin-bottom: 80px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.hero-section > * {
  animation: fadeIn 0.8s ease-out;
}

.features-grid > * {
  animation: fadeIn 0.6s ease-out;
}

.features-grid > *:nth-child(2) {
  animation-delay: 0.1s;
}
.features-grid > *:nth-child(3) {
  animation-delay: 0.2s;
}
.features-grid > *:nth-child(4) {
  animation-delay: 0.3s;
}
.features-grid > *:nth-child(5) {
  animation-delay: 0.4s;
}
.features-grid > *:nth-child(6) {
  animation-delay: 0.5s;
}

.stats-container > * {
  animation: fadeIn 0.6s ease-out;
}
