@keyframes slowFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(120px) rotate(360deg); opacity: 0; }
}

/* Ensure the popup can contain the falling particles */
#jesusPopup {
    position: relative;
    overflow: hidden;
}
