/* Animation Keyframes and classes */

@keyframes fp {
  0% { transform: translateY(0); }
  85% { opacity: 0; }
  100% { transform: translateY(-55px); opacity: 0; }
}

@keyframes bf {
  0% { transform: translateY(-100%); opacity: 0; }
  5% { opacity: .5; }
  50% { opacity: 1; }
  95% { opacity: .5; }
  100% { transform: translateY(120vh); opacity: 0; }
}

@keyframes fsi {
  0% { opacity: 0; transform: translateY(30px); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes pg {
  0%, 100% { box-shadow: 0 0 40px rgba(26, 42, 64, 0.4); }
  50% { box-shadow: 0 0 40px rgba(26, 42, 64, 0.4); }
}

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

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

@keyframes neonPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.animate-beam-1 { animation: bf 6s linear infinite; }
.animate-beam-2 { animation: bf 8s linear infinite; }
.animate-beam-3 { animation: bf 7s linear infinite; }

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

.price-glow { animation: pg 3s ease-in-out infinite; }

.floating-animation { animation: float 3s ease-in-out infinite; }

.neon-pulse { animation: float 3s ease-in-out infinite, neonPulse 2s infinite; }

@keyframes shoutShake {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.05) rotate(-1deg); }
  50% { transform: scale(1.1) rotate(1deg); }
  75% { transform: scale(1.05) rotate(-1deg); }
}

.alert-shout {
  animation: shoutShake 0.5s ease-in-out infinite;
}

