:root {
    --bg: #0a0a0f;
    --terminal-bg: #0d1117;
    --text: #c9d1d9;
    --orange: #f0a500;
    --orange-bright: #ffb833;
    --orange-dim: #b07d20;
    --cyan: #ffb833;
    --yellow: #e6a800;
    --magenta: #cc8800;
    --red: #f85149;
    --dim: #6e7681;
    --border: #21262d;
    --selection: #3d2e1a;
    --prompt-color: #f0a500;
    --header-bg: #161b22;
    --font-mono: 'Courier New', 'Consolas', 'Monaco', 'Lucida Console', monospace;
    --glow: 0 0 8px rgba(240, 165, 0, 0.2);
    --win1-bg: #000080;
    --win1-text: #ffffff;
    --win1-progress: #f0a500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--selection);
    color: #fff;
}

body {
    background-color: #050508;
    background-image:
        radial-gradient(ellipse at 50% 30%, rgba(240, 165, 0, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 184, 51, 0.03) 0%, transparent 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: var(--font-mono);
    padding: 20px;
    user-select: none;
    overflow: hidden;
}
