/* v6.2.11 — 全局禁用页面缩放和双击放大，仅游戏区域 */
html, body {
  touch-action: manipulation;         /* 关掉双击缩放 */
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
}
#gameCanvas,
#touchControls,
.joystick-zone,
.joystick-base,
.mobile-actions,
.combat-btn {
  touch-action: none !important;      /* 摇杆/攻击键彻底屏蔽多指手势 */
}
/* 允许滚动容器内正常滚动，但阻止双指 pinch */
.drawer-panel,
.play-panel,
.modal-body,
.profile-detail-modal,
.parent-shell,
.teacher-shell {
  touch-action: pan-y pinch-zoom-off, pan-x pinch-zoom-off, pan-y;
}
/* 抽屉内容允许上下滑动，但整体 pinch 关掉 */
.drawer-panel,
.play-panel,
.modal-body {
  touch-action: pan-y;
}
