.catalog-top-games {
  background: var(--gradient-purple);
  padding: 55px 185px;
  color: var(--color-white);
}

.catalog-top-games .top-games-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.catalog-gateway {
  padding-top: 80px;
  padding-bottom: 60px;
}

.game-hero {
  background: var(--gradient-purple);
  padding: 55px 185px;
  color: var(--color-white);
  margin-top: 40px;
}

.game-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.game-hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 80px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  color: var(--color-white);
  line-height: normal;
}

.game-hero-desc {
  font-size: 14px;
  text-align: center;
  width: 100%;
  color: var(--color-white);
  font-weight: 400;
  line-height: normal;
}

.game-hero-image {
  width: 180px;
  height: 180px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
}

.game-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1199px) {
  .catalog-top-games,
  .game-hero {
    padding: 55px 30px;
  }
}

@media (max-width: 1023px) {
  .catalog-top-games,
  .game-hero {
    padding: 55px 15px;
  }

  .catalog-gateway {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .game-hero-title {
    font-size: 40px;
  }
}
