/* ====================================================== 
   🌧️ TUFFYPET - FALLING ICONS STYLES
   ====================================================== */

.falling-icons-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Permite clicks en botones debajo */
    z-index: -1; /* Por detrás de tu contenido interactivo */
    overflow: hidden;
    background: transparent;
}

.icon-item {
    position: absolute;
    top: -50px;
    opacity: 0;
    animation: fall linear infinite;
    will-change: transform;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

/* Animación de caída con rotación */
@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3; /* Aparecen suavemente */
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Optimización para dispositivos con pocos recursos o batería baja */
@media (prefers-reduced-motion: reduce) {
    .falling-icons-container {
        display: none;
    }
}