/**
 * Base styles - Foundation for all pages
 *
 * This module provides the foundational CSS reset and base styles
 * that are shared across all pages in the application.
 *
 * Usage: Include this CSS file first before all other stylesheets.
 */

/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */

html, body {
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    height: 100%;
    font-family: 'Space Mono', 'SF Mono', 'Roboto Mono', monospace;
    color: #e0e0e0;
}

body {
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
    /* Color palette */
    --color-bg-dark: #0a0a0a;
    --color-bg-medium: #0f0f11;
    --color-bg-light: #141416;
    --color-border: #1a1a1d;
    --color-border-light: #1f1f22;
    --color-border-accent: #3c2a5e;
    --color-text-primary: #e0e0e0;
    --color-text-secondary: #888;
    --color-text-muted: #666;
    --color-text-dim: #444;
    --color-text-disabled: #333;
    --color-accent: #a78bfa;
    --color-accent-rgb: 139, 92, 246;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;

    /* Typography */
    --font-family: 'Space Mono', 'SF Mono', 'Roboto Mono', monospace;
    --font-size-xs: 0.7rem;
    --font-size-sm: 0.75rem;
    --font-size-base: 0.85rem;
    --font-size-lg: 1.1rem;

    /* Transitions */
    --transition-fast: 0.15s;
    --transition-normal: 0.2s;

    /* Border radius */
    --radius-sm: 3px;
    --radius-md: 4px;
    --radius-lg: 8px;

    /* Max width for content */
    --max-width-content: 1400px;
}