@tailwind base; @tailwind components; @tailwind utilities; @layer base { /* ── Light theme (default) ──────────────────────────── */ :root { --bg: #FAF9F7; --surface: #FFFFFF; --surface2: #F5F4F0; --surface3: #ECEAE4; --border: rgba(0,0,0,0.12); --border-strong: rgba(0,0,0,0.22); --text: #1A1A1A; --text2: #666560; --text3: #999791; --accent: #D97449; --accent-hover: #C4623D; --accent-text: #FFFFFF; --success: #2D7D52; --success-bg: #F0FAF4; --warning: #B5620A; --warning-bg: #FFF8F0; --error: #C0392B; --error-bg: #FFF0EE; --code-bg: #F0EDE8; --shadow: 0 1px 3px rgba(0,0,0,0.08); } /* ── Dark theme ─────────────────────────────────────── */ [data-theme="dark"] { --bg: #1A1917; --surface: #242220; --surface2: #2E2C29; --surface3: #393733; --border: rgba(255,255,255,0.10); --border-strong: rgba(255,255,255,0.18); --text: #E8E6E1; --text2: #9B9891; --text3: #6B6965; --accent: #E8855A; --accent-hover: #D9724A; --accent-text: #FFFFFF; --success: #4CAF80; --success-bg: #0F2D1E; --warning: #E8A030; --warning-bg: #2A1F0A; --error: #E05555; --error-bg: #2A0F0F; --code-bg: #161513; --shadow: 0 1px 3px rgba(0,0,0,0.30); } * { box-sizing: border-box; } html { scroll-behavior: smooth; } body { min-height: 100vh; background-color: var(--bg); color: var(--text); font-family: 'Inter', system-ui, sans-serif; transition: background-color 0.35s ease, color 0.35s ease; } /* Smooth theme transition on theme-sensitive elements — exclude pseudo-elements to preserve CSS animations */ * { transition: background-color 0.35s ease, color 0.2s ease, border-color 0.3s ease, box-shadow 0.3s ease; } /* Disable transition for elements that need instant response or use CSS animations */ input, textarea, button, a, [class*="nav-"], [class*="btn-"], canvas { transition: none; } ::-webkit-scrollbar { width: 6px; height: 6px; } ::-webkit-scrollbar-track { background: var(--surface2); } ::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 3px; } ::-webkit-scrollbar-thumb:hover { background: var(--accent); } } /* ═══════════════════════════════════════════════════════════════════ Glitch MAC text — GLOBAL (must NOT be inside Svelte scoped