body {
  margin: 0;
  background: #000;
  color: #0f0;
  font-family: 'IBM Plex Mono', monospace;
}

.terminal {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  background: #111;
  height: 100vh;
}

input {
  background: transparent;
  border: none;
  color: #0f0;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  width: 100%;
}

pre {
  white-space: pre-wrap;
  margin-top: 1rem;
  line-height: 1.4;
}

.console-wrapper {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

.console {
  flex: 1;
  height: 200px;
  background: #000;
  padding: 0.5rem;
  border: 1px solid #0f0;
  color: #0f0;
  overflow-y: auto;
}

#hud-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  color: #0f0;
  font-family: 'IBM Plex Mono', monospace;
  padding: 4px 10px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  z-index: 9999;
  border-bottom: 1px solid #0f0;
  box-shadow: 0 1px 2px #0f02;
}

#hud-bar span {
  flex: 0 0 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alert {
  animation: flash 0.8s steps(1) infinite;
  color: #f00;
}

@keyframes flash {
  0% { opacity: 1; }
  50% { opacity: 0.1; }
  100% { opacity: 1; }
}

#loader {
  position: fixed;
  bottom: 10px;
  right: 10px;
  color: #0f0;
  font-family: 'IBM Plex Mono', monospace;
}
