/* 系统字体栈，避免阻塞加载 Google Fonts（国内访问慢） */
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
}
