/* Video Popup Styles */
.vpm-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vpm-modal.active {
    display: flex;
    opacity: 1;
}

.vpm-content {
    position: relative;
    background: #000;
    max-width: 95vw;
    max-height: 95vh;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    transition: width 0.3s ease, height 0.3s ease;
}

.vpm-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #ffffff;
    color: #000000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: transform 0.2s ease, background 0.2s ease;
}

.vpm-close:hover {
    transform: scale(1.1);
    background: #f0f0f0;
}

.vpm-iframe-container {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}

.vpm-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* MP4 Video Desteği İçin */
.vpm-iframe-container video {
    width: 100%;
    height: 100%;
    background: #000;
    outline: none;
}
