/* ANIMATION SYSTEM - Valhalla Slot Lux */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(234, 179, 8, 0.2); }
    50% { box-shadow: 0 0 25px rgba(234, 179, 8, 0.6); }
    100% { box-shadow: 0 0 10px rgba(234, 179, 8, 0.2); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes ambientLight {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.float-effect {
    animation: float 6s ease-in-out infinite;
}

.ambient-glow {
    animation: ambientLight 8s ease-in-out infinite;
}