@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light+Two&display=swap');
*{
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}
html,body {
  height: 100%;
}
.site-content {
  flex-grow: 1;
}
.page-wrapper {
  display: flex;
  flex-direction: column; /* İçeriği dikey olarak düzenle */
  min-height: 100vh; /* Ekranın minimum tam yüksekliği */
}
body {
  font-family: "Shadows Into Light Two", cursive;
  margin: 0;
  color: #fff;
}

/* ========== Header ========== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: #071027;
}

/* ========== Game Grid ========== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  padding: 18px;
}

/* ========== Game Card ========== */
.card {
  background: #0b1220;
  padding: 12px;
  border-radius: 10px;
}

.thumb {
  width: 100%;
  height: 140px;
  background: #111;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

/* ========== Buttons & Links ========== */
.actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

button,
a {
  padding: 8px 10px;
  border-radius: 8px;
  background: none;
  color: #032;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

a.detail {
  background: transparent;
  color: #9aa4b2;
}

/* ========== Modal ========== */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  background: #071428;
  padding: 12px;
  border-radius: 10px;
}

#closeModal {
  position: absolute;
  right: 12px;
  top: 12px;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 18px;
  cursor: pointer;
}


#gamesContainer div:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transform: translateY(-2px);
    transition: all 0.2s;
  }
  

  /* NAVBAR TASARIMI */
.navbar {
  background-color: #00A8E8;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);

  top: 0;
  z-index: 1000;
}

.navbar-container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo:hover {
  color: #ff7b7b;
}

.navbar-links {
  margin-left: auto;
  flex-wrap: wrap;
  margin-right: auto;
  list-style: none;
  display: flex;
  gap: 20px;
  z-index: 1001;
}

.navbar-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s;
}

.navbar-links li a:hover,
.navbar-links li a.active {
  color: #FF6B35;
}

#logo {
  width: 60px;
  display: flex;
}
#logo-brand {
  margin-left: 20px;
  width: 240px;
  height: 60px;
  display: flex;
}
 
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* --- Mobil görünüm --- */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    width: 33%;
    flex-direction: column;
    background-color: #00A8E8;
    text-align: center;
    padding: 10px 0;
  }

  #gameThumb{
    display: none;
  }


  .navbar-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  #logo-brand {
    margin-left: 15px;
  }
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
}

@media(max-width:480px){
  .game-grid{
    grid-template-columns: repeat(2,1fr);
  }
  .game-grid .game-card img {
    width: 100%;
    
    /* Çoğu oyun 16:9'dur. Eğer thumb görselleriniz kareye yakınsa 1/1 kullanın. */
    aspect-ratio: 16 / 9; /* Yüksekliği genişliğe göre otomatik ayarlar */
    object-fit: cover;
}
}

.game-card {
  background: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.2s;
  text-align: center;
}
.game-card:hover { transform: translateY(-5px); }
.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.game-card h3 {
  margin: 8px 0;
  font-size: 16px;
}
/* Footer Stilleri */
/* Footer Stilleri (Temel kodunuzdan) */
footer {
  background-color: #00A8E8;
  color: #fff;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  margin-top: 40px;
  width: 100%;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between; /* Solda copyright, sağda iletişim bilgileri */
  align-items: center; /* İçerikleri üste hizala */
}

.copyright {
  color: black;
  display: flex;
  font-size: 0.9em;
  margin: 0;
  /* line-height'ı kaldırıyoruz, iletişim bilgileriyle otomatik hizalansın */
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  text-align: right; /* İletişim bilgilerini sağa hizala */
  font-size: 0.9em;
  
  /* ÖNEMLİ: Sağdaki içeriğin yerleşimi için bir genişlik tanımlayalım veya esnek bırakalım */
  /* width: 250px;  Gerekirse sabit genişlik verebilirsiniz, ama esnek olması daha iyi. */
  
  /* Resimde 'İletişim:' başlığı sıkışmış gibi görünüyor, 
     bu yüzden .contact-info içindeki öğelerin yerleşimini düzeltelim: */
}

/* İletişim içindeki paragrafların (Telefon/E-posta) margin değerlerini düzeltelim */
.contact-info p {
  margin: 5px 20px; /* Paragraflar arasında dikey boşluk */
  white-space: nowrap; /* Telefon/E-posta satırlarının tek satırda kalmasını sağlar */
  line-height: 1.5;
  border: 3px solid #FF6B35;
  padding: 10px;
  border-radius: 50px;
  background: #FF6B35;
  transition: 0.3s;
}

.contact-info p:hover{
  background: white;
  color: #FF6B35;
  transition: 0.3s;
}

/* Link renklerini düzenleme */
.contact-info a {
  color: white;
  text-decoration: none;
  /* Sıkışma problemine yol açan bir 'display: block;' veya 'width' ayarı varsa kontrol edin. */
}

.contact-info a:hover {
  color: #FF6B35;
  text-decoration: none;
  /* Sıkışma problemine yol açan bir 'display: block;' veya 'width' ayarı varsa kontrol edin. */
}

.contact-info {
  align-items: center;
}

#iletisim {
  border: 3px solid #FF6B35;
  margin-left: 0px;
  padding: 10px;
}



/* Küçük ekranlar için düzenleme (Daha önce verdiğim bu kısım yerinde kalmalı) */
@media (max-width: 768px) {
  .footer-container {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column; 
      text-align: center;
  }
  #iletisim {
    display: none;
  }
  .contact-info {
      text-align: center;
      margin-top: 15px;
  }
  .contact-info p {
    margin-left: 0px;
    margin-right: 5px;
  }
}

@media(max-width:480px){
  .contact-info{
    display: none;
  }
}
