:root {
    /* Colors */
    --color-primary: #d44c1e;
    --color-primary-hover: #b8401a;
    --color-primary-light: rgba(212, 76, 30, 0.14);
    --color-secondary: #8b96a8;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-info: #3b82f6;
    --color-success-light: rgba(34, 197, 94, 0.14);
    --color-success-bg: rgba(34, 197, 94, 0.14);

    /* Neutrals (light grays for text on dark surfaces) */
    --color-white: #ffffff;
    --color-gray-50: #1a1f2b;
    --color-gray-100: #232a38;
    --color-gray-200: #3d4658;
    --color-gray-300: #5f6b7e;
    --color-gray-400: #7a8699;
    --color-gray-500: #94a3b8;
    --color-gray-600: #aab4c4;
    --color-gray-700: #cbd5e1;
    --color-gray-800: #e2e8f0;
    --color-gray-900: #f8fafc;

    /* Surfaces */
    --surface-0: #0a0d13;
    --surface-1: #12161f;
    --surface-2: #1a1f2b;
    --surface-3: #232a38;

    /* Backgrounds */
    --bg-page: var(--surface-0);
    --bg-card: var(--surface-1);
    --bg-sidebar: var(--surface-1);
    --bg-topbar: var(--surface-1);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;

    /* Borders */
    --border-radius-sm: 0.375rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-color: var(--surface-3);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.4), 0 1px 2px -1px rgb(0 0 0 / 0.4);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.4);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);

    /* Layout */
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 72px;
    --topbar-height: 64px;
    --content-max-width: 1400px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
}
