* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #e9eef2;
    text-align: center;
}

.company{
    font-size: 10px;
    color: white;
    background: #1D4268;
    height: 50px;
}

.logo {
    text-align: left;
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #205583;
    color: white;
}
.auth-buttons button {
    margin-left: 10px;
    padding: 10px;
    border: none;
    cursor: pointer;
}
.login {
    background: #276aa5;
    border-radius: 5px;
    color: white;
}
.register {
    background: #7EAC2F;
    color: white;
    border-radius: 5px;
}
.banner img {
    width: 100%;
    max-height: 700px;
}
.bonus-info {
    padding: 20px;
    background: #083b73;
    color: rgb(215, 240, 232);
}
.get-bonus {
    margin-top: 10px;
    padding: 10px;
    background: #7EAC2F;
    color: white;
    border: none;
    cursor: pointer;
}
.menu {
    display: flex;
    justify-content: space-evenly;
    background: rgb(231, 244, 243);
    padding: 10px;
    flex-wrap: wrap;
   
}
.menu button {
    padding: 10px;
    border: none;
    cursor: pointer;
    background: #ffffff;
    color: rgb(63, 0, 249);
    flex: 1;
    margin: 5px;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    border-radius: 10px;
}
.bet-options {
    padding: 20px;
}
.option {
    margin: 10px auto;
    width: 90%;
}
.option img {
    width: 100%;
    border-radius: 5px;
    border: 5px solid white;
}
.option p {
    margin-top: 5px;
    font-weight: bold;
}
footer {
    display: flex;
    justify-content: center;
    background: #083b73;
    padding: 15px;
}
.download {
    margin: 5px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: #4caf50;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
.download img {
    width: 20px;
    height: 20px;
}
@media (max-width: 600px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px;
    }
    
    .logo {
        text-align: left;
        margin-top: 10px;
        font-size: 20px;
        font-weight: bold;
    }
    
    .auth-buttons {
        display: flex;
        gap: 5px;
    }
    .auth-buttons button, .download {
        width: 90%;
        margin: 5px 0;
    }
    .menu {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }
    .menu button {
        flex: none;
        white-space: nowrap;
    }
    .option img{
        width: 100%;
    border-radius: 5px;
    height: 150px;
    }
    .get-bonus{
        width: 100%;
        border-radius: 5px;
    }
}