* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--dsgn-page);
  color: var(--dsgn-text-primary);
  font-family: var(--dsgn-font-display);
  -webkit-font-smoothing: antialiased;
}

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

.splash {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 4rem 1.5rem;
  text-align: center;
}

/* The "logo": the game name set in the display font, the way the brand
   wordmark reads across the site. */
.splash__wordmark {
  margin: 0;
  font-family: var(--dsgn-font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 12vw, 7rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--dsgn-text-primary);
}

.splash__status {
  margin: 0;
  font-family: var(--dsgn-font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--dsgn-signage);
}

.site-footer {
  border-top: 1px solid var(--dsgn-border);
}

.site-footer__inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  display: flex;
  justify-content: center;
}

.site-footer a {
  font-family: var(--dsgn-font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dsgn-text-muted);
  text-decoration: none;
  transition: color 150ms ease;
}

.site-footer a:hover {
  color: var(--dsgn-signage);
}

.site-footer a:focus-visible {
  outline: 2px solid var(--dsgn-signage);
  outline-offset: 3px;
}
