@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap'); @tailwind base; @tailwind components; @tailwind utilities; :root { --bg-primary: #0f1117; --bg-secondary: #1a1d27; --bg-card: #1e2130; --border-color: #2a2e3d; --text-primary: #e8eaed; --text-secondary: #9aa0b0; --text-muted: #5c6278; --green: #22f06a; --red: #ff4060; --amber: #ffb020; } * { box-sizing: border-box; } html, body { margin: 0; padding: 0; background-color: var(--bg-primary); color: var(--text-primary); font-family: 'Inter', system-ui, -apple-system, sans-serif; min-height: 100vh; } body { background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(34, 240, 106, 0.04) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 64, 96, 0.03) 0%, transparent 50%), var(--bg-primary); } ::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 3px; }