@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html{
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
}

body{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px !important;
    line-height: 24px;
    font-style: normal;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(51, 98, 107, 1);
    cursor: default;
}

.section{
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 20px;
    background-color: rgba(41, 79, 86, 1);
    border-radius: 3px;
    overflow: hidden;
}

.title{
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
}

.title.general{
    font-size: 32px;
    line-height: 40px;
}

.title.medium{
    font-size: 15px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: left;
}

.button{
    box-sizing: border-box;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    padding: 12px 24px;
    height: 48px;
    min-width: 176px;
    width: fit-content;
    border-radius: 3px;
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
    background-color: rgba(235, 88, 81, 1);
    color: rgba(255, 255, 255, 1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    -webkit-transition: transform 0.3s ease, background-color 0.3s ease;
}

.button.install{
    padding: 8px 32px;
    height: 56px;
    min-width: 242px;
    gap: 16px;
    line-height: 20px;
    text-transform: uppercase;
    background: rgba(65, 175, 90, 1);
    justify-content: flex-start;
    text-align: left;
}

.button:hover, .button:focus {
    transform: scale(1.07);
    -webkit-transform: scale(1.07);
}

.keyword{
    color: rgba(65, 175, 90, 1);
}

.current{
    color: rgba(65, 175, 90, 1);
}

.list{
    display: flex;
}

/* header */
.header{
    background-color: rgba(41, 79, 86, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 72px;
    margin-bottom: 20px;
}

.header__container{
    max-width: 1600px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 16px 48px;
    margin: 0 auto;
    position: relative;
}

.header__logo{
    transition: transform 0.3s ease;
}

.header__logo:hover, .header__logo:focus {
    transform: scale(1.07);
}

.header__menu{
    margin-left: 48px;
    color: rgba(255, 255, 255, 1);
}

.header__menu ul{
    display: flex;
    gap: 24px;
}

.header__menu ul li{
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.header__menu ul li:hover, .header__menu ul li:focus{
    color: rgba(65, 175, 90, 1);
}

.header__button-auth{
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-right: 16px;
}

.header__login{
    background-color: rgba(51, 98, 107, 1);
    min-width: 79px;
    height: 40px;
    padding: 8px 16px;
}

.header__register{
    min-width: 137px;
    background-color: rgba(65, 175, 90, 1);
    height: 40px;
    padding: 8px 16px;
}

.header__login:hover, .header__login:focus{
    background-color: rgba(65, 175, 90, 1);
}

.header__register:hover, .header__register:focus{
    background-color: rgba(51, 98, 107, 1);
}

.header__lang{
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1600px;
    position: relative;
    margin: 0 auto;
}

.main__container{
    display: flex;
    gap: 20px;
    max-width: 1600px;
    width: 100%;
    padding: 0 48px;
}

.main__content{
    width: calc(100% - 616px);
    max-width: 984px;
    flex-grow: 1;
}

/* mobile-menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(41, 79, 86, 1);
    border-radius: 0 0 12px 12px;
    z-index: 50;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    opacity: 0;
    padding: 48px 20px;
    transition: opacity 0.3s ease-in-out;
}

.mobile-menu.active .mobile-menu__content {
    opacity: 1;
}

/* hero */
.hero {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1600px;
    position: relative;
    margin: 0 auto;
    margin-bottom: 20px;
    background-color: rgba(22, 61, 68, 1);
    color: rgba(255, 255, 255, 1);
    min-height: 360px;
    margin-top: 72px;
    border-radius: 6px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home .hero{
    background-image: url('../img/bg-main.png');
}

.bonus .hero{
    background-image: url('../img/bg-bonus.png');
}

.app .hero{
    background-image: url('../img/bg-app.png');
}

.hero__info{
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    max-width: 482px;
    border-radius: 3px;
    gap: 16px;
    margin-left: 288px;
}

.breadcrumbs{
    display: flex;
    font-weight: 700;
}

.breadcrumbs li:first-child span{
    opacity: 0.84;
    font-weight: 400;
}

.breadcrumbs li:not(:first-child)::before {
    content: "|";
    display: inline-block;
    margin-left: 6.5px;
    margin-right: 3px;
}

.hero__rating{
    text-transform: uppercase;
}

.hero__text{
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

/* sidebar */
.sidebar{
    width: 240px;
    flex-shrink: 0;
    position: sticky;
    margin-bottom: 20px;
    top: 92px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: calc(100vh - 112px);
    height: fit-content;
    overflow-y: auto;
    scrollbar-width: none;
}

.bonus .sidebar__right, .app .sidebar__right{
    display: none;
}

.sidebar__left{
    border-radius: 3px;
}

.sidebar__list{
    gap: 8px;
    flex-direction: column;
    background-color: rgba(41, 79, 86, 1);
    border-radius: 0 0 3px 3px;
}

.sidebar__list li{
    padding: 4px 16px;
    transition: color 0.3s ease;
}

.sidebar__list li a{
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    transition: font-weight 0.3s ease, color 0.3s ease;
}

.sidebar__list li:hover a, .sidebar__list li:focus a{
    font-weight: 700;
    color: rgba(95, 207, 121, 1);
}

.sidebar__table-content .sidebar__list{
    padding: 8px 0;
    opacity: 1;
    max-height: 408px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.sidebar__table-content:not(.open) .sidebar__list {
    max-height: 0;
    opacity: 0;
    padding: 0;
}

.sidebar__arrow{
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.sidebar__table-content:not(.open) .sidebar__arrow{
    transform: rotate(0deg);
}

.sidebar__title{
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background-color: rgba(33, 63, 69, 1);
    border-radius: 3px 3px 0 0;
    cursor: pointer;
}

.sidebar__app{
    background-color: rgba(255, 255, 255, 1);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.sidebar-app__heading{
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 3px 3px 0 0;
}

.sidebar-app__heading img{
    flex-shrink: 0;
}

.sidebar-app__heading p{
    text-align: center;
    text-transform: uppercase;
    max-width: 160px;
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    color: rgba(60, 64, 75, 1);
}

.sidebar-app__text{
    padding: 20px 8px;
    background: linear-gradient(90deg, #0A626A 0%, #2DB155 100%);
    border-radius: 0px 0px 3px 3px;
}

.sidebar-app__text p{
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    align-items: center;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    max-width: 140px;
}

.sidebar-app__button{
    padding: 16px 8px;
    border-radius: 0 0 3px 3px;
}

.sidebar-app__button .button{
    min-width: 150px;
    height: 40px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    border-radius: 50px;
}

.sidebar-app__image{
    position: absolute;
    bottom: 20px;
    right: 8px;
}

.sidebar__games{
    gap: 8px;
    flex-direction: column;
}

.sidebar__games a{
    display: flex;
    flex-direction: column;
    height: 120px;
    border-radius: 3px;
    overflow: hidden;
}

.sidebar-games__name{
    background-color: rgba(65, 175, 90, 1);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    width: 100%;
}

/* advantages */
.advantages{
    gap: 20px;
}

.advantages__wrap{
    display: flex;
    gap: 20px;
}

.advantages__list{
    flex-direction: column;
    width: calc((100% - 20px) / 2);
    border-radius: 3px;
    border: 1px solid rgba(95, 207, 121, 1);
    background-color: rgba(38, 73, 79, 1);
}

.advantages__table{
    display: flex;
    flex-direction: column;
    width: calc((100% - 20px) / 2);
    border-radius: 3px;
    border: 1px solid rgba(95, 207, 121, 1);
    background-color: rgba(38, 73, 79, 1);
}

.advantages__table tbody{
    display: flex;
    flex-direction: column;
}

.advantages__list li, .advantages__table tr{
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 20px;
    color: rgba(255, 255, 255, 1);
    height: 48px;
}

.advantages__table td:first-child{
    font-weight: 700;
    text-transform: uppercase;
    width: 50%;
}

/* banner */
.banner{
    min-height: 280px;
    background-image: url('../img/banner.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    background-color: rgba(23, 44, 48, 1);
}

.banner__info{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    max-width: 442px;
    color: rgba(255, 255, 255, 1);
}

.banner__title{
    font-size: 32px;
    line-height: 40px;
}

.banner__text{
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    text-transform: uppercase;
}

/* info */
.info__list{
    flex-direction: column;
    gap: 8px;
}

.info__list li{
   display: flex;
   align-items: center;
   gap: 4px;
}

.info__list li::before{
    content: '';
    width: 3px !important;
    height: 3px !important;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 8px;
    margin-right: 8px;
    background-color: rgba(255, 255, 255, 1);
}

.info__title{
    font-size: 15px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
}

.info__button{
    margin: 0 auto;
}

/* casino */
.casino__title{
    font-size: 15px !important;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
}

/* rating */
.rating__list{
    flex-direction: column;
}

.rating__item{
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    gap: 20px;
}

.rating__category{
    min-width: 191px;
}

.rating__num{
    min-width: 191px;
    text-align: center;
}

.rating__grade{
    max-width: 482px;
    width: 100%;
    height: 16px;
    border-radius: 1000px;
    background-color: rgba(38, 73, 79, 1);
}

.rating-grade__value{
    height: 100%;
    border-radius: 1000px;
    background-color: rgba(95, 207, 121, 1);
}

.rating__button{
    margin: 0 auto;
}

/* faq */
.faq__list{
    gap: 8px;
    flex-direction: column;
}

.faq__item{
    padding: 16px 20px;
    background-color: rgba(38, 73, 79, 1);
    border-radius: 3px;
    border: 1px solid transparent;
    transition: padding 0.3s ease, border 0.3s ease;
}

.faq__item.active{
    padding: 12px 20px;
    border: 1px solid rgba(95, 207, 121, 1);
}

.faq__question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.faq__answer{
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    opacity: 1;
}

.faq__arrow{
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.faq__item.active .faq__arrow{
    transform: rotate(0deg);
}

/* bonuses */
.bonuses{
    padding: 0;
    background-color: transparent;
}

.bonuses__list{
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.bonuses__list li{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(38, 73, 79, 1);
    border: 1px solid rgba(95, 207, 121, 1);
    border-radius: 3px;
    width: calc((100% - 40px) / 3);
}

.bonuses__list img{
    width: 100%;
}

.bonuses__info{
    color: rgba(255, 255, 255, 1);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.bonuses__title{
    font-weight: 700;
    font-size: 15px !important;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
}

.bonuses__button{
    width: 100%;
    height: 40px;
    background-color: rgba(65, 175, 90, 1);
}

/* download */
.download{
    background-image: url('../img/download.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row !important;
    min-height: 200px;
}

.download__button-group{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.download__logo{
    max-width: 154px;
}

/* footer */
.footer{
    max-width: 1600px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(16, 42, 46, 1);
    flex-direction: column;
    gap: 8px;
}

.footer__links{
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(60, 64, 75, 1);
    background-color: rgba(255, 255, 255, 1);
    border-radius: 3px;
    padding: 16px;
    width: 100%;
}

.footer-links__item{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc((100% - 40px) / 3);
}

.footer-links__title{
    color: rgba(60, 64, 75, 1) !important;
}

.footer-links__list{
    flex-direction: column;
}

.footer-links__list a:hover, .footer-links__list a:focus{
    text-decoration: underline;
}

.footer__payments{
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.footer__payments li{
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 3px;
    width: calc((100% - 16px) / 3);
    background-color: rgba(255, 255, 255, 1);
}

.footer__info{
    display: flex;
    gap: 8px;
    font-size: 12px;
    line-height: 20px;
    width: 100%;
}

.footer__text{
    background-color: rgba(255, 255, 255, 1);
    border-radius: 3px;
    padding: 16px;
    color: rgba(60, 64, 75, 1);
    max-width: 1487px;
    width: 100%;
}

.footer__limitation{
    background-color: rgba(255, 255, 255, 1);
    border-radius: 3px;
    padding: 20px 16px;
    color: rgba(60, 64, 75, 1);
    font-size: 24px;
    line-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* scroll-up */
.scroll-up{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    cursor: pointer;
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
}

.scroll-up:hover, .scroll-up:focus {
    transform: scale(1.07);
}

.scroll-up.show {
    opacity: 1;
}

.scroll-up.hide {
    opacity: 0;
}