body {
  background: #0f1720;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
}

.games {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.game-card {
  width: 240px;
  height: 120px;
  background: #1e2933;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  color: white;
  transition: transform 0.2s, background 0.2s;
}

.game-card:hover {
  background: #263241;
  transform: translateY(-4px);
}

.game-card.disabled {
  opacity: 0.4;
  pointer-events: none;
}
