/* 将新站点 Shell（SiteLayout / SiteNav / SiteFooter）映射到现有类名，需配合 body.hzbgs-site */

body.hzbgs-site {
  margin: 0;
  min-height: 100svh;
  color: var(--text1);
  background: linear-gradient(180deg, var(--bg0), var(--bg1));
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: var(--leading-body);
  letter-spacing: 0.012em;
  font-feature-settings: "kern" 1, "liga" 1;
}

body.hzbgs-site a {
  color: inherit;
  text-decoration: none;
}

body.hzbgs-site h1,
body.hzbgs-site h2,
body.hzbgs-site h3,
body.hzbgs-site h4 {
  color: var(--text0);
  font-weight: 650;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}

body.hzbgs-site h5,
body.hzbgs-site h6 {
  color: var(--text0);
  font-weight: 600;
  line-height: var(--leading-snug);
  letter-spacing: -0.01em;
}

body.hzbgs-site p {
  line-height: var(--leading-body);
}

body.hzbgs-site li {
  line-height: var(--leading-body);
}

/* —— 顶栏（对应 siteNav.module.css） —— */
body.hzbgs-site .nav-container {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.78) !important;
  border-bottom: 1px solid rgba(210, 210, 215, 0.85) !important;
  width: 100%;
}

/* PC / 手机：切换桌面顶栏与移动顶栏（原先写在各页 page-*.css，未加载时会出现双导航或布局错乱） */
/* 与 base_site.html 中顶栏脚本一致：≤1024px 一律用移动顶栏，避免平板宽度仍走桌面导航导致菜单项叠在正文上 */
@media (min-width: 1025px) {
  body.hzbgs-site .mobile-header,
  body.hzbgs-site .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  body.hzbgs-site .nav-container {
    display: none !important;
  }
  body.hzbgs-site .mobile-header {
    display: flex !important;
  }
}

body.hzbgs-site .nav-wrapper {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

/* 全站顶栏：必须自带 flex + 去列表圆点，不能依赖各页 page-*.css（否则首页等页面导航会塌成竖排） */
body.hzbgs-site .main-nav {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px;
  min-height: 56px;
  width: 100%;
}

body.hzbgs-site .logo {
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--text0) !important;
  line-height: 1.15;
}

body.hzbgs-site .logo-en {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--text2);
  white-space: nowrap;
}

body.hzbgs-site .nav-menu {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 6px;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

body.hzbgs-site .nav-item {
  position: relative !important;
  list-style: none !important;
  height: auto;
  padding: 0 4px;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-shrink: 0;
}

body.hzbgs-site .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(29, 29, 31, 0.86) !important;
  font-size: 14px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease,
    box-shadow 160ms ease;
}

body.hzbgs-site .nav-link:hover {
  background: rgba(245, 245, 247, 0.85);
  border-color: rgba(210, 210, 215, 0.85);
  color: var(--text0) !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

body.hzbgs-site .dropdown-horizontal {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 1001 !important;
  display: block !important;
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(24px) saturate(170%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(170%) !important;
  border: 1px solid rgba(210, 210, 215, 0.86) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14) !important;
  padding: 14px 0 !important;
  /* 竖向下拉：变窄，跟随当前 nav-item */
  width: 320px !important;
  margin-left: 0 !important;
  right: auto !important;
  transform: translateY(-2px) scale(0.99) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 180ms ease !important;
}

/* 避免竖向下拉时的超宽子内容撑开面板 */
body.hzbgs-site .dropdown-horizontal .dropdown-content {
  width: 100%;
}

body.hzbgs-site .dropdown-content {
  max-width: none !important;
  padding: 0 14px !important;
  gap: 10px !important;
  display: flex !important;
  flex-direction: column !important;
}

body.hzbgs-site .menu-section h3 {
  font-size: 12px !important;
  color: rgba(110, 110, 115, 0.95) !important;
  margin: 6px 0 10px 0 !important;
  font-weight: 650 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
}

body.hzbgs-site .menu-section li {
  margin-bottom: 10px !important;
}

body.hzbgs-site .menu-section a {
  color: rgba(29, 29, 31, 0.95) !important;
  text-decoration: none !important;
  font-size: 15px !important;
  display: block !important;
  padding: 10px 12px !important;
  border-radius: 14px !important;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(210, 210, 215, 0.0) !important;
  background: transparent !important;
}

body.hzbgs-site .menu-section a::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.92);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.hzbgs-site .menu-section a:hover {
  background: rgba(0, 113, 227, 0.06) !important;
  border-color: rgba(0, 113, 227, 0.22) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.10) !important;
}

body.hzbgs-site .menu-section a:hover::after {
  transform: scaleX(1);
}

/* 新下拉：悬停时用透明度 + 轻微放大过渡出来 */
body.hzbgs-site .nav-item:hover .dropdown-horizontal {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

/* 覆盖模板内联的 menuSlide 动画，让下拉更“轻盈” */
@keyframes menuSlide {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.99);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* —— 手机端顶栏 + 全屏菜单（≤1024px，含平板竖屏） —— */
@media (max-width: 1024px) {
  body.hzbgs-site .mobile-header.hzbgs-mobile-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex !important;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    min-height: 0;
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
    /* 与 hzbgs-nav-override 一致：左右整栏内缩 + 圆角条 */
    padding: 16px 20px 16px 20px;
    padding-top: calc(18px + env(safe-area-inset-top, 0px));
    padding-right: calc(20px + env(safe-area-inset-right, 0px));
    padding-bottom: 16px;
    padding-left: calc(20px + env(safe-area-inset-left, 0px));
    box-sizing: border-box;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid rgba(210, 210, 215, 0.88);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  }

  body.hzbgs-site .mobile-logo {
    color: var(--text0) !important;
  }

  body.hzbgs-site .hzbgs-mobile-bar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
    padding-right: 8px;
    padding-top: 4px;
    padding-left: 2px;
  }

  body.hzbgs-site .mobile-logo {
    font-size: 14px;
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.38;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  body.hzbgs-site .mobile-logo-en {
    margin-top: 5px;
    font-size: 7.5px;
    letter-spacing: 0.05em;
    line-height: 1.4;
    opacity: 0.68;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  body.hzbgs-site .mobile-menu-btn {
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 1px;
    width: 40px;
    height: 40px;
    margin-left: 0;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 6px 18px rgba(0, 0, 0, 0.05);
    color: var(--text0);
    cursor: pointer;
    transition:
      background 180ms ease,
      border-color 180ms ease,
      transform 160ms ease,
      box-shadow 180ms ease;
  }

  body.hzbgs-site .mobile-menu-btn:active {
    transform: scale(0.96);
  }

  body.hzbgs-site .mobile-menu-btn-lines {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    box-shadow:
      0 -5px 0 currentColor,
      0 5px 0 currentColor;
    opacity: 0.88;
  }

  /* 全屏菜单：关闭 display:none；打开时用整块实色铺满视口，避免半透明/毛玻璃在部分 WebView 失效导致与正文透叠 */
  body.hzbgs-site .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none !important;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    isolation: isolate;
  }

  body.hzbgs-site .mobile-menu.active {
    display: flex !important;
    touch-action: auto;
  }

  /* 打开时不再用半透明遮罩层（易失效），整块白底由 .mobile-menu 承担；隐藏 backdrop 以免误点/叠层 */
  body.hzbgs-site .mobile-menu.active .mobile-menu-backdrop {
    display: none !important;
  }

  body.hzbgs-site .mobile-menu-backdrop {
    flex: 1 1 auto;
    min-height: 18vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
  }

  body.hzbgs-site .mobile-menu:not(.active) .mobile-menu-backdrop {
    display: none !important;
  }

  body.hzbgs-site .mobile-menu-panel {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #ffffff !important;
    background: #ffffff !important;
    color: var(--text0) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
    transition: none;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    padding-top: env(safe-area-inset-top, 0px);
  }

  body.hzbgs-site .mobile-menu.active .mobile-menu-panel {
    transform: none !important;
  }

  body.hzbgs-site .mobile-menu-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
  }

  body.hzbgs-site .mobile-menu-head-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
  }

  body.hzbgs-site .mobile-menu-head-kicker {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text2);
  }

  body.hzbgs-site .mobile-menu-head-title {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text0);
  }

  body.hzbgs-site .mobile-menu-close {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.03);
    color: var(--text0);
    cursor: pointer;
    transition:
      background 160ms ease,
      border-color 160ms ease,
      transform 160ms ease;
  }

  body.hzbgs-site .mobile-menu-close:active {
    transform: scale(0.95);
  }

  body.hzbgs-site .mobile-menu-close-icon {
    position: relative;
    width: 16px;
    height: 16px;
  }

  body.hzbgs-site .mobile-menu-close-icon::before,
  body.hzbgs-site .mobile-menu-close-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    opacity: 0.75;
  }

  body.hzbgs-site .mobile-menu-close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body.hzbgs-site .mobile-menu-close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  body.hzbgs-site .mobile-menu-scroll {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding: 8px 16px 16px;
    background: #ffffff;
  }

  body.hzbgs-site .mobile-menu-footer {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: stretch;
    gap: 10px;
    padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #f5f5f7;
  }

  body.hzbgs-site .mobile-menu-footer-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0071e3 !important;
    text-decoration: none !important;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 113, 227, 0.22);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  }

  body.hzbgs-site .mobile-menu-footer-link:active {
    background: rgba(0, 113, 227, 0.08);
  }

  body.hzbgs-site .mobile-menu-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  body.hzbgs-site .mobile-menu-list > li {
    border: none !important;
    margin: 0;
    padding: 0;
  }

  body.hzbgs-site .mobile-menu-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px !important;
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgba(29, 29, 31, 0.94) !important;
    border-radius: 14px !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    transition:
      background 160ms ease,
      border-color 160ms ease,
      transform 160ms ease;
  }

  body.hzbgs-site .mobile-menu-link:active {
    background: rgba(0, 113, 227, 0.08) !important;
    transform: scale(0.99);
  }

  body.hzbgs-site .mobile-menu-dropdown {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 2px 0 10px 10px !important;
    padding: 6px 0 4px 14px !important;
    border-left: 1px solid rgba(0, 113, 227, 0.22) !important;
    background: transparent !important;
    border-radius: 0 !important;
  }

  body.hzbgs-site .mobile-menu-dropdown a {
    display: block;
    padding: 10px 12px !important;
    margin: 0 !important;
    font-size: 13.5px !important;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: rgba(60, 60, 67, 0.88) !important;
    border-radius: 12px !important;
    background: rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    transition:
      background 160ms ease,
      border-color 160ms ease,
      color 160ms ease;
  }

  body.hzbgs-site .mobile-menu-dropdown a:active {
    background: rgba(0, 113, 227, 0.09) !important;
    border-color: rgba(0, 113, 227, 0.12) !important;
    color: rgba(29, 29, 31, 0.95) !important;
  }

  /* 勿用 touch-action:none，否则微信/WebView 内菜单区域无法纵向滚动 */
  body.hzbgs-site.mobile-menu-open {
    overflow: hidden;
  }
}

/* —— 页脚（对应 siteFooter 浅色玻璃条） —— */
body.hzbgs-site footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text2);
  padding: 26px 20px;
  text-align: center;
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  left: auto !important;
  right: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

body.hzbgs-site footer a {
  color: var(--accent);
  margin: 0 10px;
  text-decoration: none;
}

body.hzbgs-site footer a:hover {
  text-decoration: underline;
}

body.hzbgs-site footer p {
  color: var(--text2);
}

/* 锚点跳转避免被顶部固定导航遮挡 */
body.hzbgs-site #contact {
  scroll-margin-top: 90px;
}

/* 更像新样式的底部导航（页脚内容更丰富） */
body.hzbgs-site .hzbgs-footer {
  width: 100%;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text2);
}

body.hzbgs-site .hzbgs-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 26px 20px;
}

body.hzbgs-site .hzbgs-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

body.hzbgs-site .hzbgs-footer-brand-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text0);
  letter-spacing: -0.01em;
}

body.hzbgs-site .hzbgs-footer-brand-sub {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

body.hzbgs-site .hzbgs-footer-kv {
  display: grid;
  gap: 10px;
}

body.hzbgs-site .hzbgs-footer-kv-row {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

body.hzbgs-site .hzbgs-footer-kv-label {
  color: rgba(29, 29, 31, 0.78);
  margin-right: 8px;
}

body.hzbgs-site .hzbgs-footer-links {
  display: grid;
  gap: 10px;
}

body.hzbgs-site .hzbgs-footer-links a {
  font-size: 14px;
  color: var(--text1);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body.hzbgs-site .hzbgs-footer-links a:hover {
  background: rgba(0, 113, 227, 0.08);
  border-color: rgba(0, 113, 227, 0.16);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

body.hzbgs-site .hzbgs-footer-bottom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  font-size: 13px;
  color: var(--text2);
}

body.hzbgs-site .hzbgs-footer-bottom::after {
  content: none !important;
  display: none !important;
}

body.hzbgs-site .hzbgs-footer-bottom span + span {
  display: none !important;
}

body.hzbgs-site .hzbgs-footer-sep {
  opacity: 0.6;
}

@media (max-width: 980px) {
  body.hzbgs-site .hzbgs-footer-top {
    grid-template-columns: 1fr;
  }
}

/* —— 首页/内容区卡片圆角与阴影统一 —— */
body.hzbgs-site .feature-item,
body.hzbgs-site .support-item,
body.hzbgs-site .project-item,
body.hzbgs-site .card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

body.hzbgs-site .slide-content .btn,
body.hzbgs-site .btn-primary,
body.hzbgs-site button[type="submit"]:not(.theme-toggle):not(.mobile-menu-btn):not(.mobile-menu-close) {
  border-radius: 999px;
}

/* —— 后台简易页与表单 —— */
body.hzbgs-site .login-container,
body.hzbgs-site .section {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

body.hzbgs-site .nav-header h1,
body.hzbgs-site .section h2 {
  color: var(--text0);
}

body.hzbgs-site .section h2 {
  border-bottom-color: var(--accent);
}

/* —— 顶栏右侧：登录 / 小游戏图标 —— */
body.hzbgs-site .nav-login {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 18px;
}

body.hzbgs-site .nav-login a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
}

/* —— 页脚：删除“浅色高级玻璃风”，改为简洁纯色/边框 —— */
body.hzbgs-site footer.hzbgs-site-footer {
  background: var(--bg1) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.hzbgs-site footer.hzbgs-site-footer .hzbgs-site-footer-brandBlock,
body.hzbgs-site footer.hzbgs-site-footer .hzbgs-site-footer-kv,
body.hzbgs-site footer.hzbgs-site-footer .hzbgs-site-footer-links {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

body.hzbgs-site footer.hzbgs-site-footer .hzbgs-site-footer-links a {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

