* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; height: 100%; overflow: hidden; background: #0a0a14; }
canvas { display: block; width: 100%; height: 100%; }
#info {
  position: fixed;
  bottom: 16px;
  left: 16px;
  max-width: 420px;
  color: #b0b8c8;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 11px;
  line-height: 1.5;
  background: rgba(10, 10, 20, 0.75);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 8px;
}
#info h1 { font-size: 14px; margin-bottom: 6px; color: #d0d8e8; }
#info p { margin-bottom: 4px; }
#info .credit { opacity: 0.5; font-size: 10px; margin-top: 6px; }
#start-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 20, 0.9);
  z-index: 100;
  cursor: pointer;
}
#start-overlay span {
  color: #8090b0;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 16px;
  letter-spacing: 2px;
}
#start-overlay.hidden { display: none; }
