@keyframes pulseGreen {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 8px var(--color-success);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
    box-shadow: 0 0 3px var(--color-success);
  }
}

@keyframes pulsePing {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes neonGlow {
  0%, 100% {
    filter: drop-shadow(0 0 15px rgba(255, 42, 133, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(255, 42, 133, 0.8));
  }
}

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

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

.animate-float {
  animation: floatUpDown 6s ease-in-out infinite;
}

.animate-glow {
  animation: neonGlow 4s ease-in-out infinite;
}
