/* === 배경 파티클 캔버스 === */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* 뒤로 보내기 */
  pointer-events: none;
}

/* === 풀스크린 배경 영상 === */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  background: black;
}

/* === 기본 Body 배경 === */
body {
  margin: 0;
  padding: 0;
  background: transparent;
}
