/* style.css */
:root {
  /* New Cool Cyber Theme */
  --primary: #00F0FF;    /* Electric Cyan */
  --secondary: #A855F7;  /* Deep Purple */
  --accent: #3B82F6;     /* Bright Blue */
  --bg: #030510;         /* Midnight Cool Dark */
}

body {
  background-color: var(--bg);
  color: #FFFFFF;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #0A0F24;
  border-radius: 4px;
  border: 1px solid rgba(168, 85, 247, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Cyber Grid Background */
.cyber-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(to right, rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
  pointer-events: none;
}

/* Advanced Aurora Glow Effect - Purple/Cyan */
.aurora-glow {
  position: fixed;
  top: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  animation: float-advanced 12s infinite alternate ease-in-out;
}
.aurora-glow-2 {
  position: fixed;
  bottom: -20%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 60%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  animation: float-advanced 15s infinite alternate-reverse ease-in-out;
}

@keyframes float-advanced {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(40px, -40px) rotate(10deg) scale(1.1); }
  66% { transform: translate(-30px, 30px) rotate(-5deg) scale(0.9); }
  100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

/* Premium Glass Card */
.glass-card {
  background: rgba(10, 15, 36, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.1s ease-out;
  transform-style: preserve-3d;
}
.glass-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
}

/* Mouse Follower Glow */
#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.3s, height 0.3s;
  mix-blend-mode: screen;
}

/* Animated Gradient Text */
.text-gradient {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Neon Button */
.btn-neon {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-neon::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: all 0.5s ease;
}
.btn-neon:hover::before {
  left: 100%;
}
.btn-neon:hover {
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
}
