/* Navbar'ı opak yap */
.nav-solid{ background: #0047B3; border-bottom:1px solid rgba(255,255,255,.06); }

/* Games alanı: header kaldırıldığı için üst boşluk eklendi */
.games{ background:#f3f5f8; padding:110px 0 80px; }
.container{ max-width:1100px; margin:0 auto; padding:0 24px; }

.game-card{
  background:#fff;
  border-radius:18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  padding:32px;
  display:grid;
  grid-template-columns: 380px 1fr;
  gap:32px;
  align-items:center;
  margin:28px 0;
}

.game-media img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:24px;
  display:block;
  background:#eaecef;
}

.game-body h2{
  margin:0 0 12px;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing:.5px;
  font-weight:800;
  color:#1d2935;
}
.game-body p{
  margin:0 0 18px;
  color:#5a6b7b;
  line-height:1.7;
  max-width:56ch;
}

.store-buttons{ display:flex; gap:12px; flex-wrap:wrap; }
.store-btn{ display:inline-flex; border-radius:10px; overflow:hidden; transform:translateZ(0); }
.store-btn:hover{ filter:brightness(1.05); }

@media (max-width: 980px){
  .game-card{ grid-template-columns: 1fr; padding:22px; }
  .game-media img{ height:380px; }
}


.store-buttons {
  display: flex;
  justify-content: flex-start; /* merkez yerine sol hizalama */
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}


.store-btn img {
  height: 42px;
  width: auto;
  display: block;
  transition: transform .15s ease, filter .15s ease;
}

.store-btn:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}
