.backblur {
  overflow: hidden; /* важно */
  transform: none !important;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.backblur::before {
  content: "";
  position: absolute;
  inset: 0;

  /* делаем слой полупрозрачным */
  background: rgba(255,255,255,0.05);

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 100%
  );

  pointer-events: none;
}

.points-text {
    font-family: JetBrains Mono, monospace;
    font-size: 14px;
    color: #111;
    letter-spacing: 0.5px;
    opacity: 0.9;
    white-space: nowrap;
}