/* * 字体方案：100%开源可商用字体
 * * 使用的字体及其许可证：
 * 1. Noto Serif SC - Google开源字体，SIL Open Font License 1.1
 * 2. Noto Sans SC - Google开源字体，SIL Open Font License 1.1  
 * 3. Inter - 开源字体，SIL Open Font License 1.1
 * 4. 系统字体 - 各操作系统自带字体，无版权问题
 */

/* 导入Google Fonts作为主要字体源 - 确保跨平台兼容性 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@300&family=Noto+Sans+SC:wght@400&family=Inter:wght@400&display=swap');

:root {
  /* 基础字体堆栈 - 统一为所有平台提供一致的备选字体顺序 */
  --font-serif-title: 'Noto Serif SC', 'PingFang SC', 'Songti SC', 'STSong', 'Hiragino Sans GB', 'Hiragino Mincho ProN', serif;
  --font-sans-body: 'Noto Sans SC', 'PingFang SC', 'Heiti SC', 'Hiragino Sans GB', 'Microsoft YaHei', '-apple-system', 'BlinkMacSystemFont', sans-serif;
  --font-en-num: 'Inter', 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', Arial, '-apple-system', 'BlinkMacSystemFont', sans-serif;
}

/* 删除了原有的 @supports 和 @media 块，因为它们会造成不必要的平台差异性，统一由 :root 管理 */

/* 高分辨率屏幕字体渲染优化 */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  body,
  .font-sans-body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}