/* Genel */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Menü */
nav {
  background: #1e3c72;
  color: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}
.lang-switch button {
  background: transparent;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.lang-switch button:hover {
  text-decoration: underline;
}

/* Bölümler */
section {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}
section h1, section h2, section h3 {
  color: #1e3c72;
}

/* Oyunlar */
#games a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #1e3c72;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}
#games a:hover {
  background: #2a5298;
}

/* Footer */
footer {
  text-align: center;
  background: #1e3c72;
  color: white;
  padding: 15px;
  margin-top: 30px;
}