body {
  background-color: #000;
  color: #00fff0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

/* Terminal window */
#terminal {
  width: 80%;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #00fff0;
  border-radius: 10px;
  box-shadow: 0 0 20px #00fff0;
  padding: 1rem;
  height: 70vh;
  overflow-y: auto;
  position: relative;
  text-shadow: 0 0 8px #00fff0;
}

/* Blinking cursor */
.cursor {
  display: inline-block;
  width: 10px;
  height: 1rem;
  background-color: #00fff0;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.1%, 100% { opacity: 0; }
}

/* Subtle CRT scanlines */
body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 255, 255, 0.05) 0,
    rgba(0, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 10;
}
