/* 全局滚动条优化（前台）：
   1) scrollbar-gutter: stable —— 始终为滚动条预留槽位，滚动条出现/消失时主内容宽度不变、不被挤压；
   2) 统一滚动条外观：细轨道 + 圆角滑块，悬停显示品牌橙，与站点 #ff6a00 主色呼应。 */
html {
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #c9c9c9 #f4f4f4;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f4f4f4; }
::-webkit-scrollbar-thumb {
  background: #c9c9c9;
  border-radius: 8px;
  border: 2px solid #f4f4f4;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background-color: #ff6a00; }
::-webkit-scrollbar-corner { background: #f4f4f4; }
