/* 游戏页统一画布（与 Figma / archive 主框架一致） */
:root {
  --shell-page-max: 1220px;
  --shell-aspect-w: 1220;
  --shell-aspect-h: 650;
  --shell-page-pad-top: 18px;
  --shell-page-pad-inline: 18px;
  --shell-page-pad-bottom: 18px;
  /* 视口留白：随屏幕尺寸变化，并尊重刘海/圆角安全区 */
  --shell-viewport-pad-fluid: clamp(16px, 2.8vmin, 44px);
  --shell-viewport-pad-top: max(var(--shell-viewport-pad-fluid), env(safe-area-inset-top, 0px));
  --shell-viewport-pad-right: max(var(--shell-viewport-pad-fluid), env(safe-area-inset-right, 0px));
  --shell-viewport-pad-bottom: max(var(--shell-viewport-pad-fluid), env(safe-area-inset-bottom, 0px));
  --shell-viewport-pad-left: max(var(--shell-viewport-pad-fluid), env(safe-area-inset-left, 0px));
}
