/* Games slider */
.games-slider { margin-block: var(--space-paragraph); }
.games-slider__swiper { padding: 0.5rem 0 3rem; }
.game-card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  height: 100%;
  box-shadow: var(--shadow-card);
}
.game-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}
.game-card__name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-card__btn { width: 100%; padding: 0.5rem 1rem; }

/* Swiper theming */
.games-slider__swiper .swiper-button-prev,
.games-slider__swiper .swiper-button-next { color: var(--heading); }
.games-slider__swiper .swiper-button-prev::after,
.games-slider__swiper .swiper-button-next::after { font-size: 1.5rem; font-weight: 700; }
.games-slider__swiper .swiper-pagination-bullet { background: var(--text); opacity: 0.5; }
.games-slider__swiper .swiper-pagination-bullet-active { background: var(--heading); opacity: 1; }
