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

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

@keyframes fadeInRight {
  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);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 61, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 61, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 61, 255, 0);
  }
}

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

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

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
  100% {
    transform: translate(10px, -10px) scale(1.02);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.7s var(--ease-out) both;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.7s var(--ease-out) both;
}

.animate-fadeInRight {
  animation: fadeInRight 0.7s var(--ease-out) both;
}

.animate-scaleIn {
  animation: scaleIn 0.6s var(--ease-bounce) both;
}

.animate-float {
  animation: floatY 4s ease-in-out infinite;
}

.animate-pulse-btn {
  animation: pulse-ring 2s ease-out infinite;
}

.text-gradient {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.glow-orb--blue {
  background: radial-gradient(circle, rgba(0, 61, 255, 0.35) 0%, transparent 70%);
}

.glow-orb--green {
  background: radial-gradient(circle, rgba(20, 240, 181, 0.2) 0%, transparent 70%);
}

.glow-orb--purple {
  background: radial-gradient(circle, rgba(137, 10, 255, 0.2) 0%, transparent 70%);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
