/* ===== Gallery & Lightbox Styles ===== */

/* Modal (Lightbox arka planı) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  overflow: hidden; /* açıkken scroll kapalı */
}

/* Modal içerik */
.modal-content.enlarged {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  box-shadow: none;
  border: none;
  max-width: 95%;
  max-height: 95%;
  margin: auto;
  position: relative;
}

/* Büyütülmüş resim */
#lightboxImg {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* Kapatma butonu (X) */
.gallery-close {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  z-index: 1100;
  transition: color 0.2s;
}

.gallery-close:hover {
  color: #ff4757;
}

/* Grid içindeki resimler */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

.gallery-grid img:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

/* Referans sayfası logoları */
.game-logo-ref {
  display: block;
  margin: 0 auto 1rem auto;
  max-height: 140px;   /* tüm logolar aynı hizada olur */
  max-width: 260px;
  object-fit: contain; /* oranı bozmadan küçültür */
}
