@charset "UTF-8";
:root {
  --white-color: #ffffff;
  --gray-100: #deeaf8;
  --gray-200: #d6d6d6;
  --gray-400: #abb1f7;
  --gray-600: #282829;
  --gray-700: #2d2b40;
  --gray-800: #1f1c2c;
  --green: #2ce287;
  --bg-color: var(--gray-800);
  --text-color: var(--gray-100);
  --border-color: var(--gray-100);
  --input-border-color: var(--gray-200);
  --primary-color: var(--green);
  --text-secondary: var(--gray-400);
  --header-bg: #363145;
  --border-radius: 4px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  /* buttons */
  --btn-border-radius: 50px;
  --btn-font-size: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  /* header */
  --header-h: 50px;
  --header-padding: 10px;
}
@media (min-width: 992px) {
  body {
    --header-h: 70px;
  }
}

.hidden {
  overflow: hidden;
}

section:first-child {
  padding-top: calc(var(--header-h) + 50px);
}
@media (min-width: 768px) {
  section:first-child {
    padding-top: calc(var(--header-h) + 60px);
  }
}

button {
  outline: none;
  border: none;
}

ul li {
  list-style: none;
}

.list {
  margin-bottom: 20px;
}

.list li::before {
  content: "•";
  color: var(--primary-color);
  margin-right: 10px;
}

a {
  display: inline-block;
  text-decoration: none;
  color: var(--text-color);
}

.container {
  --container-padding: 20px;
  max-width: calc(1060px + 3 * var(--container-padding));
  padding: 0 var(--container-padding);
  margin: auto;
}

.section {
  --pad-top: 60px;
  padding-top: var(--pad-top);
  padding-bottom: calc(var(--pad-top) * 1.4);
}

.mw-100 {
  max-width: 100%;
}

.mw-50 {
  max-width: 49%;
}

.mw-600 {
  max-width: 600px;
}

.mw-800 {
  max-width: 800px;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-24 {
  margin-top: 24px;
}

p {
  margin-bottom: 12px;
}

.title-wrap {
  margin-bottom: calc(var(--pad-top) * 0.5);
}

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

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--text-secondary);
}

.link {
  color: var(--primary-color);
  text-decoration: underline;
}

@font-face {}
h1,
h2,
h3 {
  text-wrap: balance;
}

@font-face {
  font-family: "Noto_Sans";
  src: local("Noto_Sans");
  src: url(assets/font/Noto_Sans/NotoSans-VariableFont_wdth,wght.ttf);
}
body {
  font-family: "Noto_Sans", sans-serif;
}

h1,
.h1 {
  font-size: 38px;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 42px;
  }
}

h2,
.h2 {
  font-size: 26px;
  line-height: 110%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  h2,
  .h2 {
    font-size: 32px;
  }
}

h3 {
  margin-bottom: 12px;
}

.subtitle {
  font-size: 20px;
  line-height: 120%;
}
@media (min-width: 768px) {
  .subtitle {
    font-size: 26px;
  }
}

p,
a {
  font-size: 16px;
}
@media (min-width: 768px) {
  p,
  a {
    font-size: 18px;
  }
}

.fw-600 {
  font-weight: 600;
}

.gap-8-to-20 {
  --gap: 8px;
}
@media (min-width: 768px) {
  .gap-8-to-20 {
    --gap: 20px;
  }
}

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

.grid {
  display: grid;
  grid-gap: var(--gap, 20px);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-2-4 {
  --gap: 8px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .grid-2-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 576px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 576px) {
  .img-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .img-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.img-fill {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.br {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.br-md {
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.br-lg {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.button {
  cursor: pointer;
  line-height: 1;
  font-size: var(--btn-font-size);
  border-radius: var(--btn-border-radius);
  font-weight: 600;
  color: black;
  padding: 18px 32px;
  margin: 6px 0;
  text-align: center;
  max-width: 100%;
  transition: all 0.3s;
}
.button:hover {
  opacity: 0.9;
}
.button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .button {
    width: 100%;
  }
}

.button-primary {
  background-color: var(--primary-color);
}

.button-primary-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: white;
}
.button-primary-outline:hover {
  background-color: var(--primary-color);
  color: black;
}

.button-secondary {
  background-color: var(--text-secondary);
}

.header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: var(--header-padding) 0;
  background: var(--header-bg);
  transition: transform 0.3s ease-in-out;
}
.header.header--hide {
  transform: translateY(-100%);
}
.header.header--show {
  transform: translateY(0);
}

.logo {
  height: calc(var(--header-h) - 2 * var(--header-padding));
}
@media (min-width: 769px) {
  .logo {
    width: 60px;
    height: auto;
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  --padding-link: 5px;
  display: flex;
  gap: calc(30px - 2 * var(--padding-link));
}

.nav-menu__link {
  color: var(--primary-color);
  padding: var(--padding-link);
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}
.nav-menu__link:hover {
  color: var(--white-color);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.form__input {
  padding: 12px 16px;
  border-radius: var(--border-radius);
  border-width: 1px;
}

.footer {
  padding: 60px 0;
  background: var(--header-bg);
}
.footer__contacts-wrap {
  margin-bottom: 32px;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer .footer-link {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.footer .footer-link:hover {
  color: var(--primary-color);
}
.footer .grid {
  position: relative;
}
.footer .grid .logo-bg {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  height: auto;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.1;
}
@media (min-width: 768px) {
  .footer .grid .logo-bg {
    left: 0;
  }
}
.footer .grid .wrap {
  position: relative;
  z-index: 3;
}

.burger {
  --burger-color: var(--primary-color);
  cursor: pointer;
  transform: translateY(-2px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media (min-width: 769px) {
  .burger {
    display: none;
  }
}
.burger::before,
.burger::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--burger-color);
  display: block;
  margin: 5px 0;
  transition: all 0.2s;
}

.burger.burger-rotate .burger-span {
  opacity: 0;
}

.burger.burger-rotate::before {
  transform: translateY(9px) rotate(45deg);
}

.burger.burger-rotate::after {
  transform: translateY(-9px) rotate(-45deg);
}

.burger-span {
  width: 24px;
  height: 2px;
  background: var(--burger-color);
}

@media (max-width: 768px) {
  .header__nav-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    padding: var(--container-padding);
    overflow: auto;
    position: fixed;
    top: calc(var(--header-h) - 2px);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h) + 4px);
    background: var(--header-bg);
    z-index: 40;
    flex-direction: column;
    align-items: center;
  }
  .header__nav-menu.nav-hidden {
    opacity: 1;
    visibility: visible;
  }
}
.fade {
  animation: fadeRight 0.5s ease-out;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.review {
  transition: opacity 0.6s ease;
}
.review:nth-child(n+4) {
  visibility: hidden;
  max-height: 0;
  opacity: 0;
}

.show-wrap.show .review {
  visibility: visible;
  max-height: 100%;
  opacity: 1;
}

.hide {
  display: none;
}

.hero {
  background-image: url(assets/img/hero.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(45, 43, 64, 0.8274509804);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-2 {
  background-image: url(assets/img/hero-2.jpg);
}

.stars {
  font-size: 1.2rem;
  color: #ffc107;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review .reviewer-img {
  height: 60px;
  width: auto;
  max-width: 100%;
  margin-bottom: 12px;
}
.review p {
  font-size: 0.8em;
}

h3:not(.section-terms__title):before {
  content: "";
  display: block;
  width: 20px;
  height: 4px;
  background-color: var(--primary-color);
  margin-bottom: 0.5em;
}

.card {
  padding-top: 12px;
}

.wrap_gray {
  background-color: var(--gray-700);
  padding: min(6vw, 32px);
  border-radius: var(--border-radius-lg);
}

.team-card {
  border-radius: var(--border-radius-md);
  padding: 2rem 1.5rem;
}
.team-card .img-fill {
  width: 96px;
  height: 96px;
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
}
.team-card h3 {
  color: var(--primary-color);
}

.why-icon {
  width: 2em;
  margin-bottom: 1rem;
}

.game-card {
  background-color: var(--gray-700);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.game-card:hover .game-title {
  color: var(--primary-color);
}
.game-card .game-image {
  width: 100%;
  display: block;
}
.game-card .game-info {
  padding: 16px;
  padding-top: 0;
}
.game-card .game-info .game-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  transform: translateY(-50%);
}
.game-card .game-info .game-stats .stat {
  background-color: #3b325a;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 13px;
}
.game-card .game-info .game-stats .stat .mini-icon {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 4px;
}
.game-card .game-info .game-title {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}
.game-card .game-info .publisher {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 12px;
}
.game-card .game-info .game-price {
  font-size: 18px;
  font-weight: bold;
}

.section-terms {
  counter-reset: num;
}
.section-terms__title {
  margin-bottom: 6px;
  margin-top: 16px;
  color: var(--primary-color);
}
.section-terms__title:before {
  counter-increment: num;
  content: counter(num) ". ";
}

.section-thanks {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */