/* ==========================================================================
   Games slider block
   ========================================================================== */
.games-slider { position: relative; margin-bottom: 2rem; }
.games-slider__swiper { overflow: hidden; }
.games-slider__slide { height: auto; }

.game-card {
  background: var(--color-bg-dark);
  border-radius: var(--radius-card);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}
.game-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
}
.game-card__title {
  margin: 0;
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
  flex-grow: 1;
}

.games-slider__controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}
.games-slider__nav {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-bg-dark);
  color: var(--color-heading-gold);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-btn-secondary-border);
  transition: background var(--transition-base);
}
.games-slider__nav:hover { background: rgba(255, 194, 31, 0.12); }
.games-slider__nav.swiper-button-disabled { opacity: 0.35; pointer-events: none; }
