/* ===== ANIMATIONS ===== */

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

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

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

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

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

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

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.25);
  }
}

/* ===== ANIMATION CLASSES ===== */

.fade-up {
  animation: fadeUp 0.5s ease forwards;
  opacity: 0;
}

.fade-in {
  animation: fadeIn 0.3s ease forwards;
  opacity: 0;
}

.slide-in-left {
  animation: slideInLeft 0.3s ease forwards;
  opacity: 0;
}

.slide-in-right {
  animation: slideInRight 0.3s ease forwards;
  opacity: 0;
}

.slide-down {
  animation: slideDown 0.3s ease forwards;
  opacity: 0;
}

.scale-in {
  animation: scaleIn 0.2s ease forwards;
  opacity: 0;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.spin {
  animation: spin 1s linear infinite;
}

/* ===== ANIMATION DELAYS ===== */

.delay-1 {
  animation-delay: 0.05s;
}

.delay-2 {
  animation-delay: 0.1s;
}

.delay-3 {
  animation-delay: 0.15s;
}

.delay-4 {
  animation-delay: 0.2s;
}

.delay-5 {
  animation-delay: 0.25s;
}

.delay-6 {
  animation-delay: 0.3s;
}
