html, body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
  font-family: system-ui, -apple-system, sans-serif;
}

#stage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

#wordmark {
  position: fixed;
  top: 14px;
  left: 18px;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  mix-blend-mode: difference;
  user-select: none;
  pointer-events: none;
}

#footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  mix-blend-mode: difference;
  user-select: none;
  pointer-events: none;
}

#footer a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  pointer-events: auto;
}

#footer a:hover {
  text-decoration-color: currentColor;
}

#credit:empty { display: none; }
