:root {
    --bg: #05080c;
    --term-bg: #0b1017;
    --green: #00ff66;
    --red: #ff3344;
    --yellow: #ffcc00;
    --font: 'Fira Code', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--green); font-family: var(--font); height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }

.hud-bar { position: fixed; top: 0; width: 100%; padding: 1rem 2rem; display: flex; justify-content: space-between; font-size: 0.8rem; background: rgba(11,16,23,0.8); border-bottom: 1px solid rgba(0,255,102,0.2); }

.terminal-window { width: 85%; max-width: 900px; height: 500px; background: var(--term-bg); border: 1px solid rgba(0,255,102,0.3); border-radius: 8px; box-shadow: 0 0 30px rgba(0,255,102,0.1); overflow: hidden; display: flex; flex-direction: column; }
.terminal-header { background: #121924; padding: 10px 15px; display: flex; align-items: center; position: relative; }
.dots span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.red { background: var(--red); } .yellow { background: var(--yellow); } .green { background: var(--green); }
.title { position: absolute; left: 50%; transform: translateX(-50%); font-size: 0.85rem; color: #64748b; }

.terminal-body { padding: 20px; flex: 1; overflow-y: auto; font-size: 0.95rem; line-height: 1.6; }
.cmd-highlight { color: var(--yellow); }
.input-line { display: flex; align-items: center; margin-top: 10px; }
.prompt { color: var(--red); margin-right: 10px; font-weight: 600; }
#termInput { background: transparent; border: none; color: var(--green); font-family: var(--font); font-size: 0.95rem; flex: 1; outline: none; }