/*
 * Apex landing page for the daily-game.page hub. Deliberately simple and
 * neutral — it just points at the games, each of which owns its own subdomain.
 */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #23252b;
  background: linear-gradient(160deg, #eef2f6 0%, #e6ecf3 45%, #e9f0e8 100%);
}

.hub {
  width: 100%;
  max-width: 560px;
}

.hub-header {
  text-align: center;
  margin-bottom: 2rem;
}

h1 {
  margin: 0 0 0.35rem;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
}

.tagline {
  margin: 0;
  color: #6b7280;
  font-size: 1.05rem;
}

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

.game-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e4e6eb;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.game-card--shinro:hover { border-color: #7bb661; }
.game-card--set:hover { border-color: #9966cc; }

.game-icon {
  font-size: 2rem;
  line-height: 1;
  flex: 0 0 auto;
}

.game-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1 1 auto;
  min-width: 0;
}

.game-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.game-blurb {
  font-size: 0.92rem;
  color: #6b7280;
}

.game-go {
  flex: 0 0 auto;
  font-weight: 600;
  color: #6d5dd8;
  font-size: 0.95rem;
}

.hub-footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #8a919c;
}

.hub-footer p {
  margin: 0;
}

@media (max-width: 420px) {
  .game-go { display: none; }
  h1 { font-size: 2rem; }
}
