.video-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-lightbox-content {
    position: relative;
    width: 100%;
    max-width: 1280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.video-lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--teal-700);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: var(--text-l);
    line-height:0;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.video-lightbox-close:hover,
.video-lightbox-close:focus {
    background: var(--teal-700);
    outline: 3px solid var(--teal-700);
}

.video-lightbox-title {
    padding: 20px;
    margin: 0;
    color: #000000;
    font-size: var(--text-m);
    font-weight: 400;
    background: var(--bricks-bg-light);
}

.video-lightbox-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

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

.video-lightbox-wrapper iframe:focus {
    outline: 3px solid var(--teal-700)!important;
    outline-offset: -3px;
    box-shadow: 0 0 0 3px var(--teal-700);
}
