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

body {
  overflow: hidden;
  background: #0a0a12;
  font-family: monospace;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

#info {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  color: #a0c0dc;
  padding: 2rem;
  max-width: 500px;
  border: 1px solid rgba(160, 192, 220, 0.3);
  z-index: 100;
}

#info h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #e05050;
}

#info .subtitle {
  font-size: 1rem;
  color: rgba(224, 80, 80, 0.8);
  margin-bottom: 1rem;
}

#info .description {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: rgba(160, 192, 220, 0.9);
}

#info .source {
  font-size: 0.75rem;
  color: rgba(160, 192, 220, 0.6);
  margin-bottom: 1rem;
}

#info .controls-hint {
  font-size: 0.7rem;
  color: rgba(160, 192, 220, 0.5);
  margin-bottom: 1rem;
}

#info .credit {
  font-size: 0.7rem;
  color: rgba(160, 192, 220, 0.4);
}

#info .credit a {
  color: rgba(160, 192, 220, 0.6);
}

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

#controls button {
  background: rgba(0, 0, 0, 0.5);
  color: rgba(160, 192, 220, 0.7);
  border: 1px solid rgba(160, 192, 220, 0.3);
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-family: monospace;
  font-size: 0.8rem;
}

#controls button:hover {
  background: rgba(30, 30, 50, 0.7);
  border-color: rgba(160, 192, 220, 0.5);
}
