:root {
    /* Colors - Background */
    --color-bg-1: #313338;
    --color-bg-2: #2b2d31;
    --color-bg-3: #1e1f22;
    --color-bg-highlight: #3a3d42;

    /* Colors - Brand */
    --color-primary: #2ea78f;
    --color-primary-hover: #26917c;
    --color-danger: #f23f42;
    --color-danger-hover: #d63638;
    --color-warning: #f0a020;
    --color-success: #2ea78f;
    --color-info: #268efc;

    /* Colors - Text */
    --color-text: #d0dee1;
    --color-text-minor: #879ba4;
    --color-text-major: #ffffff;
    --color-text-link: #268efc;

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-family-mono: 'Fira Code', 'Consolas', 'Monaco', monospace;

    --font-size-largest: 2rem;
    --font-size-large: 1.75rem;
    --font-size-normal: 1rem;
    --font-size-small: 0.875rem;
    --font-size-smallest: 0.75rem;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 600;

    --line-height: 1.5;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
}

/* Base styles */
body {
    font-family: var(--font-family);
    font-size: var(--font-size-normal);
    line-height: var(--line-height);
    color: var(--color-text);
    background-color: var(--color-bg-1);
    margin: 0;
    padding: 0;
}

a {
    color: var(--color-text-link);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary);
}
