@tailwind base; @tailwind components; @tailwind utilities; :root { --background: #09090b; --foreground: #fafafa; } * { box-sizing: border-box; } body { background: var(--background); color: var(--foreground); font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; } ::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background: #111113; } ::-webkit-scrollbar-thumb { background: #27272a; border-radius: 3px; } ::-webkit-scrollbar-thumb:hover { background: #3f3f46; }