/* static/css/particle-animation.css */
#js-particle-animation {
  position: absolute;
  width: 100%;
  height: 100vh; /* 覆盖整个视口，或调整为固定高度（如 300px） */
  top: 0;
  left: 0;
  z-index: -1; /* 作为背景层 */
  pointer-events: none; /* 允许穿透交互（若不需要鼠标控制可删除） */
}

/* 标题样式（确保在动画上方） */
.title-seo {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding-top: 20px; /* 根据实际需求调整 */
}
