/* =========================
   ANA SAYFA GENEL ZENGİNLİK
========================= */
.home,
.home-page,
.main-content {
  padding-bottom: 40px;
}

/* SECTION ARALIKLARI */
.section,
.home-section,
.slot-section {
  margin-bottom: 48px !important;
}

/* SECTION BAŞLIKLARI */
.section-title,
.slot_title h3,
.slot__title h3 {
  font-size: 20px !important;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: .3px;
}

/* =========================
   OYUN GRID (ANA MESELE)
========================= */
.slot__list,
.game-list,
.casino-games,
.games-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

/* OYUN KARTI */
.slot__item,
.game-card,
.game-item {
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* HOVER */
.slot__item:hover,
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
}

/* OYUN RESMİ */
.slot__item img,
.game-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   SLIDER + GRID AYRIMI
========================= */
.slot__list.slider,
.game-list.slider {
  display: flex !important;
  overflow-x: auto;
  gap: 14px;
  padding-bottom: 10px;
}

.slot__list.slider::-webkit-scrollbar {
  display: none;
}

/* =========================
   MOBİL OPTİMİZASYON
========================= */
@media (max-width: 768px) {
  .slot__list,
  .game-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .section,
  .slot-section {
    margin-bottom: 32px !important;
  }
}

@media (max-width: 480px) {
  .slot__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
