/* Mobile entry spacing / nav overlap fix 20260730
   目的：
   1. 手机端开场页先不显示底部功能栏，避免挡住“进入高山集”按钮。
   2. 开场页先隐藏“八字排盘 / 合婚择吉 / 五行水晶 / 助运起名”小标签，让背景更干净。
   3. 把“高山集 + 进入高山集”整体略微上移，和屏幕底部拉开距离。
*/
@media (max-width: 900px) {
  body.mobile-entry-active {
    padding-bottom: 0 !important;
  }

  body.mobile-entry-active .mobile-bottom-nav {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(28px) !important;
  }

  body.mobile-entry-active .mobile-entry-copy {
    transform: translateY(-7.5vh) !important;
  }

  body.mobile-entry-active .mobile-entry-chips {
    display: none !important;
  }

  body.mobile-entry-active .mobile-entry-button {
    margin-top: clamp(34px, 6vh, 68px) !important;
  }
}

@media (max-width: 420px) {
  body.mobile-entry-active .mobile-entry-copy {
    transform: translateY(-8.5vh) !important;
  }
}
