body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.home-container {
  text-align: center;
  max-width: 500px;
  padding: 2rem;
}

.logo {
  font-size: 2rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
}

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

.game-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  color: #38bdf8;
  background: transparent;
  border: 2px solid #38bdf8;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.game-button:hover {
  background-color: #38bdf8;
  color: #0f172a;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer a {
  color: #38bdf8;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer a:hover {
  text-decoration: underline;
}