/* OYUN LİSTESİ ANA ALAN */
.games,
.slot-list,
.game-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  padding: 10px;
  width: 100%;
  overflow: visible !important;
}

/* OYUN KARTI */
.game-card,
.slot-card,
.game-item {
  width: 100%;
  display: block;
}

/* GÖRSELLER */
.game-card img,
.slot-card img,
.game-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* MOBİL ÖZEL */
@media (max-width: 768px) {
  .games,
  .slot-list,
  .game-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SCROLL VE YÜKLENMEME SORUNU FIX */
body,
html {
  overflow-x: hidden;
}