/* VPN / فیلترشکن — تمام‌صفحه */
#vpn-block-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(1200px 600px at 20% -10%, rgba(255, 105, 180, 0.35), transparent 55%),
        radial-gradient(900px 500px at 110% 110%, rgba(255, 20, 147, 0.28), transparent 50%),
        linear-gradient(160deg, #2b0718 0%, #4a0d2a 45%, #1a0812 100%);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#vpn-block-overlay.is-visible {
    display: flex;
}
body.vpn-blocked {
    overflow: hidden !important;
}
body.vpn-blocked > *:not(#vpn-block-overlay) {
    display: none !important;
}

.vpn-card {
    width: min(460px, 100%);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    text-align: center;
    padding: 40px 28px 32px;
    position: relative;
    overflow: hidden;
    font-family: Vazirmatn, Tahoma, sans-serif;
    color: #3b1230;
    animation: vpn-pop 0.45s ease;
}
.vpn-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, #FF1493, #FF69B4, #ffb6d9);
}
.vpn-icon-wrap {
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffe4f1, #fff);
    box-shadow: 0 10px 24px rgba(255, 20, 147, 0.22);
}
.vpn-icon-wrap svg {
    width: 42px;
    height: 42px;
}
.vpn-card h1 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    font-weight: 800;
    color: #c2185b;
}
.vpn-card p {
    margin: 0 0 10px;
    font-size: 0.98rem;
    line-height: 1.9;
    color: #5a3048;
}
.vpn-card .vpn-hint {
    font-size: 0.86rem;
    color: #8a5a72;
    margin-bottom: 22px;
}
.vpn-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vpn-btn {
    appearance: none;
    border: none;
    border-radius: 999px;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}
.vpn-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    box-shadow: 0 10px 22px rgba(255, 20, 147, 0.35);
}
.vpn-btn-primary:active {
    transform: scale(0.98);
}
.vpn-status {
    margin-top: 14px;
    min-height: 22px;
    font-size: 0.85rem;
    color: #c2185b;
}
@keyframes vpn-pop {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: none; }
}
@media (max-width: 480px) {
    .vpn-card { padding: 32px 20px 24px; border-radius: 22px; }
    .vpn-card h1 { font-size: 1.25rem; }
}
