#vcp-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
#vcp-modal-content {
    background: #fff;
    border-radius: 10px;
    max-width: 90vw;
    max-height: 80vh;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
#vcp-modal-close {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 2;
    font-weight: bold;
    transition: color 0.2s;
}
#vcp-modal-close:hover {
    color: #e74c3c;
}
#vcp-modal-video {
    max-width: 80vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}
#vcp-modal-video iframe, #vcp-modal-video video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 10px 10px;
    background: #000;
}
@media (max-width: 600px) {
    #vcp-modal-video {
        width: 90vw;
        height: 50vw;
        max-width: 100vw;
        max-height: 40vh;
    }
    #vcp-modal-content {
        max-width: 100vw;
        max-height: 90vh;
    }
} 