body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  margin: 0;
  padding: 20px;
}

h1 {
  color: #222;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
  color: #444;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.game-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

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

