* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
/* no-scroll */
.no-scroll {
  position: fixed;
  overflow-y: hidden;
  width: 100vw;
}

html,
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex-grow: 1;
}

footer {
  flex-shrink: 0;
}

body {
  font-family: SFPro, sans-serif;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  background-color: rgb(37, 37, 48);
  color: #fff;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
}

.center {
  text-align: center;
}
.text__container {
  padding: 0 15px;
}

.text__container p {
  margin: 10px 0;
}

.text__container h2 {
  margin: 20px 0;
}

h2 {
  font-size: clamp(20px, 5vw, 34px);
  margin-bottom: 30px;
}

h3 {
  font-size: clamp(18px, 5vw, 26px);
  margin-top: 20px;
  margin-bottom: 10px;
}

.p-80 {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .p-80 {
    padding: 30px 0;
  }
}
@media (max-width: 560px) {
  .p-80 {
    padding: 20px 0;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  width: 100%;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #fff;
}

.btn__grad {
  position: relative;
  border-color:  transparent;
  overflow: hidden;
}

.btn__grad:after {
  content: "";
  position: absolute;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(46, 163, 221) 0%, #0d73e7 100%);
  transition: opacity .3s ease-in-out;
  opacity: 1;
}

@media (hover: hover) {
  .btn:hover {
    color: rgb(255, 255, 255);
    background-color: rgba(229, 229, 229, 0.192);
  }

  .btn__grad:hover:after {
    background: linear-gradient(90deg, rgb(53, 186, 253) 0%, #1081fe 100%);

  }
}

li {
  margin: 15px 0;
}

ul {
  margin-bottom: 30px;
}

ol {
  margin-left: 15px;
}

.link {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}


@font-face {
  font-family: "SFPro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/SFProDisplay-Regular.woff") format("woff"),
    url("fonts/SFProDisplay-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "SFPro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/SFProDisplay-Bold.woff") format("woff"),
    url("fonts/SFProDisplay-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "SFPro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/SFProDisplay-Semibold.woff") format("woff"),
    url("fonts/SFProDisplay-Semibold.woff2") format("woff2");
}
@font-face {
  font-family: "SFPro";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/SFProDisplay-Black.woff") format("woff"),
    url("fonts/SFProDisplay-Black.woff2") format("woff2");
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 5px;
  color: rgb(255, 255, 255);
  background: #000414;
  z-index: 20;
}
.header__logo {
  font-size: clamp(24px, 4vw, 32px);
  margin-right: auto;
  max-width: 140px;
  display: none;

  @media (max-width: 1030px) {
    display: block;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
}
.header__container {
  display: flex;
  align-items: center;
}
.header__btns {
  display: none;
  gap: 10px;
  margin-left: auto;
}

.header__nav {
  margin-left: auto;
  margin-right: 15px;
}


@media (max-width: 1030px) {
  .header__btns {
    display: flex;
    margin-right: 10px;
  }

  .header__nav {
    display: none;
  }
}

.burger__btn {
  display: none;
}
@media (max-width: 1030px) {
  .burger__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    margin-right: 10px;
    background-color: transparent;
  }
}

/* burger__btn */
.burger__btn span {
  position: relative;
  width: 30px;
  height: 2px;
  background-color: #fff;

}
.burger__btn span::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  top: -3px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.burger__btn span::before {
  top: -5px;
}

.burger__btn span::after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  bottom: -3px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

  .burger__btn span::after {
    bottom: -5px;
  }

.burger__btn-active span::before {
  transform: rotate(45deg);
  top: -1px;
}

.burger__btn-active span::after {
  transform: rotate(-45deg);
  bottom: -1px;
}

.burger__btn-active span {
  height: 0;
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    background: #FCFCFC;
    padding: 40px;
    width: 100%;
    left: 0;
    top: 93px;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
  }
}
.nav__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  margin-left: 300px;

}

.nav__list li {
  margin-bottom: 0;
}

.footer {
  padding: 40px 0;
  width: calc(100% - 285px);
  margin-left: auto;

  @media (max-width: 1030px) {
    width: 100%;
    margin-left: 0;
  }

}
.footer__container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
  padding: 15px;
  border-top: 1px solid #464646;

  @media (max-width: 800px) {
    flex-direction: column;
  }
}
.footer ul {
  margin-bottom: 0;
}

.footer__item {
  max-width: 300px;
}

.footer__disclamer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__disclamer img {
  width: 44px;
}

.footer__disclamer p {
  color: #888;
  font-size: 12px;
  max-width: 400px;
}

.footer__links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.footer__block {
  width: 100%;
}

.footer__container--logo {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__container--logo img {
  width: 70px;
  filter: grayscale(1);
}

@media (hover: hover) {
  .footer__container--logo img:hover {
    filter: grayscale(0.7);
  }
}

.page__wrapper {
  position: relative;
  display: flex;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 285px;
  background: #000414;
    height: 100vh;
  padding: 20px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.menu__hidden {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 285px;
  background-color: rgb(0, 0, 0);
  height: 100vh;
  padding: 50px 20px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  visibility: hidden;
    opacity: 0;
  
}

.menu__hidden--link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
}

@media (max-width: 1030px) {
  .menu {
    display: none;
  }
  .menu__hidden {
    height: 100vh;
    visibility: visible;
    opacity: 0;
    z-index: 5;
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
  }
}

/* nav__active */
.menu__active {
  display: flex;
  flex-direction: column;
  visibility: visible;
  opacity: 1;
  transform: translateX(0%);
}

.menu::-webkit-scrollbar {
  width: 0;
  height: 0;
  }

.menu__logo {
  display: block;
  max-width: 120px;
  margin: 0 auto;
}

.menu__search {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: #a1a1a1;
  padding: 10px;
  border-bottom: 1px solid #a1a1a1;
}

.menu__title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.menu__subtitle {
  text-align: center;
}

.menu__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.menu__tabs  {
  margin-top: 30px;
}

.tabs__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 3px;
  border-radius: 5px;
  background-color: #464542;
  margin-bottom: 5px;
}

.memu__tab {
  width: 49%;
  padding: 5px;
  border-radius: 5px;
  color: #fff;
  background-color: transparent;
}


.tab__active {
  background-color: rgb(0, 0, 0);
}

.tab__container {
  overflow: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
  height: 40vh;
  padding-bottom: 5px;
}

.tab__container::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.tab__wrapp {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.tab__item {
  display: flex;
  align-items: center;  
  background-color: #464542;
  gap: 15px;
  border-radius: 5px;
  padding: 14px 12px;
  transition: .2s ease;
}

.tab__item:hover {
  background-color: #585854;
}

.tab__img {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  object-fit: cover;
}

.tab__text span {
  font-size: 12px;
}

/* swipr */

.swiper-container {
  width: 100%;
  height: 100%;

}
.swiper {
  margin-top: 60px;
}

.swiper-slide {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
}

@media (max-width: 690px) {
  .swiper-slide {
    height: auto;
  }
}

.swiper-slide h2 {
  font-weight: 800;
}

.swiper-slide-active {
  display: flex;
  justify-content: center;
}

.swiper-slide-prev {
  display: flex;
  justify-content: center;
}


@media (max-width: 850px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none;
  }
}


.slide1 {
  background-image: url("img/slide1.webp");
}
.slide2 {
  background-image: url("img/slide2.webp");
}
.slide3 {
  background-image: url("img/slide3.webp");
}
.slide4 {
  background-image: url("img/slide4.webp");
}
.slide5 {
  background-image: url("img/slide5.webp");
}

.swiper-pagination-bullet {
  width: 15px !important;
  height: 3px !important;
  border-radius: 3px;
  background-color: #a1a1a1 !important;
}

.slider__block {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 80px 20px 50px;
}

.slider__block  h2 {
  text-align: center;
  display: block;
  margin-top: auto;
}

.slider__block  p {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.slider__btn {
  width: max-content;
  margin: 0 auto;
  padding: 12px 50px;
}




/* page */
.page {
  width: calc(100% - 285px);
  margin-left: auto;
}

@media (max-width: 1030px) {
  .page {
    width: 100%;
    margin-left: 0;
  }
}

.game {
  padding-left: 15px;
  padding-right: 15px; 
}

.game__wrapp {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  overflow-x: scroll !important;
  overflow: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;

   @media (max-width: 1440px) {
    grid-template-columns: repeat(4, 1fr);
   }   
}

.game__wrapp::-webkit-scrollbar {
    width: 0;
    height: 0;
}


.game__item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;

}



.game__img {
  height: 100%;
  object-fit: cover;
}

.game__text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #181816b2;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  transition:.2s ease;
  opacity: 0;
  text-align: center;
}

.game__item:hover .game__text {
  opacity: 1;
}

.game__text p {
  margin-top: 20px;
}

.game__text span {
  color: #b5b5b5;
  font-size: 16px;
  font-weight: 600;
}

.game__play {
  width: 60px;
}

.game__item-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  background-color: #232323;
  padding: 50px 10px;
  border-radius: 5px;
  transition: .2s ease;
}


.game__item-logo p {
  margin-top: 15px;
}
.game__item-logo img {
  width: 100px;
  margin-top: 15px;
}

.game__item-logo:hover {
  background-color: #444444;
}

@media (max-width: 1030px) {
  .game__item,
  .game__item-logo {
    min-width: 200px;
  }

  .game__wrapp  {
    grid-template-columns: repeat(5, 1fr);
  }
}

.download {
  position: relative;
  background: linear-gradient(180deg, #002144 0%, #0a0a0a 150.97%);
  padding: 80px 30px;


}

.download::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/mobi.png");
  background-position: 80% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
} 

.download__wrapp {
  position: relative;
  z-index: 1;
}

.download h2 {
  font-weight: 800;
}

.download__btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.download__btn {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #000000 !important;
  cursor: pointer;
}

.download__btn p {
  font-weight: 800;
}

.page__padding {
  padding-top: 64px;
}

.btn__page {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px auto;
  width: max-content;
}

.img__page {
  width: 100%;
  max-width: 750px;
  display: block;
  margin: 20px auto;
}