*{
    box-sizing:border-box;
}


body{

    margin:0;

    background:#080f25;

    color:white;

    font-family:Arial, sans-serif;

    padding-bottom:130px;

}



/* MAIN CONTAINER */

.container{

    width:94%;

    max-width:650px;

    margin:auto;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:50px 0 180px;

}



/* BACK BUTTON */

.back{

    display:inline-block;

    color:white;

    text-decoration:none;

    font-size:22px;

    margin-bottom:25px;

}



/* TITLE */

h1{

    text-align:center;

    color:#ffd700;

    font-size:52px;

    margin:20px 0 30px;

}



/* INTRO TEXT */

.intro{

    text-align:center;

    color:#ddd;

    font-size:24px;

    line-height:1.7;

}



/* WHATSAPP BUTTON */

.whatsapp{

    display:block;

    width:100%;

    margin:35px auto;

    padding:22px;

    background:#25D366;

    color:white;

    text-align:center;

    text-decoration:none;

    border-radius:18px;

    font-weight:bold;

    font-size:22px;

    box-shadow:0 5px 15px rgba(37,211,102,.35);

}



/* DIVIDER */

.line{

    height:2px;

    background:#ffffff25;

    margin:40px 0;

}



/* SECTION TITLES */

h2{

    text-align:center;

    color:#ffd700;

    font-size:28px;

    margin-bottom:25px;

}



/* HOW TO JOIN */

.steps{

    background:#101a38;

    padding:25px;

    border-radius:18px;

    border:1px solid #ffffff15;

}


.steps p{

    margin:18px 0;

    font-size:22px;

    color:#eee;

}



/* ================= BOOKMAKER CARDS ================= */

.bookmaker{

    display:flex;

    justify-content:space-between;

    align-items:center;

    width:100%;

    color:white;

    text-decoration:none;

    padding:22px;

    margin:18px 0;

    border-radius:18px;

    font-size:22px;

    font-weight:900;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.35);

}


/* ================= BOOKMAKER COLORS ================= */

/* SPORTYBET */
.sportybet{
    background:#E30613;
    border:2px solid #ffffff;
}

/* 1WIN */
.onewin{
    background:#8ED1FC;
    border:2px solid #d9f3ff;
    color:#002b45;
}

/* BETPAWA */
.betpawa{
    background:#00A651;
    border:2px solid #5cff9d;
}

/* BET365 */
.bet365{
    background:#0B7A3B;
    border:2px solid #FFD700;
}

/* 1XBET */
.onexbet{
    background:#EC4B2E;
    border:2px solid #ff9a85;
}

/* HOVER */
.bookmaker:hover{
    transform:translateY(-5px) scale(1.02);
    filter:brightness(1.12);
}

/* ARROW */
.bookmaker b{
    color:#ffffff;
    font-size:35px;
}

/* 1WIN TEXT + ARROW */
.onewin,
.onewin b{
    color:#002b45;
}



/* HELP */

.help{

    text-align:center;

    margin-top:45px;

    color:#aaa;

    font-size:22px;

}


.help span{

    color:#25D366;

    font-weight:bold;

}



/* MOBILE ADJUSTMENT */

@media(max-width:600px){

    .container{

        width:92%;

        padding:40px 0 170px;

    }


    h1{

        font-size:42px;

    }


    .intro{

        font-size:20px;

    }


    h2{

        font-size:24px;

    }


    .steps p{

        font-size:19px;

    }


    .bookmaker{

        font-size:21px;

        padding:22px;

    }


    .whatsapp{

        font-size:20px;

    }

}