/* Matrix-Rain-Kachel */

.kachel_matrix {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  background-color: #000500;
  background-image:
    radial-gradient(circle at 50% 42%, rgba(0, 54, 12, 0.22), transparent 72%),
    linear-gradient(180deg, #000600 0%, #000300 100%);
}

.kachel_matrix::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.kachel_matrix::after {
  z-index: 2;
  background: radial-gradient(circle at center, transparent 58%, rgba(0, 2, 0, 0.38) 100%);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.42);
}

#matrixCanvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
