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

body {
  font-family: 'Monospace', 'Courier New', monospace;
  background: #1a1a2e;
  color: #eaeaea;
  overflow: hidden;
  height: 100vh;
}

#canvas {
  display: block;
  width: 100vw;
  height: 100vh;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

#info {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  background: rgba(26, 26, 46, 0.9);
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #444;
  backdrop-filter: blur(10px);
}

#info h1 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #ffd700;
}

#info p {
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 16px;
}

#controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.75rem;
}

#controls label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #ccc;
}

#controls input[type="range"] {
  width: 200px;
  accent-color: #ffd700;
}

#controls span {
  color: #ffd700;
  font-weight: bold;
  min-width: 30px;
}

@media (max-width: 600px) {
  #info {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 16px;
  }
  #controls input[type="range"] {
    width: 100%;
  }
}