* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0d0f11;
  --text: #b0b8c4;
  --dim: #4a5568;
  --accent: #6ee7b7;
  --glow: rgba(110, 231, 183, 0.08);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  line-height: 1.7;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.terminal {
  max-width: 600px;
  width: 100%;
}

.header {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  color: var(--accent);
}

.prompt {
  font-weight: 400;
}

.blink {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.log {
  min-height: 200px;
}

.log .line {
  opacity: 0;
  margin-bottom: 1.4rem;
  font-weight: 300;
  font-style: italic;
}

.log .line.visible {
  animation: fadeIn 0.8s ease forwards;
}

.log .line .timestamp {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--dim);
  display: block;
  margin-bottom: 0.15rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.status {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
}

.dim {
  color: var(--dim);
}

@media (max-width: 480px) {
  body { font-size: 14px; padding: 1.5rem; }
}
