.game-hero {
  position: relative;
  background: var(--white-07);
  overflow: hidden;
  padding: 60px 0;
}

.game-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.game-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.game-hero__paragraph {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1 1 0;
  max-width: 686px;
}

.game-hero__title {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1.17;
  color: var(--white);
  font-weight: 400;
}

.game-hero__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
}

.game-hero__thumbnail {
  width: 400px;
  height: 400px;
  border-radius: 24px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-info {
  padding: 60px 0;
}

.game-info__inner {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 84px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.game-info__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex-shrink: 0;
  width: 591px;
}

.game-info__subtitle {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1.17;
  color: var(--white);
  font-weight: 400;
  max-width: 543px;
}

.game-info__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.game-info__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
}

.game-info__screenshot {
  width: 579px;
  height: 460px;
  border-radius: 30px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-action {
  padding: 60px 84px 60px;
}

.game-action__inner {
  background: var(--gradient);
  border-radius: 50px;
  overflow: hidden;
  height: 624px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}

.game-action__character {
  width: 390px;
  height: 564px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-action__paragraph {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: var(--white);
  max-width: 687px;
  flex: 1;
}

.game-action__heading {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1.17;
  color: var(--white);
  font-weight: 400;
}

.game-action__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
}

.game-action__contact {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--white);
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .game-hero__title {
    font-size: 80px;
  }

  .game-hero__thumbnail {
    width: 300px;
    height: 300px;
  }

  .game-info__subtitle {
    font-size: 60px;
  }

  .game-info__left {
    width: 460px;
  }

  .game-info__screenshot {
    width: 440px;
    height: 360px;
  }

  .game-action__heading {
    font-size: 80px;
  }

  .game-action__character {
    width: 300px;
    height: 420px;
  }
}

@media (max-width: 992px) {
  .game-hero__title {
    font-size: 60px;
  }

  .game-hero__thumbnail {
    width: 250px;
    height: 250px;
  }

  .game-info__left {
    width: 380px;
  }

  .game-info__screenshot {
    width: 360px;
    height: 300px;
  }

  .game-action__heading {
    font-size: 60px;
  }

  .game-action__character {
    width: 240px;
    height: 350px;
  }

  .game-action__inner {
    height: auto;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  
  .game-hero__inner {
    padding: 0 15px;
    max-width: 360px;
    flex-direction: column;
    align-items: flex-start;
  }

  .game-hero__title {
    font-size: 50px;
  }

  .game-hero__paragraph {
    max-width: 100%;
  }

  .game-hero__thumbnail {
    width: 250px;
    height: 250px;
  }

  
  .game-info__inner {
    padding: 0 15px;
    max-width: 360px;
    flex-direction: column;
    align-items: flex-start;
  }

  .game-info__left {
    width: 100%;
  }

  .game-info__subtitle {
    font-size: 50px;
    max-width: 100%;
  }

  .game-info__screenshot {
    width: 100%;
    height: 262px;
  }

  
  .game-action {
    padding: 60px 15px 60px;
  }

  .game-action__inner {
    flex-direction: column;
    height: auto;
    padding: 30px 30px 40px;
    border-radius: 50px;
    align-items: flex-start;
    max-width: 330px;
    margin: 0 auto;
  }

  .game-action__character {
    width: 189px;
    height: 272px;
  }

  .game-action__heading {
    font-size: 50px;
  }

  .game-action__paragraph {
    max-width: 100%;
  }
}
