body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0f172a;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.home-container {
  text-align: center;
  padding: 2rem;
}

.title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.game-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.game-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #1e293b;
  border: 2px solid #38bdf8;
  border-radius: 0.5rem;
  color: #38bdf8;
  font-size: 1.25rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.game-button:hover {
  background-color: #0ea5e9;
  color: #f1f5f9;
  transform: scale(1.05);
}
