@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+P+One&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: "Mochiy Pop P One", sans-serif;
  background: #FFF;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  font-size: clamp(34px, 6vw, 70px);
  color: #161616;
  font-weight: 400;
  text-transform: uppercase;
}
.title span {
  color: #FFF;
}

[class*=__text] {
  color: #161616;
  font-size: 14px;
  font-weight: 400;
}

.btn {
  text-align: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  border-radius: 60px;
  border: 2px solid #FFF;
  background: linear-gradient(270deg, #FF51FF 0%, #AA61F0 100%);
  padding: 20px 60px;
}

.white {
  color: #FFF;
}

.p-60 {
  padding: 60px 0;
}

.pb-60 {
  padding-bottom: 60px;
}

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

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

.footer {
  padding-bottom: 20px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__text {
  color: rgba(22, 22, 22, 0.5);
}
@media (max-width: 767px) {
  .footer .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  max-width: 760px;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 30px;
  background: #161616;
}
.cookies.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookies.is-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookies__title {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
.cookies__text a {
  color: #fff;
  text-decoration: underline;
}
.cookies__btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.cookies__btn {
  width: 100%;
}
.cookies__btn:last-child {
  color: #FFF;
  border: 2px solid #FFF;
  background: transparent;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #FFF;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
@media (max-width: 575px) {
  .header__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #161616;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu a {
  color: #161616;
  font-size: 14px;
  font-weight: 400;
}

.hero__title {
  text-align: center;
  font-size: clamp(36px, 10vw, 133px);
  color: #161616;
  font-weight: 400;
  text-transform: uppercase;
}
.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 103px;
  margin-top: -150px;
}
@media (max-width: 1919px) {
  .hero__row {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .hero__row {
    margin: 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .hero__row {
    align-items: flex-start;
  }
}
.hero .policy__content {
  max-width: 283px;
}
@media (max-width: 991px) {
  .hero .policy__content {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .hero__img {
    width: 264px;
  }
  .hero__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero__icon {
  width: -moz-fit-content;
  width: fit-content;
}
.hero__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .hero__icon {
    width: 100px;
  }
}

.catalog {
  background: #AA61F0;
}
.catalog__title, .catalog__text {
  max-width: 988px;
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1090px;
  width: 100%;
}
.catalog__grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .catalog__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.catalog__card {
  position: relative;
}
.catalog__link {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 50px;
  border: 2px solid #FFF;
  background: #161616;
  padding: 17px 0;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.catalog__link img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .catalog__link {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 991px) {
  .game .contact__content {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (max-width: 991px) {
  .game__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.contact {
  padding: 60px 0;
  margin-bottom: 60px;
  background: #161616;
}
.contact__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
.contact__content_start {
  align-items: flex-start;
}
@media (max-width: 991px) {
  .contact__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact__address {
  border-radius: 22px;
  background: #AA61F0;
  padding: 20px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}
.contact__img {
  width: -moz-fit-content;
  width: fit-content;
}
.contact__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .contact__image {
    width: 222px;
    height: 370px;
  }
  .contact__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.policy {
  margin: 75px 0 0;
}
@media (max-width: 575px) {
  .policy {
    margin: 115px 0 0;
  }
}
.policy__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.policy__content_center {
  align-items: center;
}