.terminal-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 33%;
  border-top: 1px solid rgba(245, 158, 11, 0.25);
  background: #050608;
  display: flex;
  flex-direction: column;
  z-index: 30;
  animation: slideUp 0.25s ease-out;
}

.terminal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem 1rem;
}

.terminal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  color: var(--emerald);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
}

.term-input {
  border: 0;
  outline: none;
  background: transparent;
  color: var(--emerald);
  width: 100%;
}

@keyframes slideUp {
  from { transform: translateY(18px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
