/* Add to views/partials/head.ejs or main CSS */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.animate-bounce-slow {
    animation: bounce-slow 3s infinite ease-in-out;
}
