.pixelas-vpopup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pixelas-vpopup-overlay.pixelas-vpopup-visible {
    display: flex;
}

.pixelas-vpopup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
}

.pixelas-vpopup-modal {
    position: relative;
    z-index: 2;
    max-width: 640px;
    width: 90%;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 22px 22px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.45);
    animation: pixelasPopupIn .35s ease-out;
}

.pixelas-vpopup-close {
    position: absolute;
    right: 14px;
    top: 10px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
}

.pixelas-vpopup-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.pixelas-vpopup-message {
    margin-bottom: 12px;
    font-size: 15px;
    color: #475569;
}

.pixelas-vpopup-custom {
    margin-bottom: 14px;
    border-radius: 12px;
    overflow: hidden;
}

/* Destek butonu */
.pixelas-support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #f97316, #facc15);
    color: #111827;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.35);
    transition: transform .18s ease, box-shadow .18s ease;
}

.pixelas-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.55);
}

/* Geri sayım */
.pixelas-vpopup-counter {
    margin-top: 10px;
    font-size: 13px;
    color: #64748b;
}

/* Animasyon */
@keyframes pixelasPopupIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .pixelas-vpopup-modal {
        padding: 16px 14px 18px;
        border-radius: 14px;
    }
}
