:root {
    --idenfy-blue: #734bfb;
    --idenfy-dark: #1A1C1E;
    --idenfy-gray: #6B7280;
}

html.idenfy-lock,
body.idenfy-lock,
html.idenfy-lock #page,
html.idenfy-lock .site,
html.idenfy-lock #wrapper {
    overflow: hidden !important;
    height: 100vh !important;
    width: 100% !important;
    position: fixed !important;
    top: 0;
    left: 0;
}

#id-verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 28, 30, 0.3);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    overscroll-behavior: none;
}

.id-verify-modal {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 420px;
    width: 90%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    animation: sivFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.idenfy-logo-container {
    margin-bottom: 24px;
}

.idenfy-brand-logo {
    height: 200px !important;
    width: auto !important;
}

.idenfy-modal-title {
    color: var(--idenfy-dark);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.idenfy-modal-desc {
    color: var(--idenfy-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.id-verify-btn {
    background-color: var(--idenfy-blue);
    color: #fff !important;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    display: block;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(41, 98, 255, 0.4);
}

.id-verify-btn:hover {
    background-color: #0039CB;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(41, 98, 255, 0.5);
}

.idenfy-security-badge {
    margin-top: 25px;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@keyframes sivFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}