body {
  background: #0f0f12;
  color: white;
  font-family: sans-serif;
  margin: 0;
}

header {
  padding: 1rem 2rem;
  background: #1a1a1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  color: #fbbf24;
}

#searchBar {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: none;
  width: 200px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.game-card {
  background: #1f1f23;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: transform 0.2s;
}

.game-card:hover {
  transform: scale(1.05);
}

.game-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.game-title {
  padding: 0.5rem;
  text-align: center;
}
