:root {
  --deep-navy: #0d1b2a;
  --steel-blue: #1b263b;
  --glory-gold: #f2a900;
  --arena-red: #e63946;
  --tech-blue: #38bdf8;
  --snow-white: #f5f5f5;
  --neutral-gray: #9ca3af;
  --divider-mist: #2c3e50;
  --font-headline: "Noto Serif SC", "Source Han Serif SC", serif;
  --font-body: "Noto Sans SC", "Source Han Sans SC", sans-serif;
  --font-h1: clamp(2.5rem, 6vw, 4.5rem);
  --font-h2: clamp(2rem, 4vw, 3rem);
  --font-h3: clamp(1.5rem, 2.5vw, 2rem);
  --font-body-size: clamp(1rem, 1.5vw, 1.125rem);
  --font-small: 0.875rem;
  --container-max: 1200px;
  --header-height: 72px;
  --transition-base: 300ms ease-out;
  --z-header: 1000;
  --z-modal: 2000;
  --z-top: 1500;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--deep-navy);
  color: var(--snow-white);
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
[hidden] {
  display: none !important;
}
button, input, textarea, select {
  font: inherit;
}
:focus-visible {
  outline: 3px solid var(--glory-gold);
  outline-offset: 2px;
  border-radius: 4px;
}
::selection {
  background: rgba(242, 169, 0, 0.3);
  color: var(--snow-white);
}
img, svg {
  display: block;
  max-width: 100%;
}
a {
  color: var(--tech-blue);
}
main {
  padding-top: var(--header-height);
  min-height: 70vh;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 3000;
  padding: 12px 24px;
  background: var(--glory-gold);
  color: var(--deep-navy);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0 0 10px 0;
  transition: left 150ms ease-out;
}
.skip-link:focus {
  left: 0;
  outline: none;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: calc(var(--z-header) + 100);
  background: linear-gradient(90deg, var(--glory-gold) 0%, var(--arena-red) 100%);
  box-shadow: 0 0 12px rgba(242, 169, 0, 0.5);
  pointer-events: none;
  transition: width 80ms linear;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: rgba(13, 27, 42, 0.82);
  border-bottom: 1px solid rgba(44, 62, 80, 0.3);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 300ms ease-out, border-color 300ms ease-out, backdrop-filter 300ms ease-out;
}
.site-header.is-scrolled {
  background: rgba(13, 27, 42, 0.92);
  border-bottom-color: rgba(44, 62, 80, 0.6);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--glory-gold) 0%, #ffd166 100%);
  color: var(--deep-navy);
  font-weight: 900;
  font-size: 0.9rem;
  border-radius: 6px 6px 6px 0;
  transform: skewX(-6deg);
  letter-spacing: -1px;
  box-shadow: 0 2px 12px rgba(242, 169, 0, 0.35);
  transition: transform 300ms ease-out;
}
.brand:hover .brand-mark {
  transform: skewX(-6deg) scale(1.05);
}
.brand-text {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--snow-white);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.brand-divider {
  color: var(--glory-gold);
  margin: 0 2px;
}
.main-nav {
  flex: 1;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav-item {
  margin: 0;
}
.nav-link {
  display: block;
  padding: 10px 16px;
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  border-radius: 0 0 4px 4px;
  transition: color 300ms ease-out, border-color 300ms ease-out, background-color 300ms ease-out;
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -2px;
  height: 2px;
  background: var(--glory-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease-out;
}
.nav-link:hover {
  color: var(--glory-gold);
  background: rgba(242, 169, 0, 0.06);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link[aria-current="page"] {
  color: var(--glory-gold);
  font-weight: 700;
}
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.announce-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(242, 169, 0, 0.4);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--glory-gold);
  background: rgba(242, 169, 0, 0.08);
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.announce-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--arena-red);
  animation: announce-pulse 2s ease-in-out infinite;
}
@keyframes announce-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--neutral-gray);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 300ms ease-out, background-color 300ms ease-out;
}
.lang-btn:hover {
  color: var(--snow-white);
  background: rgba(255, 255, 255, 0.04);
}
.lang-btn.is-active {
  color: var(--glory-gold);
  font-weight: 700;
  background: rgba(242, 169, 0, 0.1);
}
.lang-divider {
  color: var(--divider-mist);
  font-size: 0.75rem;
}
.search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--snow-white);
  cursor: pointer;
  transition: color 300ms ease-out, border-color 300ms ease-out, background-color 300ms ease-out;
}
.search-btn:hover {
  color: var(--tech-blue);
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.06);
}
.search-icon {
  width: 20px;
  height: 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px 8px 8px 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 300ms ease-out, color 300ms ease-out, border-color 300ms ease-out, transform 300ms ease-out, box-shadow 300ms ease-out;
}
.btn-primary {
  background: var(--glory-gold);
  color: var(--deep-navy);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--arena-red);
  color: var(--snow-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--tech-blue);
  border-color: rgba(56, 189, 248, 0.5);
}
.btn-outline:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: var(--tech-blue);
}
.btn-subscribe {
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--glory-gold), #e8a000);
  color: var(--deep-navy);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px 8px 8px 0;
  border: 1px solid transparent;
  transition: transform 300ms ease-out, box-shadow 300ms ease-out, background 300ms ease-out, color 300ms ease-out;
}
.btn-subscribe:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--arena-red), #d62839);
  color: var(--snow-white);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.25);
}
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--divider-mist);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 300ms ease-out;
}
.mobile-nav-toggle:hover {
  border-color: rgba(242, 169, 0, 0.5);
}
.toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--snow-white);
  border-radius: 2px;
  transition: transform 300ms ease-out, opacity 300ms ease-out, background-color 300ms ease-out;
}
.mobile-nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--glory-gold);
}
.mobile-nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--glory-gold);
}
.search-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(27, 38, 59, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44, 62, 80, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.search-panel-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 24px;
}
.search-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(13, 27, 42, 0.8);
  border: 1px solid var(--divider-mist);
  border-radius: 8px;
  color: var(--snow-white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 300ms ease-out, box-shadow 300ms ease-out;
}
.search-input:focus {
  border-color: var(--tech-blue);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}
.search-input::placeholder {
  color: var(--neutral-gray);
}
.search-results {
  list-style: none;
  margin-top: 8px;
}
.search-results-item {
  display: block;
  padding: 12px 16px;
  color: var(--snow-white);
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 0.9375rem;
  transition: background 300ms ease-out, border-color 300ms ease-out, color 300ms ease-out;
}
.search-results-item:hover {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.2);
  color: var(--tech-blue);
}
.search-empty {
  padding: 12px 16px;
  color: var(--neutral-gray);
  font-size: 0.875rem;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative;
  width: min(420px, calc(100vw - 48px));
  background: var(--steel-blue);
  border: 1px solid var(--divider-mist);
  border-radius: 16px 16px 16px 0;
  padding: 40px 36px 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  text-align: center;
  animation: modal-in 300ms ease-out;
}
.modal-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--glory-gold), var(--arena-red));
  border-radius: 16px 16px 0 0;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--neutral-gray);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 300ms, background-color 300ms, border-color 300ms;
}
.modal-close:hover {
  color: var(--snow-white);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--divider-mist);
}
.modal-title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--glory-gold);
  margin-bottom: 8px;
}
.modal-text {
  color: var(--snow-white);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.modal-tip {
  color: var(--neutral-gray);
  font-size: 0.832rem;
  margin-bottom: 8px;
}
.modal-email {
  display: inline-block;
  color: var(--tech-blue);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  margin-bottom: 20px;
  border-bottom: 1px solid transparent;
  transition: border-color 300ms;
}
.modal-email:hover {
  border-bottom-color: var(--tech-blue);
  color: var(--glory-gold);
}
.modal-confirm {
  width: 100%;
  justify-content: center;
}
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: var(--z-top);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 38, 59, 0.9);
  border: 1px solid rgba(242, 169, 0, 0.4);
  border-radius: 12px 12px 12px 0;
  color: var(--glory-gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 300ms ease-out, transform 300ms ease-out, visibility 300ms, background-color 300ms, color 300ms;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--glory-gold);
  color: var(--deep-navy);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}
.site-footer {
  background: linear-gradient(180deg, var(--deep-navy) 0%, rgba(27, 38, 59, 0.9) 50%, #0a1520 100%);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--glory-gold) 20%, var(--arena-red) 100%) 1;
  margin-top: 64px;
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 48px 24px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(180px, 0.8fr) minmax(240px, 1fr);
  gap: 48px;
}
.footer-brand-block,
.footer-links-block,
.footer-contact-block {
  min-width: 0;
}
.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--glory-gold);
  margin-bottom: 12px;
}
.footer-brand-name::before {
  content: "88";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--glory-gold), #e8a000);
  color: var(--deep-navy);
  font-weight: 900;
  font-size: 0.8rem;
  border-radius: 5px 5px 5px 0;
  transform: skewX(-6deg);
  flex-shrink: 0;
}
.footer-desc {
  color: var(--neutral-gray);
  font-size: 0.875rem;
  margin-bottom: 16px;
  max-width: 36em;
  line-height: 1.7;
}
.footer-trust {
  padding: 12px 16px;
  background: rgba(242, 169, 0, 0.06);
  border-left: 3px solid var(--glory-gold);
  border-radius: 0 8px 8px 0;
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.8rem;
  line-height: 1.6;
}
.footer-links-title,
.footer-contact-title {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  color: var(--snow-white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}
.footer-links-title::after,
.footer-contact-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--glory-gold), rgba(242, 169, 0, 0.2));
}
.footer-links-list,
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links-list a {
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 300ms, padding-left 300ms;
  padding-left: 0;
  display: inline-block;
}
.footer-links-list a:hover {
  color: var(--glory-gold);
  padding-left: 6px;
}
.footer-contact-list li {
  color: var(--neutral-gray);
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}
.footer-contact-list a {
  color: var(--tech-blue);
  text-decoration: none;
  transition: color 300ms;
}
.footer-contact-list a:hover {
  color: var(--glory-gold);
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid var(--divider-mist);
  background: rgba(13, 27, 42, 0.6);
}
.footer-bottom-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  color: var(--neutral-gray);
  font-size: 0.8rem;
}
.footer-icp {
  color: var(--neutral-gray);
  font-size: 0.8rem;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-icp a {
  color: var(--neutral-gray);
  text-decoration: none;
  transition: color 300ms;
}
.footer-icp a:hover {
  color: var(--glory-gold);
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 48px 24px;
}
.section-title {
  font-family: var(--font-headline);
  font-size: var(--font-h2);
  font-weight: 900;
  color: var(--snow-white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--glory-gold), var(--arena-red));
  border-radius: 0 2px 2px 0;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--steel-blue);
  border: 1px solid var(--divider-mist);
  border-radius: 12px 12px 12px 0;
  padding: 24px;
  transition: transform 300ms ease-out, border-color 300ms ease-out, box-shadow 300ms ease-out;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 169, 0, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.img-frame {
  position: relative;
  overflow: hidden;
  background: var(--steel-blue);
  border: 1px solid var(--divider-mist);
  border-radius: 12px 12px 12px 0;
}
.img-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease-out;
}
.img-frame:hover img {
  transform: scale(1.03);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 0.875rem;
  color: var(--neutral-gray);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb li + li::before {
  content: "/";
  color: var(--divider-mist);
}
.breadcrumb a {
  color: var(--tech-blue);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--glory-gold);
}
.breadcrumb [aria-current="page"] {
  color: var(--snow-white);
  font-weight: 600;
}
@media (max-width: 1024px) {
  .header-inner {
    gap: 24px;
  }
  .announce-tag {
    display: none;
  }
  .nav-link {
    padding: 10px 12px;
    font-size: 0.875rem;
  }
  .header-tools {
    gap: 8px;
  }
  .footer-grid {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }
  .header-inner {
    padding: 0 16px;
    gap: 12px;
  }
  .mobile-nav-toggle {
    display: inline-flex;
  }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--divider-mist);
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease-out;
  }
  .main-nav[data-open] {
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  .nav-list {
    flex-direction: column;
    padding: 16px;
    gap: 4px;
  }
  .nav-link {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.4);
    font-size: 1rem;
  }
  .nav-link::after {
    display: none;
  }
  .lang-switch {
    display: none;
  }
  .btn-subscribe {
    padding: 8px 12px;
    font-size: 0.8125rem;
  }
  .search-panel-inner {
    padding: 12px 16px;
  }
  .scroll-progress {
    height: 2px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
  .section {
    padding: 32px 16px;
  }
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  .header-tools {
    gap: 6px;
  }
  .btn-subscribe {
    padding: 8px;
    font-size: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    justify-content: center;
  }
  .btn-subscribe::before {
    content: "订";
    font-size: 0.875rem;
    font-weight: 700;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }
  .brand-text {
    font-size: 1.05rem;
  }
  .footer-inner {
    padding: 32px 16px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
