@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');


*::-webkit-scrollbar {
    width: 10px;
    background-color: #5B5B5F;
  }
  
*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #000;
	border: 1px solid #ccc;
  }
  
*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
    border-radius: 10px;
    background-color: #f9f9fd;
}

*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	width: 100%;
	font-size: 100%;
	line-height: 1.4;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	color: #211100;
  font-family: "Baloo Bhai 2", sans-serif;
  background: #201E1E;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;color: #fff;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;width: 100%;}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: 400;
    font-family: "Unbounded", sans-serif;
    color: #B78EFE;
}

h1{
	font-size: 54px;
}

h2 {
  font-size: 40px;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  h2{
    font-size: 28px;
 }
}


p, div, span {
  font-family: "Unbounded", sans-serif;
  color: #fff;
}

a.link__button {
    color: #fff;
    background-color: #FFCC00;
    padding: 14px 32px;
    max-width: 228px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    height: fit-content;
    border-radius: 5px;
}

.header {
    background: linear-gradient(45deg, #3C0896, #4B18A2, #6333B7, #B78EFE);
    padding: 2px 0;
    height: 98px;
    display: flex;
    align-items: center;
    border-radius: 0 0 20px 20px;
}

.container {
    max-width: 1470px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

/* header START */

.header__logo_img {
    max-width: 235px;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__content_left {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.menu__box {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-right: 40px;
}

.menu__box li a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

/* header END */

/* burger AMP START */

.menu__btn, .input__burger{
	display: none;
}

@media(max-width:992px){

#menu__toggle {
	opacity: 0;
  }

  .menu__btn {
display: flex
;
        align-items: center;
        position: absolute;
        right: 20px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
}

  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
	display: block;
	position: absolute;
	width: 100%;
	height: 3px;
        background-color: #ffffff;
  }
  .menu__btn > span::before {
	content: '';
	top: -8px;
  }
  .menu__btn > span::after {
	content: '';
	top: 8px;
}

.menu__box {
  z-index: 5;
  display: flex;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  text-align: center;
  background: linear-gradient(45deg, #3C0896, #4B18A2, #6333B7, #B78EFE);
  box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

  .menu__item {
	display: block;
	padding: 12px 24px;
	color: #333;
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
  }
  .menu__item:hover {
	background-color: #CFD8DC;
  }
  #menu__toggle:checked ~ .menu__btn > span {
	transform: rotate(45deg);
  }
  #menu__toggle:checked ~ .menu__btn > span::before {
	top: 0;
	transform: rotate(0);
  }
  #menu__toggle:checked ~ .menu__btn > span::after {
	top: 0;
	transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
	visibility: visible;
	left: 0;
  }
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
	transition-duration: .25s;
  }
  .menu__box {
	transition-duration: .25s;
  }
  .menu__item {
	transition-duration: .25s;
  }

  .header__button{
	margin-right: 60px;
  }
}

/* burger AMP END */

/* BANNER START */

.banner__image {
  max-height: 490px;
  object-fit: cover;
  object-position: top;
  margin: 30px 0;
  border-radius: 5px;
}

/* BANNER END */



main {
    min-height: 500px;
    background: linear-gradient(1deg, #b78efe00, #6333b766, #6333b766, #b78efe00);
    padding: 60px 0;
}

footer {
    min-height: 20px;
    background: linear-gradient(45deg, #20074C, #210650, #210453);
    padding: 40px 0 0px;
}


/* Контейнер dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Кнопка, открывающая меню */
.dropdown-toggle {
    background: #4caf5000;
    color: white;
    padding: 12px 22px;

    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #ccc;
    border-radius: 12px;
}

.dropdown-toggle:hover {
    
}

/* Само выпадающее меню */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 100%;
    left: 0;
}

/* Пункты меню */
.dropdown-menu li a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #f1f1f1;
}

/* Показываем меню при наведении */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Стрелка для кнопки */
.dropdown-toggle::after {
    content: "";
    font-size: 0.8em;
    display: block;
    width: 11px;
    height: 7px;
    background: url(/wp-content/uploads/2025/07/Vector.svg);
    background-size: contain;
}


button {
    border-radius: 12px;
    padding: 12px 22px;
    background: #2d086e;
    color: #fff;
    font-family: "Unbounded", sans-serif;
    border: 2px solid #2d086e;
    font-size: 18px;
    font-weight: 500;

}



@media (max-width: 480px) {
button {
    background: #b78efe;
    border: 2px solid #b78efe;
 }
}



.bt-sh {
    box-shadow: 0px 5px 35px rgb(255 255 255 / 46%);
}


.dropdown-wrapper {
    display: flex;
    gap: 16px;
}


.button-head-wrapper {
    display: flex;
    gap: 16px;
}

.buttons {
    display: flex;
    gap: 16px;
}

@media (max-width: 991px) {
    .buttons{
      display: none; 
    }
}

.btn-unput {
    background: #B78EFE;
    border: 2px solid #B78EFE;
}



.wrapper-main {
  background: url(/wp-content/uploads/2025/07/banner.jpeg);
  min-height: 550px;
  background-size: cover;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}


.wrapper-main button {

}

.block-main {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 16px;
}


@media (max-width: 500px) {
.block-main {
    flex-wrap: wrap;
  }}



.box-main {
    background: #1b0048b8;
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    max-width: 250px;
}


@media (max-width: 500px) {
.box-main {
    max-width: 250px;
    width: 100%;
  }}

.title-box-main {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.descr-box-main {
    font-size: 14px;
}


.title-main {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .title-main{
    font-size: 18px;
 }
}


.head-main {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 480px) {
  .head-main{
    flex-wrap: wrap;  
 }
}

@media (max-width: 480px) {
  .head-block{
    font-size: 16px;
 }
}

.section-main {
  margin: 40px 0;
}



.games-online .descr {
  position: relative;
  font-weight: 500;
  font-size: 18px;
}



.games-online .descr:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #02a115;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}




/* SECTION POPULAR */

.text-popular img{
  max-width: 36px;
    width: 100%;
}
/* .text-popular {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 24px;
  color: #ffffff;
}
.box-list-game img{
  border-radius: 10px;
    max-width: 345px;
    width: 100%;
}
.block-list-popular{
  display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
 */



 .block-name-popular {
  display: flex;
  align-items: center;
 
}

.block-name-popular img{
  width: 36px;
}
@media (max-width: 480px) {
  .block-name-popular img{
    width: 24px;
 }
}

.games-online {
  padding-left: 24px;
  margin-top: 20px;
}

.text-popular {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #ffffff;
  gap: 4px;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .text-popular{
    font-size: 18px;
 }
}

 .popular__repeater {
  display: grid;
  grid-template: 1fr / 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

@media (max-width: 1200px) {
     .popular__repeater{
       grid-template: 1fr / 1fr 1fr 1fr 1fr;
       gap: 16px;
    }
}



@media (max-width: 991px) {
     .popular__repeater{
       grid-template: 1fr / 1fr 1fr 1fr 1fr 1fr;
       gap: 16px;
    }
}
@media (max-width: 768px) {
  .popular__repeater{
    grid-template: 1fr / 1fr 1fr 1fr;
    gap: 13px;
 }
}

@media (max-width: 480px) {
  .popular__repeater{
    grid-template: 1fr / 1fr 1fr;
    gap: 10px;
 }
}

.popular__box {
  position: relative;
  z-index: 1;
  max-width: 345px;
  width: 100%;
  height: 244px;
  box-shadow: 0px 5px 35px rgb(255 255 255 / 46%);
  border-radius: 14px;
}
@media (max-width: 991px) {
  .popular__box{
    height: 218px;
    justify-self: center;
 }
}

.popular__image_box {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.popular__image_box img{
  border-radius: 10px;
  height: 100%;
}

.popular__text_box{
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #282828bd;
  border-radius: 10px;
}
.popular__slot_button {
  background: #250065;
  padding: 18px 30px;
  border-radius: 12px;
}

.popular__text_wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.popular__box:hover .popular__text_box{
  z-index: 5;
}

.popular__box_mark {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  padding: 6px;
  border-radius: 10px 0 0 0;
  background-color: #b78efe;
}

.popular__box:hover .popular__box_mark{
  z-index: 2;
}


/* SECTION INFO   */

.wrapper_info {
  background: linear-gradient(90deg, #3C0896 50%, #B78EFE);
  border-radius: 20px;
  padding: 18px 35px;
  margin-top: 118px;
}
@media (max-width: 991px) {
    .wrapper_info{
       padding: 50px 16px;
    }
}


.block_info img{
  max-width: 520px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
@media (max-width: 991px) {
    .block_info img{
       max-width: 900px;
       height: 470px;
    }
}
@media (max-width: 480px) {
  .block_info img{
    max-width: none;
    height: 216px;
 }
}


.block_info {
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 1100px) {
    .block_info{
       flex-direction: column;
       gap: 20px;
    }
}

.info_text_mell {
    display: flex;
    /* gap: 140px; */
    flex-direction: column;
}
@media (max-width: 991px) {
    .info_text_mell{
       width: 100%;
    padding-left: 30px;
    }
}
@media (max-width: 480px) {
  .info_text_mell{
    padding: 16px;
    gap: 10px;
 }
}


/* .info_text_mell {
  display: flex;
  gap: 40px 140px;
  flex-direction: column;
  display: grid;
  grid-template: 1fr / 1fr 1fr;
  margin: 30px;
} */

.block_info_bottom {
  display: flex;
  justify-content: start;
  align-items: end;
  margin-top: 40px;
  gap: 105px;
}

@media (max-width: 480px) {
  .block_info_bottom{
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
 }
}

p.text_title_info_bottom {
  max-width: 218px;
}
@media (max-width: 480px) {
  p.text_title_info_bottom{
    text-align: center;
 }
}


.box_text_number_info {
    display: flex;
    gap: 140px;
    position: relative;
    padding-left: 20px;
}

@media (max-width: 991px) {
    .box_text_number_info{
       gap: 200px
    }
}
@media (max-width: 768px) {
  .box_text_number_info{
    gap: 100px 
 }
}
@media (max-width: 480px) {
  .box_text_number_info{
    gap: 20px;;
    top: 14px;
    padding: 0;
 }
}

.text_number_info {
    width: 270px;
    font-size: 18px;
    line-height: 56px;
}
@media (max-width: 480px) {
  .text_number_info{
    max-width: 130px;
    font-size: 16px;
    line-height: 1.4;
    width: 100%;
 }
}

.text_number_info::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, #ffffff 50%, #B78EFE);
}

@media (max-width: 480px) {
  .text_number_info::before{
    width: 5px;
    height: 5px; 
    left: -16px;
 }
}

.text_answer_info {
    font-size: 18px;
    line-height: 56px;
}

.text_answer_info img{
  width: 24px;
  height: 24px;
}

@media (max-width: 480px) {
  .text_answer_info{
    font-size: 16px;
    line-height: 30px;
 }
}



/* FOOTER */

.info_footer {
  display: flex;
  gap: 130px;
}
@media (max-width: 768px) {
  .info_footer{
    display: flex;
        flex-wrap: wrap;
        gap: 20px; 
 }
}


@media (max-width: 768px) {
  .wrapper-main{
min-height: 400px;
        background-position: 57% 10%;
        padding: 40px 0;
 }
}

.confident {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
}
@media (max-width: 480px) {
  .confident{
    font-size: 16px; 
 }
}

.oficial_site {
  border-top: 1px solid #ffffff6b;
  display: flex;
  margin-top: 40px;
  /* height: 100px; */
}

p.oficial_site_info {
padding: 40px 0;
    font-size: 18px;
    text-align: center;
    opacity: 0.6;
}

@media (max-width: 480px) {
  p.oficial_site_info{
    padding: 15px 0 30px 0;
    font-size: 12px;
    opacity: 0.6;
 }
}


/* SECTION SIGNATURE */

section.section_signature {
      
}
@media (min-width: 1101px) {
  section.section_signature{
  background: linear-gradient(90deg, #3C0896 50%, #B78EFE);
    border-radius: 20px;
    padding: 18px 35px;
    margin-top: 118px;
 }
}

.block_text_title_signature img{
  max-width: 50px;
    width: 100%;
}

.block_right_signature img{
  max-width: 660px;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}
@media (max-width: 991px) {
  .block_right_signature img{
  max-width: 900px;
 }
}



@media (max-width: 1100px) {
  .block_right_signature{
    margin: 0 auto;
    margin-top: 60px;
 }
}

.wrapper_signature {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 1100px) {
  .wrapper_signature{
    flex-wrap: wrap;
    background: linear-gradient(90deg, #3C0896 50%, #B78EFE);
    border-radius: 20px;
    padding: 18px 35px;
    margin-top: 118px; 
  
 }
}

@media (max-width: 991px) {
  .wrapper_signature{
    padding: 50px 16px;
 }
}
.block_text_title_signature {
    display: flex;
    align-items: center;
}

h2.text_signature {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
}
@media (max-width: 480px) {
  h2.text_signature{
  font-size: 28px;
 }
}

.text_signature_desc {
    font-size: 18px;
    max-width: 588px;
}
@media (max-width: 480px) {
  .text_signature_desc{
  font-size: 16px;
 }
}



@media (max-width: 480px) {
  .btn_signature{
  display: flex;
 }
}
@media (max-width: 480px) {
  button.btn.link__info_btn.bt-sh{
  margin: 0 auto;
 }
}
.block_text_desc_signature {
    padding: 30px 0 70px 0;
}
@media (max-width: 1100px) {
  .block_text_desc_signature{
  padding: 30px 0 30px 0;
 }
}






.wrap-btn.foottt {
  display: flex;
  justify-content: center;
  margin: 20px;
}




a.telegram-header {
  padding-right: 60px;
}


  .btn-menuuu{
  display: none;
  }


@media (max-width: 1100px) {
  .btn-menuuu{
  display: block;
 }
}


section.section-popular {
  margin-bottom: 80px;
}

section.section-online-games {
  margin-bottom: 20px;
}

.descr span {
  color: #B78EFE;
}


.box_text_number_info img {
  position: relative;
  top: 15px;
}


.info_text_mell .btn-wrapper {
    margin-top: 50px;
}


@media (max-width: 991px) {
.info_text_mell .btn-wrapper { 
      margin: 50px auto 0;
  }}