*{
    margin: 0;
    padding: 0;
}

body{
    font-family: Roboto, sans-serif;
    background-color: var(--dark);
    color: #FFF;
}
a{color: #FFF;text-decoration: none;}
ul{margin-left: 40px;}
li{list-style-type: square;}
li::marker{color: var(--light-add);}
h1, h2, h3{padding: 15px 0; font-style: italic;}
h1{font-size: 50px;}
h2, h3{
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
h2::before, h3::before{
    content: '';
    width: 30px;
    height: 5px;
    display: block;
    margin-right: 10px;
    background-color: var(--light-add);
}
p{
    padding: 5px 0;
    color: #DDD;
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
}
li{color: #DDD;}

.container{
    max-width: 1300px;
    margin: auto;
    padding: 0 8px;
}

header{width: 100%; background-image: linear-gradient(92deg, var(--light), var(--dark));}
.header{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.headerLogo{
    height: 60px;
    width: 18%;
    display: flex;
    align-items: center;
    margin-right: 30px;
}
.headerLogo img{max-width: 100%;max-height: 60px;}
.headerLinks{
    width: 90%;
    display: flex;
}
.headerLinksPages{
    width: 70%;
    display: flex;
    align-items: center;
}
.headerLinksBtn{
    width: 50%;
    display: flex;
    justify-content: right;
}
.headerLinks > div > a{
    font-size: 18px;
    font-weight: 700;
    margin: 0 15px;
    transition: all .5s;
}
.headerLinksBtn > a{
    padding: 2px 20px 5px 20px;
    color: #FFF;
    border: 3px solid var(--dark-add);
    border-radius: 8px;
}
.headerLinksBtn > a:first-child{
    background-color: var(--dark-add);
    border-color: var(--dark-add);
    color: #FFF;
}
.headerLinks > div > a:hover{color: var(--light-add); background: none;}
.mainLink{
    color: var(--light-add);
    border-bottom: 2px solid var(--light-add);
}

.mainImg{
    border-radius: 40px;
    margin: 20px 0;
    width: 100%;
}

.banner{
    width: 100%;
    height: calc(100vh - 60px);
    background-image: url(../img/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner > div{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 60%;
}
.banner > div > p{font-size: 20px;}
.banner *{text-align: center;}

.bonus{
    display: block;
    text-align: center;
    font-size: 28px;
    width: 160px;
    margin: 40px auto 40px auto;
    background: var(--dark-add);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all .5s;
}
.bonus:hover{background: #fff; color: var(--dark-add);}
.bonusMain{font-size: 30px; width: 220px; font-weight: 700;}
.bonusBig{width: 400px;}

.games{
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.games > a{
    width: 22%;
    height: 160px;
    border-radius: 20px;
    margin-top: 20px;
    transition: all .5s;
}
.games > a::after{
    content: 'PLAY FREE';
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 30px;
    font-weight: 700;
    color: var(--light-add);
    width: 100%;
    height: 100%;
    top: calc(-100% - 5px);
    left: 0;
    opacity: 0;
    border-radius: 20px;
    transition: all .5s;
    background-color: rgba(0, 0, 0, 0);
}
.games > a:hover:after{opacity: 1;background-color: rgba(0, 0, 0, 0.8);}
.games > a > img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.games > a:hover{transform: scale(1.1);}

.faq_q{
    padding: 20px;
    background-color: var(--light);
    border: none;
    border-radius: 20px 20px 0 0;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 900;
    width: 100%;
    text-align: left;
    display: flex;
    cursor: pointer;
}
.faq_q:first-child{margin-top: 40px;}
.faq_h{
    max-height: 0;
    width: calc(100% - 40px);
    border-radius: 0 0 20px 20px;
    background-color: var(--light);
    padding: 0 20px;
    margin-bottom: 20px;
    line-height: 40px;
    font-weight: 700;
    border-top: solid 2px var(--gray);
    color: rgba(255, 255, 255, .8);
    overflow: hidden;
    transition: all .4s ease-out;
}
.faq_btn{
    position: relative;
    display: block;
    margin-left: auto;
    height: 20px;
    width: 20px;
}
.faq_btn::after, .faq_btn::before{
    content: '';
    position: absolute;
    top: 0;
    height: 20px;
    width: 2px;
    background-color: #FFF;
    border-radius: 5px;
    transition: all .3s;
}
.faq_btn::before{transform: rotate(90deg);}
.faq_active::after{transform: rotate(45deg);}
.faq_active::before{transform: rotate(135deg);}

footer{
    text-align: center;
    background-color: var(--light);
    padding: 50px;
    margin-top: 50px;
}
footer img{max-height: 50px;margin: 10px;transition: all .5s;}
footer img:hover{filter: brightness(2);}
footer a{transition: all .4s;}

@media screen and (max-width: 1000px){
    h1{margin-top: 50px; font-size: 26px;}
    .banner > div > p{font-size: 18px;}
    .banner > .container{width: 90%;}
    .container{padding: 10px;}
    .games > a{width: 45%; height: 120px}
    header{
        position: fixed;
        top: 0;
        background-color: var(--light);
    }
    header > .container{margin: 0;padding: 0;}
    .header{justify-content: space-between;}
    .headerLinks{
        position: fixed;
        top: -100%;
        height: 100vh;
        width: 100%;
        background-color: #001;
        transition: all .5s;
    }
    .headerLinksActive{top: 0;}
    .headerLinksPages{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .headerLinks > div > a{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 10%;
    }
    .headerLinksBtn{display: none;}
    .headerBurger{
        display: block;
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
        margin-top: 10px;
        margin-right: 20px;
        transition: all .5s;
    }
    .headerBurger > div, .headerBurger::after, .headerBurger::before{
        content: '';
        position: absolute;
        top: 0;
        height: 2px;
        width: 30px;
        background-color: #FFF;
        border-radius: 5px;
        opacity: 1;
        transition: all .3s;
    }
    .headerBurger::before{top: 10px;}
    .headerBurger::after{top: 21px;}
    .headerBurgerActive > div{opacity: 0;}
    .headerBurgerActive::after{transform: rotate(45deg); top: 10px; height: 3px;}
    .headerBurgerActive::before{transform: rotate(135deg); height: 3px;}
    .headerLogo{width: 50%;}
    .banner{height: 100vh;}
    .bonusBig{width: 300px;}
}
