/* Mobile Tron override - 让 home-showcase 主题在小屏也显示视频背景 */
@media (max-width: 1023px) {
  .home-showcase-page .hs-bg-video {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
    z-index: -3 !important;
    pointer-events: none !important;
  }
  /* 视频上的暗化遮罩，避免文字看不清 */
  body[data-public-shell-page-id="home-showcase"]::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
      radial-gradient(circle at 18% 0%, rgba(var(--hs-accent-rgb,255,42,61), 0.18), transparent 34%),
      linear-gradient(180deg, rgba(9, 1, 5, 0.55) 0%, rgba(14, 3, 7, 0.30) 50%, rgba(8, 1, 5, 0.62) 100%);
  }
}
