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

body {
  background: #0a0806;
  overflow: hidden;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

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

#info {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #d4c4b0;
  font-size: 13px;
  line-height: 1.6;
  max-width: 500px;
  background: rgba(10, 8, 6, 0.9);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(200, 150, 100, 0.2);
}

#info h1 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #e8d8c8;
}

#info .subtitle {
  font-size: 12px;
  color: #a89888;
  margin-bottom: 12px;
  font-style: italic;
}

#info .description {
  margin-bottom: 12px;
  color: #c8b8a8;
}

#info .source {
  font-size: 11px;
  color: #887868;
  margin-bottom: 8px;
}

#info .controls-hint {
  font-size: 11px;
  color: #887868;
}

#info .credit {
  margin-top: 12px;
  font-size: 11px;
}

#info .credit a {
  color: #c89860;
  text-decoration: none;
}

#controls {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
}

#controls button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(200, 150, 100, 0.3);
  background: rgba(10, 8, 6, 0.8);
  color: #c8b8a8;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

#controls button:hover {
  background: rgba(200, 150, 100, 0.2);
  border-color: rgba(200, 150, 100, 0.5);
}
