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

body{
    background:#07192f;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:20px;
}

.container{
    width:100%;
    max-width:900px;
}

.maintenance-box{
    background:#0d2d52;
    padding:25px;
    border-radius:15px;
    text-align:center;
    margin-bottom:25px;
    box-shadow:0 0 20px rgba(0,0,0,.35);
}

.maintenance-box h1{
    color:#33ff99;
    margin-bottom:10px;
}

.maintenance-box p{
    color:#ddd;
    line-height:1.6;
}

.status-section{
    background:#102d4d;
    padding:20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 0 15px rgba(0,0,0,.3);
}

table{
    width:100%;
    border-collapse:collapse;
    margin:20px 0;
}

table th{
    background:#1d4e89;
    padding:14px;
}

table td{
    background:#16375e;
    padding:14px;
    border:1px solid rgba(255,255,255,.08);
}

.active{
    color:#35ff79;
    font-weight:bold;
}

button{
    width:100%;
    background:#00b86b;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:15px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#009e5c;
}

.user-btn{
    width:100%;
}

.hidden{
    display:none;
}

input{
    width:100%;
    margin-top:15px;
    margin-bottom:15px;
    padding:14px;
    border:none;
    border-radius:10px;
    outline:none;
    font-size:16px;
}

#message{
    margin-top:15px;
    font-weight:bold;
    text-align:center;
}

.success{
    color:#3dff82;
}

.error{
    color:#ff4d4d;
}

.warning{
    color:#ffd54f;
}

.card{
    margin-top:25px;
    background:#102d4d;
    border-radius:15px;
    padding:25px;
    box-shadow:0 0 20px rgba(0,0,0,.35);
}

.card h2{
    margin-bottom:15px;
}

.balance{
    font-size:30px;
    color:#33ff99;
    margin:20px 0;
    font-weight:bold;
}

.status{
    font-size:18px;
    margin-bottom:20px;
}

.countdown{
    font-size:22px;
    color:#ffd54f;
    margin-top:15px;
}

.withdraw-form input{
    margin-bottom:15px;
}

.withdraw-form button{
    margin-top:5px;
}

@media(max-width:768px){

    .maintenance-box{
        padding:20px;
    }

    table th,
    table td{
        font-size:14px;
        padding:10px;
    }

    button{
        font-size:15px;
    }

    .balance{
        font-size:24px;
    }

}