#matrix-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.matrix-popterm {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  color: #eafff2;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-shadow: 0 0 6px #39ff88, 0 0 18px #39ff88;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(6px);
}
.matrix-popterm.is-visible {
  opacity: 0.9;
  transform: translateY(0);
}
.matrix-popterm::before {
  content: "> ";
  color: #39ff88;
}
