.games-slider {
  margin-top: var(--space-h2-text);
  position: relative;
  padding-bottom: 0.5rem;
}

.games-slider .swiper-wrapper {
  align-items: stretch;
}

.games-slider .swiper-slide {
  width: 150px;
  height: auto;
  display: flex;
}

.game-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.game-card__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: var(--color-bg-dark);
}

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

.game-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  line-height: 1.25;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card__btn {
  width: 100%;
  padding: 0.5rem;
  font-size: 0.8rem;
}

/* Navigation */
.games-slider__controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1rem;
}

.games-slider__nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  position: relative;
  transition: background var(--transition), border-color var(--transition), opacity var(--transition);
}

.games-slider__nav:hover {
  border-color: var(--color-accent-lime);
  background: var(--color-bg-dark);
}

.games-slider__nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

.games-slider__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--color-heading);
  border-right: 2px solid var(--color-heading);
}

.games-slider__nav--prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.games-slider__nav--next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}
