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

body {
  background-color: #0d0d0d;
  color: #00ff41;
  font-family: 'Courier New', 'Lucida Console', monospace;
  font-size: 15px;
  line-height: 1.7;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* subtle scanline overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

.terminal {
  width: 100%;
  max-width: 680px;
  padding: 40px 32px;
}

.banner {
  color: #00ff41;
  white-space: pre;
  margin-bottom: 32px;
  font-size: 14px;
  opacity: 0.9;
}

.status {
  margin-bottom: 40px;
}

.status p {
  margin-bottom: 4px;
}

.highlight {
  color: #ffb000;
  font-weight: bold;
}

.input-row {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 255, 65, 0.15);
  padding-top: 16px;
}

.prompt {
  margin-right: 8px;
  opacity: 0.7;
}

.cursor {
  display: inline-block;
  width: 9px;
  height: 16px;
  background-color: #00ff41;
  animation: blink 1.1s step-end infinite;
  vertical-align: middle;
}

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