/* ===== GAME PAGE ===== */

.game__cover {
  flex-shrink: 0;
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 992px) { .game__cover { max-width: 360px; } }

.game__cover-img {
  width: 100%;
  height: auto;
  display: block;
}

.game__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game__title {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 768px) { .game__title { font-size: 44px; } }

.game__players {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) { .game__players { font-size: 18px; } }

.game__excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
@media (min-width: 768px) { .game__excerpt { font-size: 18px; } }

.game__btn {
  align-self: flex-start;
}

.screens__swiper {
  overflow: hidden;
  border-radius: 12px;
}

.screens__slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (min-width: 576px) { .screens__slide img { height: 260px; } }
@media (min-width: 768px) { .screens__slide img { height: 320px; } }

.game__video.video-embed {
  max-width: 720px;
  margin: 0 auto;
}

.review__title { font-size: 20px; }
@media (min-width: 768px) { .review__title { font-size: 24px; } }
.review__text { font-size: 15px; }
@media (min-width: 768px) { .review__text { font-size: 16px; } }

/* Related games */
.related-games { gap: 16px; }
@media (min-width: 992px) { .related-games { grid-template-columns: repeat(4, 1fr); } }
.related-game { display: block; text-decoration: none; color: inherit; padding: 16px; transition: transform 0.2s; }
.related-game:hover { transform: translateY(-4px); }
.related-game__img { width: 64px; height: 64px; object-fit: contain; margin-bottom: 8px; }
.related-game__title { font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.related-game__excerpt { font-size: 14px; opacity: 0.7; line-height: 1.4; }

/* Not found */
.game__not-found {
  text-align: center;
  padding: 80px 0;
}
.game__not-found h1 { margin-bottom: 20px; }

/* game__loading — use .loading class from site-ds.css instead */
.game__loading {
  padding: 80px 0;
}
