@import "tailwindcss"; :root { --background: #121212; --foreground: #ffffff; --accent: #ff6b00; --accent-hover: #ff8533; --card-bg: #1e1e1e; --card-border: #2d2d2d; --text-primary: #ffffff; --text-secondary: #a0a0a0; --text-muted: #666666; } @theme inline { --color-background: var(--background); --color-foreground: var(--foreground); --font-sans: var(--font-geist-sans); --font-mono: var(--font-geist-mono); } @media (prefers-color-scheme: dark) { :root { --background: #0a0a0a; --foreground: #ededed; } } body { background: var(--background); color: var(--text-primary); font-family: Arial, Helvetica, sans-serif; } /* Custom scrollbar */ ::-webkit-scrollbar { width: 8px; height: 8px; } ::-webkit-scrollbar-track { background: var(--card-bg); } ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: var(--accent-hover); }