:root {
  color-scheme: dark;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

canvas {
  display: block;
  width: 100vw;
  height: 100vh;
}

#status {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: min(520px, calc(100vw - 32px));
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  line-height: 1.4;
  white-space: pre-wrap;
  backdrop-filter: blur(8px);
}
