
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: #050505;
  color: #00ff00;
  font-family: 'Fira Code', monospace;
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terminal-container {
  width: 100%;
  max-width: 850px;
  height: 550px;
  background: #000;
  border: 1px solid #00ff00;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,255,0,0.15);
  display: flex;
  flex-direction: column;
}

.terminal-header {
  padding: 12px;
  border-bottom: 1px solid #00ff00;
  display: flex;
  align-items: center;
  background: #0a0a0a;
}
.buttons { display: flex; gap: 8px; margin-right: 20px; }
.buttons span { width: 12px; height: 12px; border-radius: 50%; display: inline-block; background: #222; }
.buttons .close { background: #ff5555; }
.buttons .minimize { background: #ffb86c; }
.buttons .expand { background: #50fa7b; }
.title { font-size: 0.85rem; color: #888; }

.terminal-body {
  flex: 1;
  padding: 25px;
  overflow-y: auto;
}

pre { font-size: clamp(0.6rem, 1.2vw, 0.95rem); line-height: 1.2; margin-bottom: 20px; }
p { margin-bottom: 12px; font-size: 0.95rem; line-height: 1.6; }
.highlight { color: #fff; font-weight: bold; }
.cmd-link { color: #00ff00; text-decoration: underline; font-weight: bold; }
.cmd-link:hover { color: #fff; }

.input-line { display: flex; align-items: center; gap: 10px; margin-top: 15px; }
.prompt { color: #0087ff; font-weight: bold; }
#terminal-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.history-command { color: #50fa7b; font-weight: bold; margin-bottom: 10px; }
.response-block { margin-bottom: 20px; padding-left: 10px; border-left: 2px solid #00ff00; }
  