* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #080808;
  color: #e8d5a3;
  font-family: Georgia, serif;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#narration {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: #888;
  font-style: italic;
  text-align: center;
  max-width: 600px;
  z-index: 10;
}

#qr {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  z-index: 10;
}