body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  touch-action: none;
}
#game {
  position: relative;
  width: 540px; height: 720px;
  max-width: 100vw; max-height: calc(100vh - 80px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
#stage { display: block; width: 540px; height: 720px; max-width: 100%; max-height: 100%; background: #0b0e14; }
#hud {
  position: absolute; left: 14px; top: 12px; z-index: 2;
  font-size: 14px; color: var(--gold-2);
  text-shadow: 0 1px 2px #000; pointer-events: none;
}
#overlay {
  position: absolute; inset: 0; background: rgba(7,8,11,.86);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 10px; padding: 28px; text-align: center; z-index: 3;
}
#overlay[hidden] { display: none; }
#overlay h1 { font-family: "Cormorant Garamond", serif; font-size: 44px; margin: 0; }
#overlay p { color: var(--mute); max-width: 380px; }
.wordmark { width: min(86%, 380px); }
#start-btn { width: auto; padding: 12px 36px; }
.lyceum-foot { width: 540px; max-width: 100%; }
