@import "https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css";

:root {
    --bg-surface: #0f1115;
    --bg-surface-alt: #161920;
    --border-color: #262b36;
    --text-color: #f3f4f6;
    --muted-color: #9ca3af;
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
}

body {
    background-color: #0f1115;
    color: #f3f4f6;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.font-mono {
    font-family: 'Space Mono', monospace;
}

.bg-surface { background-color: #0f1115; }
.bg-surface-alt { background-color: #161920; }
.border-border { border-color: #262b36; }
.text-text { color: #f3f4f6; }
.text-muted { color: #9ca3af; }
.text-primary { color: #60a5fa; }
.bg-primary { background-color: #2563eb; }
.bg-primary-dark { background-color: #1d4ed8; }
