/* 自訂捲軸樣式 */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0B0D10;
}
::-webkit-scrollbar-thumb {
  background: #232833;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
}

/* 全域平滑過渡 */
button, a {
  transition: all 0.25s ease-in-out;
}

/* 隱藏特定容器的滾動條但保持滾動功能 */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}