body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #0f0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.game-card {
  display: block;
  background: #222;
  border: 2px solid #0f0;
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.game-card:hover {
  background: #0f0;
  color: #000;
  transform: scale(1.05);
}

.game-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.game-card p {
  margin: 0;
  font-size: 1em;
}
