body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  text-align: center;
  padding: 20px;
}
h1 {
  margin-bottom: 20px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.game-card {
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.game-card:hover {
  transform: scale(1.05);
}
.game-card img {
  width: 100%;
  border-radius: 6px;
}
