@keyframes bounceY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
  }
  .animate-bounceY {
    animation: bounceY 2s ease-in-out infinite;
  }