* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-body);
  font-family: Inter, sans-serif;
}

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

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0);
  border-radius: 999px;
  transition: background 0.6s ease;
}

.scroll-active::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.08);
}

.scroll-active::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.16);
}