@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..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: #0C0F22;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  color: #FFF;
  font-size: clamp(30px, 6vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
}

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

.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  color: #0C0F22;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 60px;
  border-radius: 60px;
  border: 2px solid #FFF;
  background: #00DF6C;
  box-shadow: 0 0 30px 0 rgba(0, 223, 108, 0.6);
}

.m-60 {
  margin: 60px 0;
}

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

.white {
  color: #fff !important;
}

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

.footer {
  padding-bottom: 20px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
@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: 40px;
  max-width: 700px;
  width: 100%;
  border-radius: 30px;
  border: 3px solid #FFF;
  background: #0C0F22;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #00DF6C;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.cookies__btns {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.cookies__btn {
  width: 100%;
}
.cookies__btn:last-child {
  color: #00DF6C;
  border-radius: 60px;
  border: 2px solid #00DF6C;
  box-shadow: 0 0 30px 0 rgba(0, 223, 108, 0.6);
  background: transparent;
}

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

.hero__title {
  color: #FFF;
  font-size: clamp(34px, 7vw, 80px);
  font-weight: 700;
  text-transform: uppercase;
}
.hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__text {
  max-width: 453px;
}
@media (max-width: 767px) {
  .hero__text {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .hero__icon {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero .contact__img {
    height: 300px;
  }
  .hero .contact__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.info {
  background: #00DF6C;
  padding: 50px 0;
}
.info__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.info__content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .info__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .info__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 575px) {
  .info__content_about {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.info__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info__card h3 {
  text-align: center;
  color: #0C0F22;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
.info__card p {
  text-align: center;
  color: #0C0F22;
  font-size: 14px;
  font-weight: 400;
}

.catalog_games {
  margin: 70px 0 0;
}
@media (max-width: 767px) {
  .catalog_games {
    margin: 102px 0 0;
  }
}
.catalog__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.catalog__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog__card {
  position: relative;
}
.catalog__card a {
  position: absolute;
  inset: 0;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .reviews__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.reviews__grid_catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 575px) {
  .reviews__grid_catalog {
    grid-template-columns: repeat(1, 1fr);
  }
}
.reviews__card {
  border-radius: 22px;
  background: rgba(0, 223, 108, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.reviews__card h3 {
  color: #00DF6C;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.reviews__card p {
  text-align: center;
}

.contact__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .contact__content {
    flex-direction: column;
  }
}
.contact__row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
@media (max-width: 991px) {
  .contact__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__item p,
.contact__item a {
  color: #00DF6C;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 22px;
  background: rgba(0, 223, 108, 0.1);
  padding: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  .contact__item p,
  .contact__item a {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .contact__icon {
    width: 100px;
    height: 100px;
  }
  .contact__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .contact__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .contact__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.game {
  margin: 70px 0 0;
  padding: 20px 0 0;
}
@media (max-width: 767px) {
  .game {
    margin: 102px 0 0;
  }
}
.game__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.game__row {
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .game__row {
    flex-direction: column;
    align-items: center;
  }
}
.game__title {
  color: #FFF;
  font-size: clamp(30px, 6vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
}
.game__img {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  .game__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.privacy {
  margin: 70px 0 0;
  padding: 20px 0 60px;
}
@media (max-width: 767px) {
  .privacy {
    margin: 102px 0 0;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}