@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.35);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(6, 182, 212, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-fade {
  animation: fade-in 0.7s ease forwards;
}

.animate-rise {
  animation: rise 0.8s ease forwards;
}

.animate-glow {
  animation: pulse-glow 2.2s ease-in-out infinite;
}

.animate-shimmer {
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2.4s ease-in-out infinite;
}

