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

body {
  background: #0a0a12;
  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, 18, 0.95);
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  color: #e8e6e3;
  z-index: 100;
  border: 1px solid rgba(255, 200, 80, 0.3);
}

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

#info p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  color: #a8a6a3;
}

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

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

#controls button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 200, 80, 0.4);
  background: rgba(10, 10, 18, 0.8);
  color: #ffc850;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s;
}

#controls button:hover {
  background: rgba(255, 200, 80, 0.2);
}
