.vpp-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.vpp-modal-container.vpp-active {
    display: flex;
}

.vpp-modal-container.show-in-editor {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    z-index: 1;
    background: transparent;
}

.vpp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.vpp-modal-card {
    position: relative;
    width: 320px;
    max-width: 90%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    animation: vppFadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes vppFadeIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.vpp-close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.vpp-close-btn:hover {
    background: rgba(0,0,0,0.8);
}

.vpp-media-container {
    position: relative;
    width: 100%;
    height: 380px;
}

.vpp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vpp-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

.vpp-content-container {
    padding: 20px;
    text-align: center;
}

.vpp-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #333;
}

.vpp-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.vpp-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vpp-btn {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    transition: opacity 0.2s;
}

.vpp-btn:hover {
    opacity: 0.9;
}
