/* 隐藏用户菜单里的「帮助」入口 */
a[href$="/help"] { display: none !important; }

/* 隐藏设置→关于里的赞助三卡和反馈三卡 */
div:has(> a[href*="ko-fi.com"]),
div:has(> a[href*="/issues/new"]) { display: none !important; }

/* 隐藏用户菜单底部的 Discord 图标 */
a[href*="discord.gg"] { display: none !important; }

/* 公开分享页底部追加署名 */
div:has(> a[href="https://github.com/liketrek/TREK"])::after {
  content: " · Enhancement by Zhou Xingrui";
}


/* 隐藏赞助弹窗（含遮罩层） */
body > div:has(a[href*="buymeacoffee.com"]):has(a[href*="ko-fi.com"]) {
  display: none !important;
}
