/* Modal fullscreen para vídeos */
.video-fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.video-fullscreen-modal.active {
    display: flex;
}

.video-fullscreen-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-fullscreen-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-fullscreen-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}



/* Responsive */
@media (max-width: 768px) {
    .video-fullscreen-wrapper {
        width: 100%;
        height: 100%;
    }
}

/* Animación de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.video-fullscreen-modal.active {
    animation: fadeIn 0.3s ease;
}

/* Ocultar scrollbar cuando el modal está activo */
body.video-modal-open {
    overflow: hidden;
}