/* CSS Custom Properties */
:root {
    /* Base Colors */
    --bg-light: #fcfcfb;
    --bg-dark: #0a0a0a;
    --text-light: #1a1a1a;
    --text-dark: #e8e8e8;

    /* Accent Colors */
    --accent-primary: #666666;
    --accent-secondary: #999999;
    --accent-highlight: #4a4a4a;
    --orange: oklch(0.72 0.12 55);
    --terminal-color: #88cc88;

    /* Borders */
    --border-light: rgba(0, 0, 0, 0.08);
    --border-dark: rgba(255, 255, 255, 0.12);

    /* Glass Effects */
    --glass-light: rgba(255, 255, 255, 0.6);
    --glass-dark: rgba(20, 20, 20, 0.6);

    /* Shadows */
    --shadow-subtle: 0 2px 12px rgba(0, 0, 0, 0.06);

    /* Terminal Colors (Light Mode - Blue DOS style) */
    --term-bg: #0000aa;
    --term-text: #ffffff;
    --term-border: #808080;
    --term-prompt: #a0a0a0;
    --term-accent: oklch(0.72 0.12 55);
    --term-header: rgba(0, 0, 0, 0.02);
}
