.game-hero .stack {
  gap: 30px;
}

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

.game-main {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.game-image {
  flex: 0 0 220px;
  width: 220px;
  height: 220px;
  box-shadow: 0 0 31.8px 0 rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

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

.game-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.game-desc {
  width: 100%;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.game-desc p + p {
  margin-top: 18px;
}

.game-features .stack {
  gap: 30px;
}

.feature-card {
  width: 100%;
  padding: 20px;
}

.feature-title {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}

.feature-text {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .game-title {
    font-size: 32px;
  }

  .game-main {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .game-image {
    align-self: center;
  }

  .game-body {
    width: 100%;
    align-items: center;
  }

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

  .game-btn {
    align-self: center;
  }
}
