﻿/* 粒子画布核心样式 - 透明背景 */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent; /* 透明背景 */
    z-index: 0; /* 低于页面内容 */
    pointer-events: none; /* 不遮挡页面交互 */
}
