/* =========================================================
   CT Pulse — Custom Scrollbar
   Subtle dark default, green glow on hover.
========================================================= */

html {
  scrollbar-width: auto;
  scrollbar-color: #1a1f2a #0c0e12;
}

::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #0c0e12, #080a0e);
  border-radius: 10px;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.02);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1a2332, #111820);
  border-radius: 10px;
  border: 3px solid #0c0e12;
  box-shadow: 0 0 4px rgba(16,185,129,0.08), inset 0 1px 0 rgba(255,255,255,0.04), inset 0 -2px 6px rgba(0,0,0,0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #10b981, #065f46);
  box-shadow: 0 0 14px rgba(16,185,129,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}
