/**
 * Effects & Animations
 * Includes: keyframes, cursor effects, glow, pulse animations
 */

/* Aurora Animation */
.animate-aurora {
  animation: aurora 8s ease-in-out infinite;
  background-size: 200% 200%;
}

@keyframes aurora {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.footer-glow {
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

/* Fade and Slide Animations */
.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.5s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.animate-check-pop {
  animation: check-pop 0.5s ease-out;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes check-pop {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes subtle-pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* Cursor Effects */
.cursor-main {
  position: fixed;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.8), rgba(139, 92, 246, 0.4));
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #60a5fa;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: lighten;
  animation: pulse 2s ease-in-out infinite;
}
