.marquee-container-games {
  width: 100%;
  overflow-x: auto; /* Scroll aktif */
  white-space: nowrap;
  position: relative;
  padding-bottom: 30px;
  margin-top: 25px;
  z-index: 10;
  -webkit-overflow-scrolling: touch; /* iOS */
  scrollbar-width: none; /* Firefox */

}

.marquee-container-games::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Drag esnasında animasyon dursun */
.marquee-container-games.dragging .marquee-content-games {
  animation-play-state: paused !important;
  cursor: grabbing;
}

.marquee-content-games {
  display: flex;
  gap: 10px;
  width: max-content;
  scroll-snap-align: start;
    overflow: visible;
  animation: marquee-animation 400s linear infinite; /* Animasyon buraya eklendi */
}

.marquee-content-games img {
  max-height: 250px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  cursor: pointer;
  scroll-snap-align: start;
}

.marquee-content-games img:hover {
  transform: scale(1.1);
  z-index: 1;
filter: drop-shadow(0 3px 14px rgba(204, 185, 100, 0.6));
  border-radius: 5px;
}

@keyframes marquee-animation {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-content-games {
    animation-duration: 350s; /* Mobilde daha hızlı */
  }
  .marquee-container-games {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .marquee-container-games::-webkit-scrollbar {
    display: none;
  }
}
