body.splash-active {
    overflow: hidden;
}

/* Intro Splash Animations */
#splash-screen {
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

#splash-screen.splash-hidden {
    transform: translateY(-100%);
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(138, 196, 13, 0.2)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 35px rgba(138, 196, 13, 0.5)); transform: scale(1.02); }
}

.animate-logo-pulse {
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes burstIn {
    0% { opacity: 0; transform: scale(0.8) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.animate-burst-in {
    animation: burstIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.glass-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(24, 24, 27, 0.9) 50%, rgba(39, 39, 42, 0.88) 100%);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.mwf-form-error {
    background: rgba(254, 226, 226, 1);
    border: 1px solid rgba(252, 165, 165, 1);
    color: rgba(153, 27, 27, 1);
}
