/* ============================================================
   GRAILA Visual Engine | effect_control_mouse Stylesheet
   ----------------------------------------------------------------
   鼠标墨痕跟随 - 朱红毛笔殘影
   主要样式由 JS 内联以读取配置;此处仅做兜底
   ============================================================ */

#gveInkTrail {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  overflow: visible !important;
}

@media (prefers-reduced-motion: reduce) {
  #gveInkTrail { display: none !important; }
}

/* 触屏与窄屏由 JS 主动跳过启动,这里再兜一道 */
@media (pointer: coarse) {
  #gveInkTrail { display: none !important; }
}
