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

html { scroll-behavior: smooth; }
body { font-feature-settings: 'cv11', 'ss01'; }

/* Range slider — dark theme */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: #1c2330;
  border-radius: 9999px;
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #14b8a6;
  border: 3px solid #0a0e14;
  box-shadow: 0 0 0 1px #14b8a6, 0 4px 12px rgba(20, 184, 166, 0.4);
  cursor: pointer;
  transition: transform 0.15s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #14b8a6;
  border: 3px solid #0a0e14;
  cursor: pointer;
}
input[type="range"].accent-accent-500::-webkit-slider-thumb {
  background: #f59e0b;
  box-shadow: 0 0 0 1px #f59e0b, 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Smooth gradient on text */
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

/* Subtle scroll fade for tables on mobile */
@media (max-width: 768px) {
  table { font-size: 0.75rem; }
  table th, table td { padding: 0.5rem !important; }
}

/* Selection */
::selection {
  background: #0d9488;
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #11161e; }
::-webkit-scrollbar-thumb { background: #1c2330; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #0f766e; }
