
<!-- CSS pour le modal vidéo (ajoutez au head ou dans votre fichier CSS) -->
<style>
.video-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    position: relative;
    background-color: #000;
    border-radius: 8px;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.video-close:hover {
    color: #ccc;
}

#languageVideo {
    border-radius: 4px;
    outline: none;
}

/* Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        padding: 10px;
        max-width: 95%;
        max-height: 95%;
    }
}
</style>