*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#050816;
    color:white;
}

.container{
    width:100%;
    max-width:450px;
    margin:auto;
    padding:20px;
}

.profile-card{
    text-align:center;
    margin-bottom:30px;
}

.profile-img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #00e1ff;
    box-shadow:0 0 30px #00e1ff;
    margin-bottom:15px;
}

.profile-card h1{
    font-size:30px;
    color:#00e1ff;
    text-shadow:0 0 20px #00e1ff;
}

.profile-card p{
    color:#ccc;
    margin-top:10px;
    font-size:14px;
}

.payment-box{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.payment-card{
    background:#0b1327;
    border-radius:25px;
    padding:20px;
    border:2px solid rgba(0,255,255,0.2);
    box-shadow:0 0 20px rgba(0,255,255,0.1);
}

.top{
    font-size:22px;
    margin-bottom:15px;
    font-weight:bold;
}

.icon{
    color:#00e1ff;
    margin-right:8px;
}

.payment-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.payment-content h3{
    color:#00e1ff;
    letter-spacing:2px;
}

button{
    border:none;
    background:linear-gradient(
        45deg,
        #00e1ff,
        #5d00ff
    );

    color:white;
    padding:12px 18px;
    border-radius:15px;
    cursor:pointer;
    font-weight:bold;
}

button:hover{
    opacity:.8;
}

.qris-img{
    width:100%;
    border-radius:20px;
}

@media(max-width:500px){

    .payment-content{
        flex-direction:column;
        align-items:flex-start;
    }

    button{
        width:100%;
    }
}