@tailwind base; @tailwind components; @tailwind utilities; body { @apply bg-black text-white antialiased; } /* Slim, dark-mode scrollbars — replaces the chunky default */ * { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.08) transparent; } *::-webkit-scrollbar { width: 8px; height: 8px; } *::-webkit-scrollbar-track { background: transparent; } *::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.06); border-radius: 9999px; border: 2px solid transparent; background-clip: content-box; } *::-webkit-scrollbar-thumb:hover { background: rgba(244, 63, 94, 0.4); background-clip: content-box; } *::-webkit-scrollbar-corner { background: transparent; }