/* ===== 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 {
  flex-shrink: 0;
}
@media (min-width: 992px) { .game__video { width: 400px; } }

.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; } }

/* 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;
}
