/* 基础重置与全局元素样式 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 锚点跳转补偿：吸顶导航栏的总高度，保证 section 顶部对齐到导航栏下沿 */
html {
  scroll-padding-top: 7.5rem;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
