.website-terminal,
.website-terminal * {
  box-sizing: border-box;
}

.website-terminal {
  --wt-bg: rgba(6, 8, 10, 0.95);
  --wt-border: rgba(255, 255, 255, 0.12);
  --wt-panel: rgba(255, 255, 255, 0.055);
  --wt-text: #f5f7fa;
  --wt-muted: #aeb7b2;
  --wt-accent: #8fe6bf;
  --wt-prompt: #f6c177;
  color: var(--wt-text);
  font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
  font-size: 0.9rem;
}

.website-terminal .wt-window {
  min-height: 320px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 0;
  border-radius: 8px;
  background: var(--wt-bg);
  box-shadow:
    0 0 0 1px var(--wt-border),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.website-terminal .wt-header,
.website-terminal .wt-input-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  background: var(--wt-panel);
}

.website-terminal .wt-input-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
}

.website-terminal .wt-dots {
  display: flex;
  gap: 7px;
  margin-right: auto;
}

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

.website-terminal .wt-dot-red {
  background: #ef6f6c;
}

.website-terminal .wt-dot-yellow {
  background: #f6c177;
}

.website-terminal .wt-dot-green {
  background: #5dd39e;
}

.website-terminal .wt-title {
  color: var(--wt-muted);
  font-size: 0.78rem;
}

.website-terminal .wt-body {
  min-height: 220px;
  max-height: 360px;
  overflow-y: auto;
  padding: 14px;
  scrollbar-color: rgba(143, 230, 191, 0.42) transparent;
}

.website-terminal .wt-output {
  margin-bottom: 8px;
  color: var(--wt-muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.website-terminal .wt-output[data-type="system"] {
  color: var(--wt-accent);
}

.website-terminal .wt-output[data-type="input"] {
  color: var(--wt-text);
}

.website-terminal .wt-line {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
}

.website-terminal .wt-prompt {
  color: var(--wt-prompt);
  font-weight: 700;
}

.website-terminal .wt-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--wt-text);
  font: inherit;
}

.website-terminal .wt-input:focus-visible {
  border-radius: 4px;
  box-shadow: 0 0 0 3px rgba(143, 230, 191, 0.18);
}

.website-terminal .wt-input::placeholder {
  color: rgba(203, 213, 225, 0.52);
}
