.mtn-verify-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mtn-verify-modal[hidden] {
    display: none !important;
}

.mtn-verify-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(6px);
    animation: mtnVerifyFadeIn 0.22s ease;
}

.mtn-verify-modal__panel {
    position: relative;
    width: min(440px, 100%);
    background: #fff;
    border-radius: 22px;
    padding: 0;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
    text-align: center;
    overflow: hidden;
    animation: mtnVerifyPopIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mtn-verify-modal__panel--blocked .mtn-verify-modal__hero {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 55%, #7F1D1D 100%);
}

.mtn-verify-modal__panel--warning .mtn-verify-modal__hero {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 55%, #B45309 100%);
}

.mtn-verify-modal__hero {
    padding: 28px 24px 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.mtn-verify-modal__hero::before {
    content: '';
    position: absolute;
    inset: -40% auto auto -20%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.mtn-verify-modal__hero::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.mtn-verify-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
}

.mtn-verify-modal__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    animation: mtnVerifyPulse 2s ease-in-out infinite;
}

.mtn-verify-modal__title {
    margin: 0 0 8px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    position: relative;
}

.mtn-verify-modal__subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.92rem;
    position: relative;
}

.mtn-verify-modal__body {
    padding: 22px 24px 24px;
}

.mtn-verify-modal__phone-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 14px;
    padding: 10px 16px;
    border-radius: 14px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    font-weight: 800;
    font-size: 1rem;
}

.mtn-verify-modal__phone-chip i {
    color: #D97706;
    font-size: 18px;
}

.mtn-verify-modal__message {
    margin: 0;
    color: #475569;
    line-height: 1.55;
    font-size: 0.94rem;
}

.mtn-verify-modal__note {
    margin: 14px 0 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
    font-size: 0.86rem;
    line-height: 1.45;
    text-align: left;
}

.mtn-verify-modal__panel--warning .mtn-verify-modal__note {
    background: #FFFBEB;
    border-color: #FDE68A;
    color: #92400E;
}

.mtn-verify-modal__actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.mtn-verify-modal__btn {
    flex: 1;
    border: 0;
    border-radius: 14px;
    padding: 13px 16px;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mtn-verify-modal__btn:active {
    transform: scale(0.98);
}

.mtn-verify-modal__btn--ghost {
    background: #F1F5F9;
    color: #334155;
}

.mtn-verify-modal__btn--primary {
    background: linear-gradient(135deg, #16A34A, #15803D);
    color: #fff;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.28);
}

.mtn-verify-modal__btn--danger {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: #fff;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.28);
}

@keyframes mtnVerifyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mtnVerifyPopIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mtnVerifyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}
