/* ============================================================
   给范晓语 — style.css（Fable 版 · 系统原生字体 · 零外部依赖）
   ============================================================ */

*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #080812;
  /* 系统原生字体栈：极细、干净，零加载、离线可用，跨平台优雅中文 */
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑",
               system-ui, -apple-system, "Segoe UI", sans-serif;
  /* 移动端禁用双击缩放和长按选择 */
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* ============================================================
   Canvas
   ============================================================ */
#canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
}

/* ============================================================
   文字层（七句话）—— 内容、定位、显隐由 JS 控制
   ============================================================ */
#intro-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.intro-line {
  font-weight: 300;                 /* 极细 */
  color: rgba(238, 240, 248, 0.92);
  letter-spacing: 0.22em;
  opacity: 0;                       /* JS 通过 opacity 淡入淡出 */
  text-shadow: none;                /* Fable：不发光 */
  white-space: nowrap;
}

#intro-line2 { display: none; }     /* 第二行保留占位，当前不使用 */

/* ============================================================
   声音开关
   ============================================================ */
#music-btn {
  position: fixed;
  bottom: 46px; right: 22px;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.32);
  font-size: 17px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 30;
  transition: color 0.4s, border-color 0.4s, transform 0.4s;
  padding: 0; line-height: 1;
}
#music-btn:hover {
  color: rgba(200, 215, 255, 0.85);
  border-color: rgba(200, 215, 255, 0.42);
  transform: scale(1.1);
}

/* ============================================================
   隐藏签名
   ============================================================ */
#page-footer {
  position: fixed;
  bottom: 14px; right: 20px;
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.14);
  letter-spacing: 0.05em;
  pointer-events: all;
  cursor: default;
  z-index: 5;
  transition: color 0.4s ease;
}
#page-footer:hover {
  color: rgba(200, 215, 255, 0.5);
}

/* ============================================================
   移动端适配
   ============================================================ */
@media (max-width: 480px) {
  .intro-line  { white-space: normal; padding: 0 22px; max-width: 86vw; }
  #music-btn   { bottom: 40px; right: 16px; }
  #page-footer { font-size: 9px; bottom: 10px; right: 14px; }
}
