/* mcpi-pointer.css —— 覆盖所有交互元素 */
* {
    cursor: url('cursor.cur'), pointer !important;
}

/* 可选：额外确保链接、按钮等也被覆盖（但上面已全局覆盖） */
a, button, .btn, input[type="submit"], input[type="button"],
[role="button"], .chip, .tag, .nav-links a {
    cursor: url('cursor.cur'), pointer !important;
}