/* Code Rain Component */
.code-rain {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  font-family: "Montserrat", monospace;
  font-size: 11px;
  color: rgba(200, 170, 255, 0.35);
  overflow: hidden;
}

.code-column {
  position: absolute;
  top: -200px;
  white-space: nowrap;
  opacity: 0.7;
  animation: codeFall linear infinite;
}

@keyframes codeFall {
  0%   { transform: translateY(-200px); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(120vh); opacity: 0; }
}
