/* Reset et styles de base */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f5f5f5;
}

/* Conteneur pour la vidéo */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
    margin: 20px auto;
    max-width: 1200px; /* Largeur maximale optionnelle */
}

/* Style de l'iframe */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}