.mc-fade {
    animation-name: uk-fade;
    animation-duration: 10s;
    animation-fill-mode: both;
}
.mc-fade-reverse {
	    background-color: #121212; /* Conserve le fond sombre pendant la transition */
    animation-name: uk-fade;
    animation-duration: 10s;
    animation-fill-mode: both;
    animation-direction: reverse;
}

#mc-yoo-overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.5s ease, transform 1s ease;
}

#mc-yoo-overlay.active {
    opacity: 1;
    transform: translateY(0%);
}

#mc-yoo-overlay.fadeout {
    opacity: 0;
    transform: translateY(200%); /* ✅ Chute vers le bas */
}
