/**
 * 禁用浏览器自动深色模式
 * 确保只有用户手动切换主题时才应用深色样式
 */

/* 全局强制浅色模式（默认） */
:root {
  color-scheme: light !important;
}

/* 浅色模式下覆盖所有 prefers-color-scheme: dark 规则 */
html:not([data-theme="dark"]) {
  color-scheme: light !important;
}

/* 浅色模式下强制融资卡片为浅色 */
html:not([data-theme="dark"]) .funding-item,
html:not([data-theme="dark"]) .funding-card,
html:not([data-theme="dark"]) .card-front,
html:not([data-theme="dark"]) .card-back {
  background: white !important;
  color: #2d3436 !important;
}

/* 浅色模式下强制侧边栏为浅色 */
html:not([data-theme="dark"]) .sidebar {
  background: linear-gradient(135deg, #ffe0b2, #fff3d6) !important;
}

/* 浅色模式下恢复米色背景 */
html:not([data-theme="dark"]) body {
  background: linear-gradient(135deg, #fff8e1, #ffe0b2) !important;
  color: #2d3436 !important;
  min-height: 100vh !important;
}

/* 移动端浅色模式强制米色背景 */
@media (max-width: 768px) {
  html:not([data-theme="dark"]) body {
    background: linear-gradient(135deg, #fff8e1, #ffe0b2) !important;
    color: #2d3436 !important;
    min-height: 100vh !important;
  }

  html:not([data-theme="dark"]) {
    background: linear-gradient(135deg, #fff8e1, #ffe0b2) !important;
  }
}

/* 深色模式设置 */
html[data-theme="dark"] {
  color-scheme: dark !important;
}
