body {
  background: #111827;
  color: white;
  font-family: Arial;
  text-align: center;
  margin: 0;
}

.logo {
  font-size: 48px;
  margin-top: 40px;
}

.games {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.game-card {
  background: #1f2937;
  padding: 40px;
  border-radius: 16px;
  width: 240px;
  text-decoration: none;
  color: white;
  transition: 0.2s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

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

.game-card h2 {
  margin-top: 0;
  font-size: 24px;
}