/* ================================================
 * 小红书 AI 加速器 · 自定义样式
 * D1 版本：极简白底 + 朱砂红主色（待蔡文姬校准）
 * Tailwind CDN 负责 90% 样式，这里只放 Tailwind 不便表达的部分
 * ================================================ */

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- 广告位（默认隐藏，通过 JS / 后端开关显示） ---- */
.ad-slot-1, .ad-slot-2, .ad-slot-3, .ad-slot-4 {
  display: none;
}
.ad-slot-1.active, .ad-slot-2.active, .ad-slot-3.active, .ad-slot-4.active {
  display: block;
}

/* ---- 按钮 / 链接微交互 ---- */
button, a { transition: all 0.15s ease; }

/* ---- 文本截断（Tailwind 3.3+ 内置 line-clamp，D1 兼容旧浏览器手动补一份） ---- */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- 移动端字号微调 ---- */
@media (max-width: 640px) {
  h1 { letter-spacing: -0.01em; }
}

/* ---- 减少动效偏好 ---- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
