#wpv-overlay {
    display: none;
    position: absolute;
    left: 0; width: 100%;
    background: #000;
    z-index: 20;
    box-sizing: border-box;
}
#wpv-overlay.wpv-visible {
    display: flex;
    align-items: center;
    justify-content: center;
}
#wpv-close {
    position: absolute; top: 10px; right: 12px;
    background: rgba(0,0,0,0.6); color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%; width: 32px; height: 32px;
    font-size: 14px; cursor: pointer; z-index: 30;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
#wpv-close:hover { background: rgba(200,30,30,0.85); }
.wpv-embed-wrap { position: relative; width: 100%; height: 100%; }
.wpv-embed-wrap iframe { position: absolute; top:0; left:0; width:100%; height:100%; border:0; }
#wpv-video { width:100%; height:100%; object-fit:contain; }

/* Vignette */
ol.flex-control-thumbs li[data-wpv-thumb="1"] {
    cursor: pointer !important;
    overflow: hidden;
}
.wpv-thumb-bg {
    width: 100%; height: 100%;
    min-height: 56px;
    background-size: cover;
    background-position: center;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.wpv-play-btn { width: 42px; height: 42px; flex-shrink: 0; transition: transform 0.2s; }
ol.flex-control-thumbs li[data-wpv-thumb="1"]:hover .wpv-play-btn { transform: scale(1.18); }
.wpv-play-btn svg { width:100%; height:100%; display:block; }
.wpv-thumb-label {
    position: absolute; bottom:0; left:0; right:0;
    background: rgba(0,0,0,0.6); color:#fff;
    font-size: 9px; text-align: center; padding: 2px 0;
    letter-spacing: 0.5px; text-transform: uppercase;
}
ol.flex-control-thumbs li[data-wpv-thumb="1"].wpv-active {
    outline: 2px solid #e00; outline-offset: -2px;
}
