@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

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

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

body {
  font-family: "Unbounded", sans-serif;
  background: #FFF;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #FFF;
}

[class*=__container] {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  flex: 1 1 auto;
}

.h2 {
  color: #272727;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 600;
  line-height: 104%;
  letter-spacing: -2.2px;
  text-transform: uppercase;
}

[class*=__text] {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

.text-center {
  text-align: center;
}

.white {
  color: #fff !important;
}

.black {
  color: #000 !important;
}

section {
  scroll-margin-top: 260px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #000;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-family: Anton;
  font-size: 32px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 767px) {
  .header__logo {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #fff;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 767px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #000;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.menu__link {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  background: #000;
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer__content {
    gap: 20px;
  }
}
.footer__title {
  color: #FFF;
  font-family: Inter;
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 400;
  line-height: 80%;
  text-transform: uppercase;
}
.footer__img {
  position: absolute;
  z-index: -1;
  max-width: 189px;
}
.footer__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__img {
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 575px) {
  .footer__img {
    display: none;
  }
}
.footer__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #FFF;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__address a,
.footer__address p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #FFF;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}
.footer__line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.footer__subrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__subrow {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__txt {
  color: rgba(255, 255, 255, 0.6);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 60px 40px;
  max-width: 800px;
  width: 100%;
  background: #000000;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  font-family: Anton;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 60px);
  text-transform: uppercase;
  color: #fff;
  line-height: 110%;
  letter-spacing: 0%;
}
.cookies__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__text {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
}
.cookies__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  .cookies__btns {
    gap: 20px;
  }
}
@media (max-width: 429px) {
  .cookies__btns {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}
.cookies__btn {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  border-radius: 58.33px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 60px;
}
@media (max-width: 575px) {
  .cookies__btn {
    width: 100%;
  }
}
.cookies__btn:first-child {
  background: #FF81FF;
}
.cookies__btn:last-child {
  background: #DFB5FF;
  color: #000000;
}

.hero {
  margin: 68px 0 0;
  background: #000;
  padding: 150px 0 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero {
    padding: 40px 0;
  }
}
.hero__title {
  color: #FFF;
  text-align: center;
  font-family: Anton;
  font-size: clamp(60px, 15vw, 160px);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.hero__title::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 52px;
  background: #FF81FF;
}
.hero__icon {
  position: absolute;
  z-index: -1;
  left: 15px;
  top: 40px;
}
@media (max-width: 991px) {
  .hero__icon {
    top: 180px;
  }
}
@media (max-width: 575px) {
  .hero__icon {
    width: 93px;
  }
  .hero__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero__icon {
    left: 0;
  }
}
.hero__subicon {
  position: absolute;
  right: 15px;
  z-index: -1;
}
@media (max-width: 991px) {
  .hero__subicon {
    bottom: 380px;
  }
}
@media (max-width: 575px) {
  .hero__subicon {
    width: 93px;
  }
  .hero__subicon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero__subicon {
    right: 0;
  }
}
.hero__img {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .hero__img {
    position: static;
    transform: none;
  }
}
.hero__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}
@media (max-width: 991px) {
  .hero__content {
    flex-direction: column;
    align-items: center;
  }
}
.hero__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__item p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}
.hero__item p span {
  color: #FFF;
  font-family: Inter;
  font-size: 28px;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width: 991px) {
  .hero__item {
    width: 100%;
  }
}
.hero__block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 290px;
  gap: 20px;
}
@media (max-width: 991px) {
  .hero__block {
    max-width: 100%;
  }
}
.hero__link {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 17px;
  border-radius: 58.333px;
  border: 0.833px solid #FFF;
  padding: 14px 30px;
}

.about {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .about {
    padding: 40px 0;
  }
}
.about__icon {
  position: absolute;
  left: 30%;
  top: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .about__icon {
    left: 0;
  }
}
.about__subicon {
  position: absolute;
  z-index: -1;
  right: 35%;
  top: 40%;
}
@media (max-width: 767px) {
  .about__subicon {
    right: 0;
    top: 30%;
  }
}
.about__sub-icon {
  position: absolute;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .about__sub-icon {
    right: 0;
    bottom: 20%;
  }
}
.about__row {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 991px) {
  .about__row {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .about__row {
    flex-direction: column-reverse;
  }
}
.about__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__label {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 111.522%;
}
.about__img {
  max-width: 270px;
  width: 100%;
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.advantages {
  border-bottom: 2px solid #000;
  background: #DFB5FF;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .advantages {
    padding: 40px 0;
  }
}
.advantages__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 991px) {
  .advantages__content {
    gap: 20px;
  }
}
.advantages__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.advantages__item {
  padding-top: 16px;
  border-top: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .advantages__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.advantages__name {
  color: #000;
  font-family: Anton;
  font-size: 28px;
  font-weight: 400;
  line-height: 102%;
  max-width: 280px;
  width: 100%;
}
@media (max-width: 767px) {
  .advantages__name {
    max-width: 100%;
  }
}
.advantages__text {
  max-width: 440px;
  width: 100%;
}
@media (max-width: 767px) {
  .advantages__text {
    max-width: 100%;
  }
}

.faq {
  background: #000;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .faq {
    padding: 40px 0;
  }
}
.faq__content {
  position: relative;
}
.faq__img {
  position: absolute;
  right: 97px;
  top: -40px;
  width: 145px;
}
.faq__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .faq__img {
    top: 0;
    right: 0;
    width: 76px;
  }
}
.faq__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.faq__item {
  background: #DFB5FF;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.faq__name {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #000;
  text-align: justify;
  font-family: Anton;
  font-size: 20px;
  font-weight: 400;
}
.faq__name span {
  color: #8F008F;
  text-align: justify;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.faq__text {
  font-weight: 400;
}

.players {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .players {
    padding: 40px 0;
  }
}
.players__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.players__item {
  position: relative;
}
.players__icon {
  position: absolute;
}
.players__icon_left {
  top: -80px;
}
.players__icon_right {
  right: 0;
}
.players__row {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 991px) {
  .players__row {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .players__row {
    flex-direction: column;
  }
}
.players__img {
  max-width: 350px;
  width: 100%;
}
.players__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.players__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.players__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.players__name {
  color: #000;
  font-family: Anton;
  font-size: 20px;
  font-weight: 400;
}
.players__block-txt {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog {
  margin: 68px 0 0;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .catalog {
    padding: 40px 0;
  }
}
.catalog__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.catalog__row {
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .catalog__row {
    flex-direction: column;
    gap: 20px;
  }
}
.catalog__title {
  color: #000;
  font-family: Anton;
  font-size: clamp(36px, 5vw, 42px);
  font-weight: 400;
  line-height: 120%;
  max-width: 370px;
  width: 100%;
}
.catalog__text {
  max-width: 670px;
  width: 100%;
}
@media (max-width: 767px) {
  .catalog__text {
    max-width: 100%;
  }
}
.catalog__select {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .catalog__select {
    flex-direction: column;
  }
}
.catalog__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog__img {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
.catalog__img a {
  position: absolute;
  inset: 0;
}
.catalog__icon {
  position: absolute;
  z-index: -1;
}
.catalog__icon_left {
  bottom: 0;
  left: 10%;
}
@media (max-width: 767px) {
  .catalog__icon_left {
    left: auto;
    right: 15px;
    top: 50px;
    width: 64px;
    height: 64px;
  }
  .catalog__icon_left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.catalog__icon_right {
  bottom: 20px;
  right: 20%;
}
@media (max-width: 767px) {
  .catalog__icon_right {
    display: none;
  }
}

.catalog-info {
  background: #000;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .catalog-info {
    padding: 40px 0;
  }
}
.catalog-info__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .catalog-info__content {
    gap: 20px;
  }
}
.catalog-info__item {
  position: relative;
  z-index: 2;
}
.catalog-info__icon {
  position: absolute;
  top: -30px;
  left: 20%;
}
@media (max-width: 991px) {
  .catalog-info__icon {
    left: 0;
  }
  .catalog-info__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .catalog-info__icon {
    width: 60px;
    height: 50px;
  }
}
.catalog-info__icon_sub {
  top: 0px;
  left: auto;
  right: 20%;
}
@media (max-width: 991px) {
  .catalog-info__icon_sub {
    right: 0;
  }
  .catalog-info__icon_sub img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .catalog-info__icon_sub {
    width: 50px;
    height: 50px;
  }
}
.catalog-info__subtitle {
  color: #FFF;
  text-align: center;
  font-family: Anton;
  font-size: clamp(36px, 5vw, 42px);
  font-weight: 400;
  line-height: 120%;
}
.catalog-info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .catalog-info__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.catalog-info__card {
  background: #DFB5FF;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.catalog-info__name {
  color: #000;
  text-align: justify;
  font-family: Anton;
  font-size: 20px;
  font-weight: 400;
}

.game {
  margin: 68px 0 0;
  padding: 80px 0;
  background: #DFB5FF;
}
@media (max-width: 991px) {
  .game {
    padding: 40px 0;
  }
}
.game__row {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 991px) {
  .game__row {
    flex-direction: column;
    gap: 20px;
  }
}
.game__title {
  color: #000;
  font-family: Anton;
  font-size: clamp(36px, 5vw, 42px);
  font-weight: 400;
  line-height: 120%;
  position: relative;
  z-index: 2;
}
.game__title img {
  position: absolute;
  top: -36px;
  max-width: 70px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.game__text_top {
  max-width: 630px;
  width: 100%;
}
@media (max-width: 991px) {
  .game__text_top {
    max-width: 100%;
  }
}
.game__subrow {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .game__subrow {
    margin-top: 20px;
    flex-direction: column;
    gap: 20px;
  }
}
.game__column {
  display: flex;
  align-items: flex-end;
  gap: 50px;
}
@media (max-width: 767px) {
  .game__column {
    flex-direction: column;
    gap: 20px;
  }
}
.game__img {
  max-width: 300px;
  min-width: 300px;
  width: 100%;
  height: 300px;
}
.game__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.game__icon_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .game__icon_top {
    display: none;
  }
}
.game__icon_bottom {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.policy {
  margin: 68px 0 0;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .policy {
    padding: 40px 0;
  }
}
.policy__title {
  color: #000;
  font-family: Anton;
  font-size: clamp(36px, 5vw, 42px);
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .policy__title {
    margin-bottom: 20px;
  }
}
.policy ul li {
  list-style: disc;
  margin-left: 20px;
}