.vgvt-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.vgvt-modal {
    background: #fff;
    max-width: 640px;
    width: 90%;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 15px 45px rgba(0,0,0,.3);
}

.vgvt-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.vgvt-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #000;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}

#vgvt-video,
#vgvt-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#vgvt-canvas {
    pointer-events: none;
}

.vgvt-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.vgvt-note {
    font-size: 12px;
    color: #666;
}
