body {
  background-color: #0a0a0a;
  color: #e5e5e5;
  overscroll-behavior-y: none;
}

/* Range Sliders */
input[type=range] {
  -webkit-appearance: none; 
  background: transparent; 
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #00ff41;
  cursor: pointer;
  margin-top: -8px; 
  box-shadow: 0 0 10px rgba(0,255,65,0.5);
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: #333;
  border-radius: 2px;
}
.danger-slider::-webkit-slider-thumb {
  background: #ff003c;
  box-shadow: 0 0 10px rgba(255,0,60,0.5);
}