@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
  margin: 0;
  background: black;
  color: #00ffea;
  font-family: 'Share Tech Mono', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  user-select: none;
}

.terminal-container {
  background: rgba(0,0,0,0.9);
  border: 2px solid #00ffea;
  width: 80vw;
  max-width: 800px;
  height: 60vh;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 0 10px #00ffea;
  position: relative;
}

.terminal-output {
  flex-grow: 1;
  overflow-y: auto;
  white-space: pre-wrap;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  padding-right: 0.5rem;
}

.input-line {
  display: flex;
  align-items: center;
}

.prompt {
  margin-right: 0.5rem;
  user-select: none;
}

#cmdInput {
  background: transparent;
  border: none;
  outline: none;
  color: #00ffea;
  font-family: inherit;
  font-size: 1rem;
  flex-grow: 1;
  caret-color: #ff00cc;
}

#cmdInput::placeholder {
  color: #005044;
}

/* System cursor animation */
@keyframes system-caret {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

#cmdInput {
  animation: system-caret 1s step-start infinite;
}
