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

body {
  background: #0a0a0f;
  overflow: hidden;
  font-family: 'Courier New', monospace;
}

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

#info {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10, 10, 15, 0.95);
  border: 1px solid rgba(100, 180, 255, 0.3);
  padding: 2rem;
  max-width: 500px;
  color: #c8d8e8;
  z-index: 100;
}

#info h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #88ccff;
  font-weight: normal;
}

#info .subtitle {
  font-size: 0.9rem;
  color: #88aacc;
  margin-bottom: 1rem;
}

#info .description {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #a8b8c8;
}

#info .source {
  font-size: 0.75rem;
  color: #6888a8;
  margin-bottom: 1rem;
}

#info .controls-hint {
  font-size: 0.75rem;
  color: #5878a8;
  margin-bottom: 0.5rem;
}

#info .credit {
  font-size: 0.7rem;
  color: #4868a8;
}

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

#controls {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 50;
}

#controls button {
  background: rgba(20, 30, 40, 0.8);
  border: 1px solid rgba(100, 180, 255, 0.3);
  color: #88ccff;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
}

#controls button:hover {
  background: rgba(40, 60, 80, 0.8);
}
