/**
 * 首屏极小编排：在 styles.css 与外链字体加载前即呈现深色背景，
 * 避免 Google Fonts 阻塞渲染时出现约 1s 白屏。
 */
html {
  background-color: #030815;
  cursor: default;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #f3f6ff;
  background-color: #07111f;
  background-image: linear-gradient(135deg, #030815 0%, #08101f 45%, #07111f 100%);
  font-family: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  cursor: default;
}
