.vl-628be6c2-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.vl-628be6c2-thumbnail {
    width: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
    background-color: #000;
}
.vl-628be6c2-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.vl-628be6c2-container:hover .vl-628be6c2-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Lightbox Styles */
.vl-628be6c2-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: vlFadeIn 0.3s forwards;
}
.vl-628be6c2-lightbox-video {
    max-width: 90vw;
    max-height: 90vh;
    outline: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.vl-628be6c2-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    z-index: 9999999;
    background: transparent;
    border: none;
    padding: 10px;
}
@keyframes vlFadeIn {
    to { opacity: 1; }
}
