/* Styles pour le préloader avec animation MP4 */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#preloader video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#preloader .progress-text {
    position: absolute;
    bottom: 20%;
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

#preloader .play-button {
    position: absolute;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: red;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 10000;
}

#preloader.fade-out {
    opacity: 0;
    transition: opacity 1s ease-out;
    pointer-events: none;
}