@import url("https://fonts.googleapis.com/css2?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: "Inter", sans-serif;
  background: #000;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.btn {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 56px;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
  color: #000;
  font-size: 20px;
  font-weight: 600;
  background: #fff;
}
.btn_gray {
  background: #666666;
}

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

.white {
  color: #fff !important;
}

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

@font-face {
  font-family: "Druk Cyr";
  src: url(/wp-content/themes/input/assets/fonts/DrukCyr-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Druk Cyr";
  src: url(/wp-content/themes/input/assets/fonts/DrukCyr-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #000;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-family: "Druk Cyr";
  font-size: 50px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .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_privacy span, .menu__icon_privacy::before, .menu__icon_privacy::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #000;
  }
  .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: 575px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: radial-gradient(63.3% 63.3% at 50% 63.3%, #AE0000 0%, #480000 70.71%);
    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: 40px;
}
@media (max-width: 575px) {
  .menu__list {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    gap: 48px;
  }
}
.menu__link {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
}

.footer {
  background: #000;
  padding: 40px 0;
}
@media (max-width: 575px) {
  .footer {
    padding: 40px 0;
    border-radius: 40px 40px 0 0;
  }
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer__row {
    gap: 10px;
    flex-direction: column;
  }
}
.footer__addres {
  display: flex;
  gap: 20px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 767px) {
  .footer__addres {
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }
}
.footer__line {
  background: linear-gradient(90deg, rgba(227, 62, 62, 0) 0%, #E33E3E 50%, rgba(125, 34, 34, 0) 100%);
  width: 100%;
  height: 1px;
  margin: 40px 0;
}
.footer__menu {
  display: flex;
  justify-content: center;
  gap: 95px;
}
.footer__menu a {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 767px) {
  .footer__menu {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
}
.footer__row-sub {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 429px) {
  .footer__row-sub {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}
.footer__txt {
  color: #FFF;
  font-size: 12px;
  font-weight: 300;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 40px 60px;
  max-width: 800px;
  width: 100%;
  background: #000;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #FFF;
  text-align: center;
  font-size: 50px;
  font-style: italic;
  font-weight: 200;
}
.cookies__text {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
}
.cookies__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .cookies__btns {
    grid-template-columns: repeat(1, 1fr);
  }
}

.hero {
  margin: 96px 0 0;
  position: relative;
  z-index: 2;
  height: 825px;
}
@media (max-width: 767px) {
  .hero {
    height: auto;
  }
}
.hero__container {
  height: 100%;
}
.hero__content {
  height: 100%;
}
.hero__title {
  text-align: center;
  color: #FFF;
  font-family: "Druk Cyr";
  font-size: clamp(92px, 18vw, 235.263px);
  font-weight: 700;
  text-transform: uppercase;
}
.hero__title span {
  color: #F00;
}
.hero__img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .hero__img {
    position: static;
    transform: none;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .hero__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero__text {
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  max-width: 260px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero__text {
    text-align: right;
    margin-left: auto;
  }
}
.hero__text_top {
  margin-left: auto;
  text-align: right;
}
@media (max-width: 767px) {
  .hero__text_top {
    text-align: left;
    margin-right: auto;
    margin-left: 0;
  }
}
.hero__link {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .hero__link {
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
  }
}

.about {
  position: relative;
  z-index: 2;
}
.about__txt {
  padding: 60px 0;
  color: #FFF;
  text-align: center;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 500;
}
.about__txt span {
  font-style: italic;
  font-weight: 200;
}
@media (max-width: 767px) {
  .about__txt {
    padding: 40px 0;
  }
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
@media (max-width: 767px) {
  .about__content {
    gap: 20px;
  }
}
.about .games__title img {
  left: -105px;
  top: -14px;
  right: auto;
}
.about__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.about__item {
  padding: 14px 0;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 0.833px solid #333;
}
.about__item_right {
  margin-left: auto;
}
.about__text {
  color: #BBB;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
}
.about__name {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.2px;
}
.about__img {
  position: absolute;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  bottom: 0;
}
@media (max-width: 767px) {
  .about__img {
    position: static;
    transform: none;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about__card {
  padding: 100px 0;
  background: #000;
}
.about__card_red {
  background: #F00;
}
.about__card h3 {
  color: #FFF;
  text-align: center;
  font-size: clamp(40px, 6vw, 80px);
  font-style: italic;
  font-weight: 600;
}
.about__card p {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .about__card {
    padding: 60px 0;
  }
}
.about .games__blur_left {
  top: 15%;
}
.about .games__blur_right {
  top: auto;
  bottom: 35%;
}
@media (max-width: 767px) {
  .about .games__blur_right {
    bottom: 28%;
  }
}

.faq {
  position: relative;
  z-index: 2;
  margin: 60px 0;
}
@media (max-width: 767px) {
  .faq {
    margin: 40px 0;
  }
}
.faq__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq__card {
  border-bottom: 0.833px solid #333;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 991px) {
  .faq__card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.faq__title {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  line-height: 27px;
  letter-spacing: -0.2px;
  text-align: left;
}
.faq__text {
  max-width: 360px;
  color: #BBB;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
}
@media (max-width: 991px) {
  .faq__text {
    max-width: 100%;
  }
}
.faq__blur {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.games {
  padding: 60px 0;
  margin: 96px 0 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .games {
    padding: 40px 0;
  }
}
.games__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .games__content {
    gap: 20px;
  }
}
.games__title {
  color: #FFF;
  font-size: clamp(32px, 5vw, 50px);
  text-align: center;
  font-weight: 600;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.games__title span {
  font-weight: 200;
  font-style: italic;
}
.games__title img {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: -26px;
  right: 120px;
}
@media (max-width: 991px) {
  .games__title img {
    display: none;
  }
}
.games__list {
  display: flex;
}
.games__list a {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.games__list a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.games__list a {
  display: inline-block;
}
.games__list a:nth-child(1) {
  z-index: 3;
}
.games__list a:nth-child(2) {
  margin-left: -82px;
  margin-top: 57px;
  z-index: 2;
}
.games__list a:nth-child(3) {
  margin-top: 113px;
  margin-left: -82px;
  z-index: 1;
}
.games__list a:nth-child(4) {
  margin-left: -82px;
  margin-top: 170px;
  z-index: 3;
}
.games__list a:nth-child(5) {
  margin-top: 228px;
  margin-left: -82px;
  z-index: 2;
}
.games__list a:nth-child(6) {
  margin-left: -82px;
  z-index: 1;
  margin-top: 284px;
}
.games__list a:hover {
  z-index: 10;
}
@media (max-width: 1023px) {
  .games__list a:nth-child(2) {
    margin-left: -60px;
    margin-top: 40px;
  }
  .games__list a:nth-child(3) {
    margin-top: 80px;
    margin-left: -60px;
  }
  .games__list a:nth-child(4) {
    margin-left: -60px;
    margin-top: 120px;
  }
  .games__list a:nth-child(5) {
    margin-top: 160px;
    margin-left: -60px;
  }
  .games__list a:nth-child(6) {
    margin-left: -60px;
    margin-top: 200px;
  }
}
@media (max-width: 767px) {
  .games__list a:nth-child(2) {
    margin-left: -40px;
    margin-top: 28px;
  }
  .games__list a:nth-child(3) {
    margin-top: 56px;
    margin-left: -40px;
  }
  .games__list a:nth-child(4) {
    margin-left: -40px;
    margin-top: 84px;
  }
  .games__list a:nth-child(5) {
    margin-top: 112px;
    margin-left: -40px;
  }
  .games__list a:nth-child(6) {
    margin-left: -40px;
    margin-top: 140px;
  }
}
.games__text {
  color: #BBB;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
}
.games__link {
  margin: 0 auto;
}
.games__blur {
  position: absolute;
  z-index: -1;
}
.games__blur_left {
  top: 0;
  left: 0;
}
.games__blur_right {
  right: 0;
  top: 0;
}

.game {
  margin: 96px 0 0;
  position: relative;
  z-index: 2;
}
.game__content {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 991px) {
  .game__content {
    padding: 40px;
  }
}
.game__img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.game__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.game__text {
  color: #BBB;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
}
.game__link {
  margin: 0 auto;
}
.game__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 991px) {
  .game__info {
    grid-template-columns: repeat(1, 1fr);
  }
}
.game__card {
  padding: 40px 80px;
  background: #000;
}
.game__card_red {
  background: #F00;
}
@media (max-width: 991px) {
  .game__card {
    padding: 40px 20px;
  }
}
.game__title-sub {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-style: italic;
  font-weight: 600;
}
.game__txt {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
.game .games__blur_right {
  top: 95px;
}
@media (max-width: 991px) {
  .game .games__blur_right {
    display: none;
  }
}

.privacy {
  padding: 60px 0;
  margin: 96px 0 0;
}
@media (max-width: 767px) {
  .privacy {
    padding: 40px 0;
  }
}
.privacy__title {
  color: #FFF;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.privacy__title span {
  font-style: italic;
  font-weight: 200;
}
.privacy__text {
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
}