/* ===== Modern Reset CSS ===== */
/* 融合了 modern-css-reset 和 sanitize.css 的最佳实践 */

/* 1. 使用更直观的盒模型 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. 重置默认边距和填充 */
* {
  margin: 0;
  padding: 0;
}

/* 3. 允许百分比高度 */
html, body {
  height: 100%;
}

/* 4. 改进文本渲染 */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* 5. 媒体元素默认样式 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 6. 移除按钮和输入框的默认样式 */
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* 7. 避免文本溢出 */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. 创建根堆叠上下文 */
#app, #root {
  isolation: isolate;
}

/* 9. 移除列表样式 */
ul, ol {
  list-style: none;
}

/* 10. 链接样式重置 */
a {
  text-decoration: none;
  color: inherit;
}

/* 11. 按钮交互改进 */
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* 12. 表单元素重置 */
input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 13. 移除输入框的类型箭头 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* 14. 平滑滚动（可选） */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* 15. 焦点样式改进 */
:focus {
  outline: 2px solid #007acc;
  outline-offset: 2px;
}

/* 16. 减少运动（可访问性） */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

