/* ===== Terminal Retro Base ===== */

body {
  background: #000;
  color: #c8c8c8;
  font-family: "Courier New", monospace;
  margin: 0;
  padding: 40px;
}

.terminal {
  max-width: 780px;
  margin: auto;
  overflow: hidden;
}

/* Texto oculto hasta terminar la intro */
.hidden {
  display: none;
}

/* STATUS */
.status {
  color: #ffa500;
  margin-top: 10px;
}

/* TITULO */
h1 {
  color: #8cff9e;
}

/* NAV */
nav ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

nav li {
  margin: 8px 0;
}

a {
  color: #8cff9e;
  text-decoration: none;
}
a:hover {
  color: #b0ffb8;
  letter-spacing: 1px;
}

/* FOOTER */
.footer {
  margin-top: 40px;
  font-size: 0.8rem;
  color: #555;
}

/* ===== Typed Intro Text ===== */

#introText {
  font-size: 1.2rem;
  white-space: pre-wrap;
  line-height: 1.5em;
  color: #8cff9e;
}

/* Cursor typed effect */
.cursor {
  display: inline-block;
  background-color: #8cff9e;
  width: 8px;
  animation: blink 1s steps(2) infinite;
}

@keyframes blink {
  50% { background: transparent; }
}