*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{

    background:#f2f2f2;
    padding:20px;

}

header{

    text-align:center;
    margin-bottom:20px;

}

header h1{

    color:#0a58ca;
    font-size:40px;

}

.top-bar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:white;

    padding:15px 20px;

    border-radius:10px;

    box-shadow:0 0 10px rgba(0,0,0,.1);

    margin-bottom:30px;

}

.wallet{

    font-size:20px;
    font-weight:bold;

}

.recharge-btn{

    padding:10px 20px;

    border:none;

    background:#28a745;

    color:white;

    border-radius:6px;

    cursor:pointer;

    font-size:16px;

}

.recharge-btn:hover{

    background:#1f8a39;

}

.bet-container{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;

}

.bet-box{

    background:white;

    border-radius:10px;

    padding:15px;

    text-align:center;

    box-shadow:0 0 8px rgba(0,0,0,.15);

}

.number{

    width:70px;
    height:70px;

    background:#0d6efd;

    color:white;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:bold;

    border-radius:8px;

}

.bet-box input{

    width:100%;

    margin-top:15px;

    padding:10px;

    text-align:center;

    font-size:18px;

}

.btn-area{

    text-align:center;

    margin-top:35px;

}

#placeBet{

    background:#ff6600;

    color:white;

    border:none;

    padding:15px 45px;

    font-size:20px;

    border-radius:8px;

    cursor:pointer;

}

#placeBet:hover{

    background:#e45700;

}

@media(max-width:700px){

.bet-container{

grid-template-columns:repeat(2,1fr);

}

.number{

width:60px;
height:60px;

font-size:24px;

}

}




/* ==========================
RESULT SECTION
========================== */

.result-section{

    margin-top:35px;

    display:flex;
    flex-direction:column;

    gap:20px;

}

.result-box{

    background:#ffffff;

    padding:18px;

    border-radius:10px;

    box-shadow:0 0 8px rgba(0,0,0,.15);

    text-align:center;

}

.result-box h3{

    margin-bottom:12px;

    color:#0d6efd;

    font-size:22px;

}

#winningNumber{

    font-size:40px;

    font-weight:bold;

    color:#ff0000;

}

#winningAmount{

    font-size:36px;

    font-weight:bold;

    color:#28a745;

}


.countdown-box{
    width:100%;
    background:#fff;
    border-radius:12px;
    padding:20px;
    margin-bottom:20px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.countdown-box h3{
    color:#0d6efd;
    margin-bottom:10px;
}

#countdown{
    font-size:40px;
    font-weight:bold;
    color:red;
}




