.typewriter {
  font-family: monospace;
  font-size: 1.2rem;
  color: #00ff66;
  text-shadow: 0 0 6px #00ff66;
  white-space: nowrap;
  overflow: hidden;
  padding-bottom: 10px;
  border-right: 2px solid #00ff66;
  animation: cursorBlink 0.8s infinite;
}

@keyframes cursorBlink {
  0% { border-color: #00ff66; }
  50% { border-color: transparent; }
  100% { border-color: #00ff66; }
}

#matrix {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#terminal {
  background: rgba(0, 15, 0, 0.75);
  border: 1px solid #00ff66;
  padding: 10px;
  margin-top: 20px;
  max-width: 700px;
  font-family: monospace;
  color: #00ff66;
  text-shadow: 0 0 4px #00ff66;
}

#terminal-input {
  background: transparent;
  border: none;
  color: #00ff66;
  outline: none;
  width: 80%;
}

.prompt {
  color: #00ff66;
  font-weight: bold;
}

