/* ============================================================
   Mac Usta · Terminal / log / cmd row / cheats / panel notes
   Loaded by index.html via <link>.  See styles/_index.css for order.
   ============================================================ */

   16. TERMINAL / LOG
   ============================================================ */
.panel-log {
  background: var(--graphite);
  border-color: var(--graphite);
  color: var(--paper-3);
}
.panel-log::before, .panel-log::after { background: var(--graphite); border-color: var(--brass); }
.panel-head-log { border-bottom-color: rgba(255,255,255,.1); }
.panel-head-log h2 { color: var(--paper-0); }
.panel-head-log .panel-no {
  color: var(--phosphor);
  border-color: var(--phosphor);
  background: rgba(216,162,58,.08);
}
.panel-head-log .panel-sub { color: var(--paper-3); }

.led-strip {
  display: inline-flex; gap: 6px;
  margin-left: auto;
}
.led-strip i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--phosphor);
  box-shadow: 0 0 8px var(--phosphor);
  animation: led 1.4s ease-in-out infinite;
}
.led-strip i:nth-child(2) { animation-delay: .3s; background: var(--rust); box-shadow: 0 0 8px var(--rust); }
.led-strip i:nth-child(3) { animation-delay: .6s; background: var(--moss); box-shadow: 0 0 8px var(--moss); }
@keyframes led {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}

.log {
  flex: 1;
  min-height: 360px;
  max-height: 60vh;
  overflow-y: auto;
  padding: 14px 16px;
  background:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(255,255,255,.02) 23px 24px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  font-family: var(--f-mono);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--paper-3);
}
.log-line { padding: 1px 0; }
.log-line:hover { background: rgba(255,255,255,.04); }
.cmd-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
}
.cmd-prompt {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--phosphor);
  letter-spacing: .04em;
}
.cmd-row input {
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--paper-0);
  width: 100%;
}
.cmd-row input::placeholder { color: rgba(255,255,255,.3); }

.cheats { display: grid; gap: 6px; }
.cheats li {
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px dashed rgba(14,27,48,.12);
}
.cheats li:last-child { border-bottom: 0; }
.cheats code {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--rust);
  padding: 1px 6px;
  background: rgba(183,62,46,.06);
  margin-right: 8px;
  letter-spacing: .04em;
}

.panel-notes p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
}
.panel-notes code {
  font-family: var(--f-mono);
  background: rgba(14,27,48,.06);
  padding: 1px 4px;
  border-radius: 2px;
  font-size: 11.5px;
  color: var(--ink);
}

/* ============================================================
