html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Derrière tout le reste */
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw; /* dépasse l’écran pour couvrir */
    height: 120vh;
    transform: translate(-50%, -50%);
    pointer-events: none; /* la vidéo ne capte pas la souris */
} 