/* Temel ayarlar */
body, html { margin:0; padding:0; font-family: sans-serif; }

/* Hero bölümü */
header.hero {
  background: linear-gradient(135deg, #1a1a1a, #333);
  height: 80vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

/* Menü */
nav { display: flex; justify-content: space-between; align-items: center; }
nav ul { display: flex; gap: 20px; list-style: none; }
nav a { color: white; text-decoration: none; font-weight: bold; transition: 0.3s; }
nav a:hover { color: #ff3b3f; }
.logo { font-size: 1.5em; font-weight: bold; }

/* Hero içerik */
.hero-content { text-align: center; margin-bottom: 50px; }
.hero-content h1 { font-size: 2.5em; margin-bottom: 10px; }
.btn {
  background: #ff3b3f;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}
.btn:hover { background: #ff1a22; }

/* Oyunlar bölümü */
.games { padding: 50px; text-align: center; background: #f0f0f0; }
.game-cards { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.card { background: white; padding: 20px; border-radius: 12px; width: 250px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: transform 0.3s; }
.card:hover { transform: translateY(-10px); }

/* Footer */
footer { background: #222; color: white; text-align: center; padding: 20px; }