@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,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: "Montserrat", sans-serif;
  background: #000;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  color: #FFF;
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 600;
  line-height: 100%;
}

[class*=__text] {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}

.btn {
  display: flex;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  border-radius: 100px;
  background: linear-gradient(90deg, #FF00A1 0%, #0DFF00 100%);
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 60px;
}
@media (max-width: 429px) {
  .btn {
    padding: 24px 44px;
  }
}

.pink {
  color: #FF00A1;
}

.greenyellow {
  color: #0DFF00;
}

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

.white {
  color: #fff !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;
  gap: 196px;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .header__content {
    gap: 0;
    justify-content: space-between;
  }
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-size: 28px;
  font-weight: 500;
  line-height: 100%;
}

@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;
  }
}
.menu__link {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  padding: 6px 8px;
  border-radius: 6px;
}
.menu__link:hover {
  color: #000;
  background: #FFF;
}
.menu__link_active {
  color: #000;
  background: #FFF;
}

.footer {
  background: linear-gradient(90deg, #000 0%, #FF00A1 53.37%, #0DFF00 100%);
  padding: 30px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer__row {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #FFF;
  font-size: clamp(30px, 6vw, 68px);
  font-weight: 500;
  line-height: 100%;
}
@media (max-width: 767px) {
  .footer__logo img {
    width: 40px;
    height: 40px;
  }
  .footer__logo img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.footer__address {
  max-width: 468px;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
}
.footer__address a {
  color: #FFF;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 42px;
}
.footer__menu a {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 575px) {
  .footer__menu {
    flex-direction: column;
    gap: 10px;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__txt {
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 60px 40px;
  max-width: 1200px;
  width: 100%;
  border-radius: 20px;
  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: 40px;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .cookies__btns {
    flex-direction: column;
    width: 100%;
  }
}
.cookies__btn {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 60px;
  border-radius: 100px;
  background: #FF00A1;
}
.cookies__btn:last-child {
  background: #0DFF00;
}
@media (max-width: 575px) {
  .cookies__btn {
    width: 100%;
  }
}
.cookies__btn span {
  width: 100%;
}

.hero {
  margin: 62px 0 0;
  padding-top: 88px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero {
    padding-top: 40px;
  }
}
.hero__content {
  max-width: 899px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 5;
}
.hero__tite {
  color: #FFF;
  text-align: center;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.hero__tite span {
  color: #FF00A1;
}
.hero__text {
  max-width: 718px;
  margin: 0 auto;
}
.hero__link {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.hero__blur {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
}
.hero__blur_left {
  left: 0;
}
.hero__blur_right {
  right: 0;
}
.hero__row {
  display: flex;
  align-items: flex-end;
  position: relative;
  gap: 10px;
}
@media (max-width: 575px) {
  .hero__row {
    gap: 4px;
  }
}
.hero__bg {
  position: absolute;
left: 0;
  z-index: 2;
  bottom: 190px;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .hero__bg {
    bottom: 100px;
  }
}
@media (max-width: 575px) {
  .hero__bg {
    bottom: 70px;
  }
}
.hero__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 575px) {
  .hero__block {
    gap: 4px;
  }
}
.hero__card {
  max-width: 200px;
  width: 100%;
  max-height: 200px;
}
.hero__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__contet {
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .about__contet {
    gap: 20px;
    flex-direction: column;
  }
}
.about__text {
  max-width: 545px;
}
@media (max-width: 991px) {
  .about__text {
    max-width: 100%;
  }
}

.play {
  position: relative;
  z-index: 2;
}
.play__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.play__content {
  padding: 50px 0;
  display: flex;
  gap: 40px;
}
@media (max-width: 991px) {
  .play__content {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .play__content {
    padding: 40px 0;
  }
}
@media (max-width: 991px) {
  .play__content_games {
    flex-direction: column;
  }
}
.play__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.play__card {
  border-radius: 20px;
  background: rgba(28, 28, 28, 0.8);
  padding: 14px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.play__name {
  color: #FFF;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
}
.play__txt {
  color: #FFF;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
}
.play__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 480px;
}
@media (max-width: 991px) {
  .play__item {
    max-width: 100%;
  }
}
.play__blur {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.faq {
  position: relative;
  z-index: 2;
}
.faq__content {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .faq__content {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .faq__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .faq__img {
    width: 300px;
    height: 300px;
  }
}
.faq__column {
  max-width: 627px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 991px) {
  .faq__column {
    max-width: 100%;
  }
}
.faq__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq__accardion {
  cursor: pointer;
}
.faq__accardion.active .faq__plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq__accardion.active .faq__text {
  max-height: 200px;
  opacity: 1;
  margin-top: 24px;
}
.faq__row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.faq__plus {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: #FF00D0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq__plus::before {
  width: 100%;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq__plus::after {
  width: 3px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.faq__name {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.2px;
  text-transform: capitalize;
}
.faq__text {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
  border-left: 5px solid #FF00D0;
  padding-left: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}
.faq__blur {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}

.info {
  padding: 60px 0;
}
@media (max-width: 991px) {
  .info {
    padding: 40px 0;
  }
}
.info__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .info__content {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .info__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .info__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.info__column {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.catalog {
  margin: 0;
  padding: 60px 0;
}
@media (max-width: 991px) {
  .catalog {
    padding: 40px 0;
  }
}
.catalog__content {
  display: flex;
  align-items: center;
  gap: 43px;
}
@media (max-width: 767px) {
  .catalog__content {
    flex-direction: column;
  }
}
.catalog__colomn {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.game__content {
  display: flex;
  gap: 42px;
}
@media (max-width: 767px) {
  .game__content {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .game__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .game__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.game__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .game__column {
    flex-direction: column;
    gap: 20px;
  }
}
.game__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.game__link {
  width: -moz-fit-content;
  width: fit-content;
}

.privacy {
  margin: 62px 0 0;
  padding: 60px 0;
}
@media (max-width: 991px) {
  .privacy {
    padding: 40px 0;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .privacy__content {
    gap: 20px;
  }
}
.privacy__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy ul li {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-left: 25px;
  list-style: disc;
}