@keyframes shine {
  0% { left: -100%; }
  100% { left: 150%; }
}
.animate-shine {
  animation: shine 3s infinite;
}

@keyframes bounce-soft {
  0%, 85%, 100% { transform: translateY(0); }
  92% { transform: translateY(-8px); }
}
.animate-bounce-soft {
  animation: bounce-soft 3s ease-in-out infinite;
}