@import "tailwindcss"; @keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(400%); } } :root { --background: #0a0a0f; --card: #111118; --border: #1e1e2e; --primary: #3b82f6; --secondary: #8b5cf6; --success: #22c55e; --warning: #f59e0b; --error: #ef4444; --foreground: #f0f0f5; --muted: #6b7280; } * { border-color: var(--border); } body { background-color: var(--background); color: var(--foreground); font-family: var(--font-inter), Inter, system-ui, -apple-system, sans-serif; } /* Scrollbar */ ::-webkit-scrollbar { width: 6px; height: 6px; } ::-webkit-scrollbar-track { background: #0a0a0f; } ::-webkit-scrollbar-thumb { background: #1e1e2e; border-radius: 3px; } ::-webkit-scrollbar-thumb:hover { background: #3b82f6; }