/**
 * Divi YouTube Background
 * Styles for YouTube video backgrounds
 */

/* Container for YouTube background */
.divi-ytb-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

/* Player wrapper */
.divi-ytb-player-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Player element */
.divi-ytb-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

/* YouTube iframe */
.divi-ytb-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Dark overlay */
.divi-ytb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* When controls are enabled, allow pointer events */
.et_pb_section[data-youtube-controls="on"] .divi-ytb-container,
.et_pb_row[data-youtube-controls="on"] .divi-ytb-container,
.et_pb_column[data-youtube-controls="on"] .divi-ytb-container {
    pointer-events: auto;
    z-index: 1;
}
