@import 'tailwindcss'; /* Dark theme tokens */ :root { --background: #000000; --surface: #0a0a0a; --surface-elevated: #141414; --text: #ffffff; --text-secondary: #a1a1aa; --text-muted: #71717a; --primary: #3b82f6; --accent: #60a5fa; --border: #27272a; --success: #22c55e; --warning: #f59e0b; --error: #ef4444; } /* Base reset */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background-color: var(--background); color: var(--text); } /* Hide scrollbars */ .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; } .scrollbar-hide::-webkit-scrollbar { display: none; }