.promo-games-section {
  background-color: var(--dark-light);
}

.promo-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.promo-banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.promo-banner-slide.active {
  opacity: 1;
  z-index: 1;
}

.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(16, 17, 20, 0.85) 0%, rgba(16, 17, 20, 0.3) 60%, transparent 100%);
}

.promo-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: 2.5rem 3rem;
  max-width: 550px;
}

.promo-banner-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: #fff;
  text-transform: uppercase;
}

.promo-banner-text {
  font-size: 1rem;
  color: var(--gray-300);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.promo-banner-btn {
  padding: 0.75rem 2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0.375rem;
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.banner-nav:hover {
  background: rgba(255, 50, 92, 0.7);
}

.banner-nav-prev {
  left: 1rem;
}

.banner-nav-next {
  right: 1rem;
}

.banner-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.banner-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.banner-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.games-row-wrapper {
  position: relative;
  padding: 1rem 0 1.5rem;
}

.games-row-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.games-row-nav:hover {
  background: var(--primary);
}

.games-row-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.games-row-nav-prev {
  left: 0.5rem;
}

.games-row-nav-next {
  right: 0.5rem;
}

.games-row-container {
  overflow: hidden;
  padding: 0 2.5rem;
}

.games-row {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.4s ease-out;
  cursor: grab;
  user-select: none;
}

.games-row:active {
  cursor: grabbing;
}

.game-card-v2 {
  flex: 0 0 155px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  user-select: none;
  -webkit-user-drag: none;
}

.game-card-v2-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 0.5rem;
  overflow: hidden;
}

.game-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.game-card-v2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.game-card-v2:hover .game-card-v2-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.game-card-v2-title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-300);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .game-card-v2 {
    flex: 0 0 165px;
  }
}

@media (max-width: 768px) {
  .promo-banner {
    height: 280px;
  }

  .promo-banner-content {
    padding: 1.5rem;
    max-width: 100%;
  }

  .promo-banner-title {
    font-size: 1.375rem;
  }

  .promo-banner-text {
    font-size: 0.875rem;
  }

  .banner-nav {
    width: 34px;
    height: 34px;
  }

  .game-card-v2 {
    flex: 0 0 130px;
  }
}

@media (max-width: 480px) {
  .promo-banner {
    height: 220px;
  }

  .promo-banner-content {
    padding: 1rem;
  }

  .promo-banner-title {
    font-size: 1.125rem;
  }

  .promo-banner-text {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
  }

  .promo-banner-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
  }

  .banner-nav {
    width: 30px;
    height: 30px;
  }

  .banner-nav-prev {
    left: 0.5rem;
  }

  .banner-nav-next {
    right: 0.5rem;
  }

  .game-card-v2 {
    flex: 0 0 115px;
  }

  .game-card-v2-title {
    font-size: 0.75rem;
  }

  .games-row-container {
    padding: 0 2rem;
  }

  .games-row-nav {
    width: 30px;
    height: 30px;
  }
}
