/* Contenedor de la lluvia de imágenes */
#lluvia-reaccion-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 120vh;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.lluvia-reaccion-item {
    position: absolute;
    top: -50px;
    animation: fall linear forwards;
}

@keyframes fall {
    to { transform: translateY(110vh) rotate(360deg); }
}