.maty-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.maty-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.maty-popup-box {
    background: #fff;
    width: 90%;
    max-width: 420px;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transform: scale(.92);
    transition: transform .25s ease;
}

.maty-popup-overlay.active .maty-popup-box {
    transform: scale(1);
}

.maty-popup-btn {
    padding: 12px 18px;
    width: 100%;
    margin-top: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.maty-wallet {
    background: #1dbf73;
    color: #fff;
}

.maty-bank {
    background: #d63031;
    color: #fff;
}
