* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "JetBrains Mono", monospace;
}

body {
  background: #050607;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #00ff88;
}

.terminal-window {
  width: 92%;
  max-width: 1100px;
  height: 80vh;
  background: #020403;
  border: 1px solid #00ff8833;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
}

/* top bar */
.terminal-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  background: #020403;
  border-bottom: 1px solid #00ff8833;
  font-size: 13px;
  color: #7affc2;
}

.terminal-bar a {
  color: #00ff88;
  text-decoration: none;
}

/* body */
.terminal-body {
  flex: 1;
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
  overflow-y: auto;
  white-space: pre-wrap;
}

/* input */
.terminal-input {
  display: flex;
  padding: 10px 16px;
  border-top: 1px solid #00ff8833;
  font-size: 14px;
}

.prompt {
  margin-right: 8px;
}

#cmd {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #00ff88;
  font-size: 14px;
  caret-color: #00ff88;
}
