.topup-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin:20px 0;
}

.back-btn{
    width:42px;
    height:42px;
    border-radius:12px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111827;
    text-decoration:none;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
}

.topup-header h2{
    margin:0;
    font-size:32px;
    font-weight:800;
}

.topup-card{
    background:#fff;
    border-radius:24px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.topup-balance{
    margin-bottom:30px;
}

.topup-balance span{
    display:block;
    color:#64748b;
    margin-bottom:8px;
}

.topup-balance strong{
    font-size:48px;
    font-weight:900;
    color:#2563eb;
}

.nominal-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin:15px 0 25px;
}

.nominal-btn{
    height:52px;
    border:none;
    border-radius:14px;
    background:#eef4ff;
    color:#2563eb;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.nominal-btn:hover{
    background:#dbeafe;
}

.nominal-btn.active{
    background:#2563eb;
    color:#fff;
}

#nominal{
    width:100%;
    height:56px;
    border:1px solid #dbe2ea;
    border-radius:16px;
    padding:0 16px;
    font-size:16px;
    margin-bottom:20px;
}

.topup-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:16px;
    background:linear-gradient(
        135deg,
        #2563eb,
        #4f86ff
    );
    color:#fff;
    font-size:18px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
}

.topup-btn svg{
    width:22px;
    height:22px;
}

@media(max-width:768px){

    .topup-card{
        padding:18px;
    }

    .topup-header h2{
        font-size:26px;
    }

    .topup-balance strong{
        font-size:36px;
    }

    .nominal-grid{
        grid-template-columns:1fr 1fr;
    }

}

.topup-type{
    display:flex;
    gap:10px;
    margin:25px 0;
}

.type-btn{
    flex:1;
    min-height:60px;

    border:none;
    border-radius:14px;

    background:#eef4ff;
    color:#2563eb;

    font-size:14px;
    font-weight:700;

    cursor:pointer;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:4px;

    text-align:center;

    padding:8px;
}

.type-btn svg{
    width:18px;
    height:18px;
    flex-shrink:0;
}

.type-btn.active{
    background:#2563eb;
    color:#fff;
}


.topup-content{
    display:none;
}

.topup-content.active{
    display:block;
}

.manual-card{
    background:#f8fafc;
    border-radius:18px;
    padding:20px;
}

.bank-item{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:15px;
    margin-bottom:12px;
}

.bank-item strong{
    display:block;
    font-size:18px;
}

.bank-item span{
    display:block;
    font-weight:700;
    color:#2563eb;
    margin:5px 0;
}

.bank-item small{
    color:#64748b;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-input,
.form-file{
    width:100%;
    border:1px solid #dbe2ea;
    border-radius:14px;
    padding:14px;
    font-size:15px;
    background:#fff;
}

.form-file{
    cursor:pointer;
}

.topup-methods{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.method-card{
    background:#fff;
    border-radius:20px;
    padding:20px;
    text-decoration:none;
    color:#111827;

    border:1px solid #e5e7eb;

    transition:.2s;
}

.method-card:hover{
    transform:translateY(-2px);
    border-color:#2563eb;
}

.method-card svg{
    width:28px;
    height:28px;
    color:#2563eb;
    margin-bottom:12px;
}

.method-card h3{
    margin:0 0 8px;
    font-size:20px;
    font-weight:800;
}

.method-card p{
    margin:0;
    color:#64748b;
    line-height:1.6;
}

.topup-methods{
    max-width:900px;
    margin:20px auto;
    padding:0 15px;
}

.method-card{
    width:100%;
    box-sizing:border-box;
}

.method-card{
    background:#fff;
    border-radius:22px;
    padding:24px;
    margin-bottom:15px;

    box-shadow:
    0 8px 25px rgba(0,0,0,.05);

    border:none;
}

.payment-box{
    background:#eef4ff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    margin-bottom:20px;
}

.payment-box small{
    display:block;
    color:#64748b;
}

.payment-box h1{
    margin:10px 0 0;
    font-size:42px;
    color:#2563eb;
    font-weight:900;
}

.info-box{
    background:#fffbeb;
    color:#92400e;
    border-radius:14px;
    padding:15px;
    margin:20px 0;
}

.form-group{
    margin-bottom:20px;
}

.form-file{
    width:100%;
    padding:14px;
    border:1px solid #dbe2ea;
    border-radius:14px;
}

.bank-card{
    display:flex;
    align-items:center;
    gap:15px;

    background:#f8fafc;
    border:1px solid #e5e7eb;

    border-radius:18px;
    padding:18px;
    margin:20px 0;

    flex-wrap:wrap;
}

@media(max-width:768px){

    .bank-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .bank-left{
        margin-bottom:5px;
    }

    .bank-right{
        width:100%;
    }

    .bank-right span{
        font-size:28px;
        word-break:break-all;
    }

    .copy-btn{
        width:100%;
        margin-top:12px;
    }

    .payment-box h1{
        font-size:34px;
        line-height:1.2;
        word-break:break-all;
    }

    .info-box{
        font-size:14px;
        line-height:1.6;
    }

}

.bank-left{
    width:52px;
    height:52px;

    border-radius:14px;

    background:#eef4ff;
    color:#2563eb;

    display:flex;
    align-items:center;
    justify-content:center;
}

.bank-left svg{
    width:24px;
    height:24px;
}

.bank-right{
    flex:1;
}

.bank-right small{
    display:block;
    color:#64748b;
    margin-bottom:4px;
}

.bank-right strong{
    display:block;
    font-size:18px;
}

.bank-right span{
    display:block;
    font-size:22px;
    font-weight:800;
    color:#2563eb;
}

.bank-right p{
    margin:4px 0 0;
    color:#64748b;
}

.copy-btn{
    border:none;

    background:#2563eb;
    color:#fff;

    padding:10px 16px;

    border-radius:12px;

    cursor:pointer;

    font-weight:700;
}

.bank-top{
    display:flex;
    align-items:center;
    gap:15px;
    width:100%;
}

.copy-btn{
    width:100%;
    margin-top:15px;
}



.copy-toast{
    position:fixed;

    top:20px;
    left:50%;

    transform:
    translateX(-50%)
    translateY(-20px);

    background:#2563eb;
    color:#fff;

    padding:14px 20px;

    border-radius:14px;

    display:flex;
    align-items:center;
    gap:10px;

    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:.3s;
}

.copy-toast.show{

    opacity:1;
    visibility:visible;

    transform:
    translateX(-50%)
    translateY(0);

}

.copy-toast svg{
    width:20px;
    height:20px;
}

.rekening-number{
    display:block;
    font-size:24px;
    font-weight:800;
    color:#2563eb;
    margin:5px 0;
}