/* Static Bashcrawl Web theme tokens. */
:root {
    --bg-primary: #0d0d1a;
    --bg-secondary: #140826;
    --bg-card: #11112a;
    --bg-input: #1e1e3f;
    --border-color: #2d2d5a;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-heading: #f8fafc;
    --accent-green: #4ade80;
    --accent-red: #f87171;
    --accent-blue: #22d3ee;
    --accent-purple: #c084fc;
    --accent-yellow: #fbbf24;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --font-mono: "SF Mono", "Fira Code", "Cascadia Code", monospace;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

[data-theme="light"] {
    --bg-primary: #f5f0e8;
    --bg-secondary: #ede5d8;
    --bg-card: #fff;
    --bg-input: #fff;
    --border-color: #d4c9b8;
    --text-primary: #2d2419;
    --text-secondary: #5c4f3d;
    --text-muted: #8a7b68;
    --text-heading: #1a1008;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
}

button,
input {
    font: inherit;
}

code,
pre {
    font-family: var(--font-mono);
}
