/* 强制使用亮色模式 */
:root {
  color-scheme: light only;
}

/* 隐藏深色模式切换按钮 */
.theme-toggle {
  display: none !important;
}

/* 确保始终使用亮色主题 */
html[data-theme="dark"] {
  display: none;
}

/* 防止主题切换 */
html {
  filter: none !important;
  -webkit-filter: none !important;
}