body {
    background: #10121a;
    color: #e0e6f0;
    font-family: 'Fira Mono', 'Consolas', monospace;
    margin: 0;
    height: 100vh;
}

#terminal-container {
    background: #181a24;
    border-radius: 10px;
    box-shadow: 0 0 24px #000c;
    width: 80vw;
    max-width: 900px;
    margin: 40px auto;
    padding: 28px;
    min-height: 60vh;
    overflow-y: auto;
    font-size: 0.95em;
}

.terminal-line {
    display: flex;
    align-items: center;
}

.terminal-prompt {
    color: #7fd1ff;
    margin-right: 8px;
    font-weight: bold;
    text-shadow: 0 0 4px #1e90ff44;
}

.terminal-input {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    outline: none;
    width: 100%;
}

.terminal-output {
    color: #aeb6c3;
    margin-left: 1.5em;
    margin-right: 1.5em;
    white-space: pre-wrap;
    word-break: break-all;
    text-shadow: 0 0 2px #000a;
}

.banner-highlight {
    font-weight: 900;
    color: #fffbe7;
    background: #2a2d3a;
    padding: 0 4px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}