body {
  margin: 0;
  background-color: #007bff;
  font-family: Arial, sans-serif;
  color: #fff;
  overflow-x: hidden;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0056b3;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}
.top-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  align-items: center;
}
.logo { font-size: 1.5em; font-weight: bold; color: #fff; text-align: center; }
.search-lang { display: flex; justify-content: space-between; width: 100%; max-width: 800px; margin-top: 8px; }
input[type="text"] {
  width: 70%; padding: 8px; border-radius: 5px; border: none;
}
select {
  padding: 8px; border-radius: 5px; border: none;
}
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
nav button {
  background: #0069d9; color: white; border: none;
  margin: 5px; padding: 8px 15px; border-radius: 20px;
  cursor: pointer;
}
nav button.active { background: #ffc107; color: #000; }

main {
  padding-top: 160px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 15px;
  justify-items: center;
  padding-bottom: 80px;
}
.game-card {
  text-align: center;
  cursor: pointer;
}
.game-card img {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #003f7f;
  text-align: center;
  color: #fff;
  padding: 8px;
  z-index: 1000;
}
