* {
  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);
}

.btn-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  justify-content: center;
}

.landing-btn {
  display: inline-block;
  text-align: center;
  padding: 0.5rem 2rem;
  border: 1px solid rgba(110, 231, 183, 0.3);
  border-radius: 6px;
  color: var(--accent);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
}
.landing-btn:hover { background: rgba(110, 231, 183, 0.08); text-decoration: none; }

@media (max-width: 500px) {
  body { font-size: 13px; padding: 1.2rem; align-items: flex-start; padding-top: 2rem; }
  .header { margin-bottom: 1.5rem; font-size: 1rem; }
  .log { min-height: unset; }
  .log .line { margin-bottom: 1rem; }
  .status { justify-content: center; }
  .btn-row { flex-direction: column; }
  .landing-btn { display: block; width: 100%; padding: 0.8rem; }
}
