@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

body { font-family: 'Inter', sans-serif; background: #0a0a0a; color: white; }

select {
  background: #1f2937;
  color: white;
  border: 3px solid #f59e0b;
  border-radius: 9999px;
  padding: 16px 24px;
  font-size: 18px;
  width: 100%;
  outline: none;
  box-shadow: 0 0 25px -5px #f59e0b;
  transition: all 0.3s;
}
select:focus {
  border-color: #fbbf24;
  box-shadow: 0 0 40px 0 #f59e0b;
}

input[type="range"] {
  accent-color: #f59e0b;
  background: #374151;
  border-radius: 9999px;
  height: 12px;
}
input[type="range"]::-webkit-slider-thumb {
  background: #f59e0b;
  border-radius: 9999px;
  width: 28px;
  height: 28px;
  box-shadow: 0 0 20px #f59e0b;
}
