/* Термінал-емулятор */
.term{background:#0B0E14;border:1px solid var(--border);border-radius:11px;overflow:hidden;margin:16px 0;box-shadow:0 0 22px rgba(0,240,255,.08)}
.term-bar{display:flex;align-items:center;gap:7px;padding:8px 12px;background:#12151E;border-bottom:1px solid var(--border-dim)}
.term-bar .dot{width:11px;height:11px;border-radius:99px;display:inline-block}
.term-bar .dot.r{background:#FF5F57} .term-bar .dot.y{background:#FEBC2E} .term-bar .dot.g{background:#28C840}
.term-title{font-family:var(--mono);font-size:12px;color:var(--dim);margin-left:6px}
.term-replay{margin-left:auto;background:none;border:1px solid var(--border);color:var(--cyan);border-radius:6px;padding:2px 9px;cursor:pointer;font-size:12px}
.term-replay:hover{box-shadow:var(--glow-cyan)}
.term-body{font-family:var(--mono);font-size:13.5px;line-height:1.55;padding:14px 16px;max-height:340px;overflow:auto;color:var(--text)}
.term-prompt{color:var(--green)} .term-cmd{color:var(--text)}
.term-out{color:var(--dim);white-space:pre-wrap}
.term-note{color:var(--magenta);font-style:italic;margin:2px 0 8px}
.term-line{margin-top:6px}
.term-caret{display:inline-block;width:8px;height:1.05em;background:var(--cyan);vertical-align:text-bottom;margin-left:1px;animation:tcaret 1s steps(1) infinite}
@keyframes tcaret{50%{opacity:0}}
@media (prefers-reduced-motion:reduce){.term-caret{display:none}}
