@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

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

body {
  background: #000;
  overflow: hidden;
  font-family: 'Share Tech Mono', monospace;
  color: #0f0;
}

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

.controls {
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid #0ff;
  border-radius: 4px;
  z-index: 100;
  font-size: 11px;
  color: #0ff;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.15), inset 0 0 8px rgba(0, 255, 255, 0.05);
  min-width: 180px;
  transition: all 0.3s ease;
}

.controls.collapsed .controls-inner {
  display: none;
}

.controls-toggle {
  cursor: pointer;
  text-align: center;
  padding: 6px 12px;
  user-select: none;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.controls-inner {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.controls label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  letter-spacing: 1px;
}

.controls input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: #033;
  border-radius: 2px;
  outline: none;
}

.controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0ff;
  cursor: pointer;
  box-shadow: 0 0 6px #0ff;
}

.controls select {
  background: #001a1a;
  border: 1px solid #0ff;
  color: #0ff;
  padding: 3px 6px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  border-radius: 2px;
}

.check-label {
  flex-direction: row !important;
  align-items: center;
  gap: 6px !important;
}

.check-label input[type="checkbox"] {
  accent-color: #0ff;
}

#remix-link {
  position: fixed;
  bottom: 8px;
  right: 12px;
  z-index: 100;
  color: #f0f;
  text-decoration: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  opacity: 0.6;
  text-shadow: 0 0 6px #f0f;
  transition: opacity 0.2s;
}

#remix-link:hover {
  opacity: 1;
}