
/* 🌙 深色模式 */
@media (prefers-color-scheme: dark) {
  /* 全局背景 + 字体 */
body {
  background: #121212 !important;
  color: #ffffff !important;
}

/* 所有按钮统一 */
button, .button, a.button {
  background-color: #1f1f1f !important;
  color: #ffffff !important;
  border: 1px solid #444 !important;
}

button:hover, .button:hover {
  background-color: #333 !important;
}

/* 输入框统一 */
input, textarea, select {
  background-color: #1e1e1e !important;
  color: #fff !important;
  border: 1px solid #444 !important;
}

/* 所有 div 背景强制深色 */
div, section, article, header, footer, .box, .grid, .game-card {
  background-color: #1c1c1c !important;
  color: #f0f0f0 !important;
  border-color: #333 !important;
}

/* 链接颜色调整 */
a {
  color: #81cfff !important;
}

/* 错误信息等 */
#err, .error {
  color: #ff6f61 !important;
}

/* 禁用元素颜色 */
.disabled, [disabled] {
  background-color: #444 !important;
  color: #aaa !important;
}
/* 强制所有文字为白色 */
*, *::before, *::after {
  color: #ffffff !important;
}
}
