/* ===== 首页专属样式 ===== */
.page-home {
  --hx-ease: cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--c-deep);
  color: var(--c-text);
  font-family: var(--font-body);
}

/* ===== 实时数据提示条 ===== */
.page-home .hx-ticker {
  position: relative;
  z-index: 6;
  background: var(--c-deeper);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.page-home .hx-ticker__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 20px;
}
.page-home .hx-ticker__label {
  flex: 0 0 auto;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-neon);
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.4);
  padding: 4px 10px;
  border-radius: 2px;
}
.page-home .hx-ticker__items {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 auto;
}
.page-home .hx-ticker__items::-webkit-scrollbar {
  display: none;
}
.page-home .hx-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-muted);
  letter-spacing: 0.02em;
}
.page-home .hx-ping {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  animation: hx-pulse 1.8s ease-out infinite;
}
@keyframes hx-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}
.page-home .hx-ticker__entry {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-neon);
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 20, 0.45);
  padding-bottom: 2px;
  transition: color 0.3s var(--hx-ease), border-color 0.3s var(--hx-ease);
}
.page-home .hx-ticker__entry:hover {
  color: #fff;
  border-color: var(--c-orange);
}

/* ===== 首屏：主队专区 ===== */
.page-home .hx-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(143, 162, 188, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 162, 188, 0.14) 1px, transparent 1px),
    radial-gradient(1100px 520px at 88% -10%, rgba(57, 255, 20, 0.16), transparent 60%),
    linear-gradient(180deg, var(--c-deeper) 0%, var(--c-deep) 46%, var(--c-panel) 100%);
  background-size: 52px 52px, 52px 52px, auto, auto;
  border-bottom: 1px solid var(--c-line);
}
.page-home .hx-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-home .hx-hero__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.4;
}
.page-home .hx-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--c-deeper) 0%, rgba(6, 18, 35, 0.45) 42%, rgba(6, 18, 35, 0.72) 100%);
}
.page-home .hx-hero__scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 0, 0.06) 50%, transparent 100%);
  background-size: 100% 220px;
  background-position: 0 -220px;
  animation: hx-scan 7s linear infinite;
}
@keyframes hx-scan {
  0% { background-position: 0 -220px; }
  100% { background-position: 0 110vh; }
}
.page-home .hx-hero__wrap {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
  padding-top: 44px;
  padding-bottom: 64px;
}
.page-home .hx-hero__main {
  position: relative;
  padding: 32px 26px 30px;
  background: linear-gradient(135deg, rgba(6, 18, 35, 0.96) 0%, rgba(10, 31, 60, 0.9) 48%, rgba(16, 42, 74, 0.78) 100%);
  border: 1px solid rgba(57, 255, 20, 0.28);
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.42));
}
.page-home .hx-hero__title {
  margin: 14px 0 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
}
.page-home .hx-hero__subtitle {
  margin: 10px 0 0;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.06em;
  color: var(--c-text);
}
.page-home .hx-hero__accent {
  color: var(--c-neon);
  margin-left: 4px;
}
.page-home .hx-hero__lede {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-muted);
}
.page-home .hx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.page-home .hx-hero__cta {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--c-deeper);
  background: var(--c-neon);
  border-radius: 2px;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(57, 255, 20, 0.4), 0 10px 28px rgba(57, 255, 20, 0.2);
  transition: transform 0.35s var(--hx-ease), background 0.35s var(--hx-ease), box-shadow 0.35s var(--hx-ease);
}
.page-home .hx-hero__cta:hover {
  transform: translateX(-6px);
  background: #5dff3a;
  box-shadow: 0 0 0 1px rgba(57, 255, 20, 0.8), 0 14px 36px rgba(57, 255, 20, 0.3);
}
.page-home .hx-hero__ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--c-text);
  text-decoration: none;
  border: 1px solid var(--c-line);
  border-radius: 2px;
  transition: border-color 0.3s var(--hx-ease), color 0.3s var(--hx-ease);
}
.page-home .hx-hero__ghost:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
}
.page-home .hx-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.page-home .hx-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 12px 13px;
  background: rgba(6, 18, 35, 0.5);
  border: 1px solid var(--c-line);
}
.page-home .hx-stat__num {
  font-family: var(--font-data);
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: var(--c-neon);
}
.page-home .hx-stat__label {
  font-size: 13px;
  color: var(--c-muted);
  letter-spacing: 0.06em;
}
.page-home .hx-hero__landmark {
  display: block;
  width: 146px;
  height: auto;
  margin-top: 24px;
  border-radius: 6px;
  border: 1px solid rgba(57, 255, 20, 0.3);
  opacity: 0.82;
}

/* ===== 首屏侧边实时卡片 ===== */
.page-home .hx-hero__side {
  min-width: 0;
}
.page-home .hx-livecard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 22px 24px;
  background: rgba(16, 42, 74, 0.88);
  border: 1px solid var(--c-line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}
.page-home .hx-livecard__title {
  margin: 4px 0 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #fff;
}
.page-home .hx-livecard__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}
.page-home .hx-livecard__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.page-home .hx-livecard__list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 13px 0;
  border-top: 1px solid var(--c-line);
  font-size: 14px;
  color: var(--c-text);
}
.page-home .hx-livecard__tag {
  flex: 0 0 auto;
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--c-neon);
  border: 1px solid rgba(57, 255, 20, 0.4);
  padding: 2px 6px;
  border-radius: 2px;
}
.page-home .hx-livecard__status {
  margin-left: auto;
  font-size: 12px;
  color: var(--c-orange);
  border-bottom: 1px dashed rgba(255, 107, 0, 0.5);
}
.page-home .hx-livecard__more {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-neon);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  transition: color 0.3s var(--hx-ease);
}
.page-home .hx-livecard__more:hover {
  color: #fff;
}

/* ===== 章节标题体系 ===== */
.page-home .hx-section-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 64px 0 30px;
}
.page-home .hx-section-index {
  font-family: var(--font-data);
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--c-neon);
  letter-spacing: -0.04em;
}
.page-home .hx-section-head__text .fx-kicker {
  margin: 6px 0 0;
}
.page-home .hx-section-head__title {
  max-width: 20ch;
  margin: 4px 0 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(26px, 4.4vw, 42px);
  line-height: 1.14;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
}

/* ===== 内容中心 · 赛果联动 ===== */
.page-home .hx-report {
  background: linear-gradient(165deg, var(--c-deeper) 0%, var(--c-deep) 70%, var(--c-panel) 100%);
  border-bottom: 1px solid var(--c-line);
}
.page-home .hx-report__grid {
  display: grid;
  gap: 28px;
  padding-bottom: 68px;
}
.page-home .hx-report__tabs {
  min-width: 0;
}
.page-home .fx-tabs__list--hx {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 22px;
}
.page-home .fx-tabs__btn {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 12px 16px;
  font-family: var(--font-data);
  font-size: 14px;
  color: var(--c-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.3s var(--hx-ease), border-color 0.3s var(--hx-ease);
}
.page-home .fx-tabs__btn[aria-selected="true"] {
  color: var(--c-neon);
  border-bottom-color: var(--c-neon);
}
.page-home .hx-tab-panel {
  min-width: 0;
}
.page-home .hx-tab-panel__intro {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-muted);
}
.page-home .hx-report__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.page-home .hx-report__list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px 0;
  border-top: 1px solid var(--c-line);
  font-size: 14px;
  color: var(--c-text);
}
.page-home .hx-report__match {
  font-weight: 600;
  color: #fff;
}
.page-home .hx-badge {
  font-family: var(--font-data);
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 2px;
}
.page-home .hx-badge--ok {
  color: var(--c-neon);
  border: 1px solid rgba(57, 255, 20, 0.42);
}
.page-home .hx-report__flow {
  min-width: 0;
}
.page-home .hx-report__frame {
  padding: 12px;
  background: rgba(6, 18, 35, 0.55);
  border: 1px solid var(--c-line);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}
.page-home .hx-report__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}
.page-home .hx-report__caption {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}

/* ===== 本地核对 · 两版对照：纸面区块 ===== */
.page-home .hx-check {
  background: var(--c-paper);
  color: var(--c-deep);
  border-bottom: 1px solid rgba(10, 31, 60, 0.16);
}
.page-home .hx-check .hx-section-head__title {
  color: var(--c-deep);
}
.page-home .hx-check .hx-section-index {
  color: var(--c-orange);
}
.page-home .hx-check .fx-kicker {
  color: var(--c-deep);
  opacity: 0.58;
}
.page-home .hx-check__grid {
  display: grid;
  gap: 36px;
  padding-bottom: 78px;
}
.page-home .hx-check__visual {
  padding: 16px;
  background: linear-gradient(160deg, var(--c-deep) 0%, var(--c-panel) 100%);
  border-radius: 10px;
  transform: rotate(-1deg);
  box-shadow: 0 24px 46px rgba(10, 31, 60, 0.22);
  transition: transform 0.45s var(--hx-ease);
}
.page-home .hx-check__visual:hover {
  transform: rotate(0deg) translateY(-6px);
}
.page-home .hx-check__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  object-fit: cover;
}
.page-home .hx-check__content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.page-home .hx-check__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--c-deep);
}
.page-home .hx-check__feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.page-home .hx-check__feat {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.page-home .hx-check__num {
  font-family: var(--font-data);
  font-weight: 500;
  font-size: 18px;
  color: var(--c-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 107, 0, 0.38);
  background: rgba(255, 107, 0, 0.08);
  border-radius: 50%;
}
.page-home .hx-check__feat strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: var(--c-deep);
}
.page-home .hx-check__feat p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(10, 31, 60, 0.7);
}
.page-home .hx-check__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 4px;
}
.page-home .hx-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 31, 60, 0.35);
  transition: color 0.3s var(--hx-ease), border-color 0.3s var(--hx-ease);
}
.page-home .hx-link--arrow::after {
  content: "→";
  font-family: var(--font-data);
  transition: transform 0.3s var(--hx-ease);
}
.page-home .hx-link--arrow:hover {
  color: var(--c-orange);
  border-color: var(--c-orange);
}
.page-home .hx-link--arrow:hover::after {
  transform: translateX(4px);
}

/* ===== 历史数据 · 近五个赛季 ===== */
.page-home .hx-history {
  background: var(--c-deep);
}
.page-home .hx-history__lead {
  margin: 0 0 26px;
  max-width: 78ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-muted);
}
.page-home .hx-history__groups {
  display: grid;
  gap: 20px;
}
.page-home .hx-history__group {
  padding: 26px 24px;
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}
.page-home .hx-history__topic {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #fff;
}
.page-home .hx-history__weeks {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.page-home .hx-history__weeks li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--c-line);
  font-size: 14px;
}
.page-home .hx-history__week-tag {
  flex: 0 0 auto;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-neon);
}
.page-home .hx-history__week-count {
  text-align: right;
  color: var(--c-muted);
}
.page-home .hx-history__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 0 72px;
}
.page-home .hx-pill {
  display: inline-flex;
  font-family: var(--font-data);
  font-size: 13px;
  padding: 9px 14px;
  color: var(--c-neon);
  background: rgba(57, 255, 20, 0.06);
  border: 1px solid rgba(57, 255, 20, 0.4);
  border-radius: 999px;
}

/* ===== 响应式：平板与桌面 ===== */
@media (min-width: 600px) {
  .page-home .hx-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-home .hx-check__feats {
    gap: 18px;
  }
}

@media (min-width: 900px) {
  .page-home .hx-hero__wrap {
    grid-template-columns: minmax(0, 1.92fr) minmax(300px, 0.84fr);
    gap: 42px;
    padding-top: 64px;
    padding-bottom: 84px;
  }
  .page-home .hx-hero__main {
    padding: 40px 38px 36px;
  }
  .page-home .hx-hero__landmark {
    width: 168px;
  }
  .page-home .hx-livecard {
    padding: 32px 28px;
  }
  .page-home .hx-section-head {
    padding: 80px 0 38px;
  }
  .page-home .hx-report__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 44px;
    align-items: start;
    padding-bottom: 88px;
  }
  .page-home .hx-check__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 56px;
    align-items: center;
    padding-bottom: 104px;
  }
  .page-home .hx-history__groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .page-home .hx-history__badges {
    padding-top: 36px;
  }
}

@media (min-width: 1280px) {
  .page-home .hx-hero__title {
    font-size: 54px;
  }
  .page-home .hx-hero__subtitle {
    font-size: 30px;
  }
  .page-home .hx-section-head__title {
    font-size: 44px;
  }
}
