 .video-modal-clone {
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: 1001;
     width: 80%;
     max-width: 800px;
     background: #000;
     display: none;
 }

 /* Forcer le modal vidéo à être caché par défaut */
 #video-modal {
     display: none !important;
 }
 
 #video-modal.active {
     display: flex !important;
 }

 .page-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     z-index: 1000;
     display: none !important;
 }

 .dimmed-content {
     opacity: 0.3;
     transition: opacity 0.3s;
 }