:root {
    --primary-color: #00ffff; /* 青色 */
    --secondary-color: #00ff00; /* 绿色 */
    --background-color: #0a192f; /* 深蓝 */
    --card-background: #172a45;
    --text-color: #ccd6f6;
    --text-light: #8892b0;
    --border-color: #233554;
    --glow-color: rgba(0, 255, 255, 0.5);
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: var(--background-color);
    color: var(--text-color);
    font-family: 'Roboto Mono', monospace;
    overflow-x: hidden;
}



.console-footer {

    background: rgba(23, 42, 69, 0.95); /* 更深色，略微透明 */

    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    font-size: 0.8em;
    color: var(--text-light);
}

