/* ==========================================================================
   reset.css - 全局样式重置
   统一浏览器默认样式，清除边距、设置盒模型
   ========================================================================== */

/* 通配符重置：所有元素 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* 图像和视频最大宽度 */
img,
video,
canvas {
  display: block;
  max-width: 100%;
}

/* ★ 渲染画布：强制铺满整个视口 */
canvas {
  position: fixed;
  inset: 0;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 0;
}

/* 全局字体与背景 */
html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* 默认深空深色基底 */
  background: #000;
  color: #e0e0e0;
  font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  /* 禁用文本选择，避免误操作 */
  -webkit-user-select: none;
  user-select: none;
}
