/* Matrix Keys - Keyboard letter matrix rain effect */

.fae-matrix-key {
  position: fixed;
  font-size: 26px;
  color: #00ff00;
  pointer-events: none;
  z-index: 999999;
  animation: fae-matrix-rain 1s linear forwards;
  font-weight: bold;
  font-family: 'Courier New', monospace;
}

@keyframes fae-matrix-rain {
  0% {
    transform: translateY(-50px);
    opacity: 1;
  }
  100% {
    transform: translateY(250px);
    opacity: 0;
  }
}

