
body {
  background: black;
  color: #00FF66;
  font-family: 'Courier New', monospace;
  padding: 2rem;
  overflow-x: hidden;
  margin: 0;
  height: 100vh;
  animation: flicker 2s infinite;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.9; }
}

#terminal {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 1rem;
  line-height: 1.5;
  overflow-y: scroll;
  max-height: 90vh;
}

#inputField {
  width: 100%;
  background: black;
  border: none;
  color: #00FF66;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  margin-top: 1rem;
  outline: none;
}

.download-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #00FF66;
  color: #00FF66;
  text-decoration: none;
  font-family: 'Courier New', monospace;
}
