.site-wrapper {
  position: relative;
  overflow-x: hidden;
  background-color: #ffffff; /* базовый фон */
  min-height: 100vh;
}

.particles-background {
  position: fixed; /* Для заливки экрана без смещения */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  pointer-events: none; /* Чтобы клики проходили */
  background: transparent;
}

#particles-js {
  position: fixed;  /* фиксированное позиционирование относительно окна браузера */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;      /* позади основного контента */
  pointer-events: none; /* клики проходят сквозь */
  background: transparent;
}




/* Поверх */
.main, .home-section, .about-section {
  position: relative;
  z-index: 1;
}
