@tailwind base; @tailwind components; @tailwind utilities; body { margin: 0; background: #000; color: #e2e8f0; font-family: 'JetBrains Mono', ui-monospace, monospace; overflow: hidden; } canvas { cursor: crosshair; touch-action: none; } /* Range slider */ input[type='range'] { appearance: none; background: rgba(6, 182, 212, 0.15); height: 4px; border-radius: 2px; } input[type='range']::-webkit-slider-thumb { appearance: none; height: 14px; width: 14px; border-radius: 50%; background: #06b6d4; box-shadow: 0 0 8px rgba(6, 182, 212, 0.5); cursor: pointer; } input[type='range']::-moz-range-thumb { height: 14px; width: 14px; border-radius: 50%; background: #06b6d4; border: none; box-shadow: 0 0 8px rgba(6, 182, 212, 0.5); cursor: pointer; } input[type='range']::-moz-range-track { background: rgba(6, 182, 212, 0.15); height: 4px; border-radius: 2px; }