body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #fff;
}

header, footer {
  text-align: center;
  padding: 15px;
  background: #020617;
}

#game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  padding: 15px;
}

.game {
  background: #1e293b;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.game a {
  color: #38bdf8;
  text-decoration: none;
}
.game img {
  width: 100%;
  max-height: 180px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.game img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
