@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500&display=swap");

:root {
  --bg: #0a0e14;
  --terminal-bg: #0d1117;
  --text: #d1d5db;
  --accent: #f59e0b;
  --border: #2d333b;
  --link: #60a5fa;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.terminal-window {
  background: var(--terminal-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  background: #020617;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.title {
  margin-left: 10px;
  font-size: 0.75rem;
  opacity: 0.5;
}

.terminal-body {
  padding: 2rem;
}

.terminal-output {
  white-space: pre-wrap;
  line-height: 1.8;
  font-size: 0.95rem;
}

.line {
  margin-bottom: 0.5rem;
}

.terminal-input-line {
  display: flex;
  align-items: center;
  margin-top: 1.2rem;
}

.prompt {
  color: var(--accent);
  margin-right: 0.6rem;
  font-weight: 500;
}

input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  caret-color: var(--accent);
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.terminal-window:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

@media (max-width: 600px) {
  .terminal-body {
    padding: 1.2rem;
  }
}
