#fraudchecker-vpn-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.fraudchecker-vpn-popup-content {
    background-color: #ffffff;
    padding: 28px 24px 22px;
    border-radius: 18px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    box-sizing: border-box;
    animation: fcVpnIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fcVpnIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fraudchecker-vpn-icon-wrap {
    margin-bottom: 14px;
}

.fraudchecker-vpn-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fef2f2;
    color: #ef4444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fee2e2;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.12);
}

.fraudchecker-vpn-icon svg {
    stroke: #ef4444;
}

.fraudchecker-vpn-popup-content h2 {
    color: #0f172a !important;
    margin: 0 0 6px 0 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.fraudchecker-vpn-desc {
    margin: 0 0 14px 0 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: #64748b !important;
}

.fraudchecker-vpn-warning-box {
    background: #fff1f2;
    border: 1px solid #ffe4e6;
    border-radius: 10px;
    padding: 9px 12px;
    margin-bottom: 14px;
    box-sizing: border-box;
}

.fraudchecker-vpn-warning-box .vpn-warning {
    color: #be123c;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.4;
    display: block;
}

.fraudchecker-vpn-reload-btn {
    width: 100% !important;
    background: #0f172a !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 11px 16px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.15s ease, transform 0.15s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    box-sizing: border-box !important;
    line-height: 1.3 !important;
}

.fraudchecker-vpn-reload-btn:hover {
    background: #1e293b !important;
    transform: translateY(-1px);
}

body.fc-vpn-blocked {
    overflow: hidden !important;
}

@media (max-width: 480px) {
    .fraudchecker-vpn-popup-content {
        padding: 24px 20px 18px;
        max-width: 90%;
    }
    .fraudchecker-vpn-popup-content h2 {
        font-size: 17px !important;
    }
    .fraudchecker-vpn-desc {
        font-size: 12.5px !important;
    }
    .fraudchecker-vpn-icon {
        width: 46px;
        height: 46px;
    }
}