/* Tarot Sanctuary：中文默认字体 + 最小移动端触摸修正
   原则：不改原版 flex/牌面尺寸（1:1）；只防橡皮筋与误选中。 */

html, body {
  font-family:
    "Jost",
    "Cormorant Garamond",
    "Alegreya",
    "PingFang SC",
    "Hiragino Sans GB",
    "Songti SC",
    "Noto Serif SC",
    "Microsoft YaHei",
    serif;
}

html[lang="zh-CN"] h1,
html[lang="zh-CN"] .brand-name,
html[lang="zh-CN"] .action-title,
html[lang="zh-CN"] .card-quote {
  font-family:
    "Cormorant Garamond",
    "Songti SC",
    "Noto Serif SC",
    "PingFang SC",
    serif;
}

/* 移动端：不锁 overflow/不改牌尺寸，只挡 overscroll 橡皮筋 + 牌区 touch-action */
@media (max-width: 640px) {
  html, body {
    overscroll-behavior: none;
    -webkit-text-size-adjust: 100%;
  }

  /* 拖光时不触发浏览器滚动/缩放手势（原版无此规则，是唯一允许的触控补丁） */
  .card-column,
  .card-stage,
  .card-mover,
  .card-tilt,
  .card-obj,
  .card-back {
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
  }
}
