#minRechargeModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999990;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: mrFadeIn .22s ease;
}
#minRechargeModal.active { display: flex; }
@keyframes mrFadeIn { from { opacity:0 } to { opacity:1 } }
.mr-card {
    background: linear-gradient(145deg, #12002a 0%, #1a0036 60%, #0e001f 100%);
    border: 1px solid rgba(160,80,255,.35);
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(120,40,255,.35), 0 0 120px rgba(0,200,255,.1);
    max-width: 480px;
    width: 100%;
    padding: 0;
    overflow: hidden;
    animation: mrSlideUp .28s cubic-bezier(.34,1.56,.64,1);
}
@keyframes mrSlideUp { from { opacity:0; transform:translateY(40px) scale(.95) } to { opacity:1; transform:translateY(0) scale(1) } }
.mr-header {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #06b6d4 100%);
    padding: 28px 28px 24px;
    text-align: center;
    position: relative;
}
.mr-icon-wrap {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 32px;
    box-shadow: 0 0 0 6px rgba(255,255,255,.1);
}
.mr-header h2 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -.3px;
}
.mr-header p {
    color: rgba(255,255,255,.82);
    font-size: .88rem;
    margin: 0;
}
.mr-body {
    padding: 26px 28px;
}
.mr-amount-badge {
    background: linear-gradient(135deg, rgba(120,40,255,.18), rgba(6,182,212,.15));
    border: 1px solid rgba(120,40,255,.4);
    border-radius: 14px;
    padding: 18px 20px;
    text-align: center;
    margin-bottom: 20px;
}
.mr-amount-badge .mr-label {
    color: rgba(200,160,255,.8);
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}
.mr-amount-badge .mr-amount {
    color: #c084fc;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}
.mr-amount-badge .mr-currency {
    color: rgba(200,160,255,.7);
    font-size: .9rem;
    margin-top: 4px;
}
.mr-perks {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mr-perks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(220,200,255,.85);
    font-size: .87rem;
    line-height: 1.45;
}
.mr-perks li .mr-perk-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg,#7c3aed,#06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    color: #fff;
    margin-top: 1px;
}
.mr-unlock {
    background: rgba(6,182,212,.08);
    border: 1px solid rgba(6,182,212,.25);
    border-radius: 10px;
    padding: 12px 16px;
    color: rgba(103,232,249,.9);
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}
.mr-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.mr-btn-ok {
    flex: 1;
    min-width: 120px;
    background: linear-gradient(135deg,#7c3aed,#a855f7);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    padding: 13px 20px;
    cursor: pointer;
    transition: opacity .18s, transform .18s;
    box-shadow: 0 4px 20px rgba(124,58,237,.45);
}
.mr-btn-ok:hover { opacity:.88; transform:translateY(-1px); }
.mr-btn-close {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    padding: 13px 18px;
    cursor: pointer;
    transition: background .18s;
}
.mr-btn-close:hover { background: rgba(255,255,255,.1); }
@media (max-width: 420px) {
    .mr-card { border-radius: 16px; }
    .mr-header { padding: 22px 20px 18px; }
    .mr-body { padding: 20px; }
    .mr-amount-badge .mr-amount { font-size: 2.1rem; }
    .mr-header h2 { font-size: 1.15rem; }
}
