@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  70% {
    box-shadow: 0 0 0 24px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.04);
  }

  50% {
    transform: scale(0.96);
  }

  75% {
    transform: scale(1.02);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: 200px 0;
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease forwards;
}

.animate-glow-pulse {
  animation: glow-pulse 2.4s ease-in-out infinite;
}

.animate-heartbeat {
  animation: heartbeat 2s ease-in-out infinite;
}

.animate-shimmer {
  background-image: linear-gradient(
    90deg,
    rgba(243, 244, 246, 0),
    rgba(16, 185, 129, 0.25),
    rgba(243, 244, 246, 0)
  );
  background-size: 200px 100%;
  animation: shimmer 2.8s linear infinite;
}

