/* ============================================================
   鼠标/触摸粒子拖尾（暖金星尘）
   叠加在地球背景之上，不拦截任何交互
   与 3D 人物拖尾颜色呼应（暖金 #FFD68C → 透明）
   ============================================================ */

#cursor-particles-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;     /* ★ 关键：不拦截点击/拖拽/导航 */
    z-index: 5;               /* 在 GameDiv(z:0)之上，导航栏之下 */
    overflow: hidden;
}

.cursor-particle {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    /* 暖金星尘，中心更亮（带一点白热核心，呼应人物拖尾） */
    background: radial-gradient(circle,
        rgba(255,244,210,0.98) 0%,
        rgba(255,214,140,0.9) 35%,
        rgba(255,170,70,0.55) 60%,
        transparent 75%);
    /* 柔光晕，让粒子更明显、更"贵" */
    box-shadow: 0 0 6px 1px rgba(255,200,110,0.55);
    pointer-events: none;
    will-change: transform, opacity;
    /* 硬件加速 */
    transform: translateZ(0);
}
