  .ml-dots {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 360px;
    overflow: hidden;
    pointer-events: none;
    isolation: isolate;
  }

  .ml-dots::before {
    content: "";
    position: absolute;
    inset: -8%;
    z-index: 0;
    opacity: 0.3;
    background-image:
      radial-gradient(
        circle,
        rgba(255, 126, 107, 0.68) 0.8px,
        transparent 1.45px
      );
    background-size: 18px 18px;
    filter: blur(0.25px);
    animation: ml-dots-flow 9s ease-in-out infinite;
  }

  .ml-dots::after {
    content: "";
    position: absolute;
    inset: -18% -12% -12% -18%;
    z-index: -1;
    border-radius: 50%;
    filter: blur(30px);
  }

  /* Левая верхняя зона */
  .ml-dots--top-left::before {
    -webkit-mask-image:
      radial-gradient(
        ellipse at 24% 22%,
        #000 0%,
        rgba(0, 0, 0, 0.74) 28%,
        transparent 70%
      );
    mask-image:
      radial-gradient(
        ellipse at 24% 22%,
        #000 0%,
        rgba(0, 0, 0, 0.74) 28%,
        transparent 70%
      );
  }

  .ml-dots--top-left::after {
    background:
      radial-gradient(
        ellipse at 28% 24%,
        rgba(255, 110, 91, 0.21) 0%,
        rgba(191, 65, 70, 0.12) 30%,
        rgba(84, 33, 57, 0.05) 52%,
        transparent 76%
      );
  }

  /* Правая нижняя зона */
  .ml-dots--bottom-right::before {
    -webkit-mask-image:
      radial-gradient(
        ellipse at 76% 76%,
        #000 0%,
        rgba(0, 0, 0, 0.72) 30%,
        transparent 72%
      );
    mask-image:
      radial-gradient(
        ellipse at 76% 76%,
        #000 0%,
        rgba(0, 0, 0, 0.72) 30%,
        transparent 72%
      );
    animation-delay: -3.5s;
  }

  .ml-dots--bottom-right::after {
    background:
      radial-gradient(
        ellipse at 76% 76%,
        rgba(255, 110, 91, 0.18) 0%,
        rgba(143, 43, 57, 0.13) 34%,
        rgba(84, 33, 57, 0.04) 58%,
        transparent 78%
      );
  }

  @keyframes ml-dots-flow {
    0%,
    100% {
      opacity: 0.2;
      transform: scale(0.99);
      filter: blur(0.35px) brightness(0.86);
    }

    48% {
      opacity: 0.44;
      transform: scale(1.01);
      filter: blur(0.1px) brightness(1.16);
    }
  }

  @media (max-width: 640px) {
    .ml-dots {
      min-height: 250px;
    }

    .ml-dots::before {
      background-size: 19px 19px;
      opacity: 0.24;
      animation-duration: 11s;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ml-dots::before {
      animation: none;
      opacity: 0.28;
    }
  }