body {
  margin: 0;
  padding: 0;
  background: white;
  min-height: 100vh;
  overflow: hidden;
  cursor: pointer;
}

#background-circles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#cursor-circles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; /* Поверх всего */
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0;
  pointer-events: none;
}