.page-home {
  --home-cut: 18px;
  --home-accent: #E85D04;
  --home-accent-2: #F48C06;
  --home-hi: #E9FF70;
  --home-cream: #FFF8E7;
  --home-ink: #1A1100;
  --home-panel: #2A2A35;
  --home-panel-2: #20202B;
  --home-text: #CBD5EC;
  --home-dim: #91A1C5;
  --home-line: rgba(150, 165, 205, .28);
  --home-line-hot: rgba(232, 93, 4, .55);
}

.page-home {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  position: relative;
  overflow-x: hidden;
}

/* 阅读进度条 */
.page-home .phx-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  z-index: 1200;
  width: 100%;
  pointer-events: none;
}
.page-home .phx-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--home-accent), var(--home-accent-2), var(--home-hi));
  transition: width 80ms var(--ease);
}

/* 面包屑 */
.page-home .phx-crumbs {
  padding-top: 14px;
  padding-bottom: 6px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--home-dim);
}
.page-home .phx-crumbs a {
  color: var(--c-blue);
  text-decoration: none;
}
.page-home .phx-crumbs a:hover {
  color: var(--home-hi);
}

/* ========== 首屏 ========== */
.page-home .hero-home {
  position: relative;
  padding: 26px 0 52px;
  overflow: hidden;
}
.page-home .hero-home__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  filter: saturate(1.1) contrast(1.1);
  z-index: 0;
}
.page-home .hero-home > .phx-wrap {
  position: relative;
  z-index: 2;
}

/* 速度线 */
.page-home .hero-home__speedlines {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.page-home .hero-home__speedlines i {
  display: block;
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 93, 4, .0));
  transform: skewX(-45deg);
  animation: home-speed 3.2s var(--ease) infinite;
}
.page-home .hero-home__speedlines i:nth-child(1) { top: 4px;  left: 6%;  width: 19%; animation-delay: 0s; }
.page-home .hero-home__speedlines i:nth-child(2) { top: 14px; left: 18%; width: 27%; animation-delay: .3s; }
.page-home .hero-home__speedlines i:nth-child(3) { top: 22px; left: 42%; width: 17%; animation-delay: .6s; }
.page-home .hero-home__speedlines i:nth-child(4) { top: 9px;  left: 61%; width: 23%; animation-delay: .9s; }
.page-home .hero-home__speedlines i:nth-child(5) { top: 28px; left: 74%; width: 15%; animation-delay: .45s; }
@keyframes home-speed {
  0% { background: linear-gradient(90deg, transparent, rgba(233, 255, 112, 0) 40%, rgba(233, 255, 112, 0)); transform: skewX(-45deg) translateX(0); opacity: 0; }
  40% { background: linear-gradient(90deg, transparent, rgba(233, 255, 112, .8) 60%, transparent); opacity: 1; }
  100% { background: linear-gradient(90deg, transparent, rgba(233, 255, 112, 0) 60%, transparent); transform: skewX(-45deg) translateX(120px); opacity: 0; }
}

/* 框景 */
.page-home .phx-frame {
  position: relative;
  border: 1px solid var(--home-line);
  background:
    linear-gradient(135deg, rgba(11, 27, 61, .72) 0%, rgba(32, 32, 43, .88) 100%);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  clip-path: polygon(
    cal(100% - var(--home-cut)) 0, 100% var(--home-cut), 100% 100%,
    var(--home-cut) 100%, 0 calc(100% - var(--home-cut)), 0 0
  );
  padding: 32px 26px 30px;
}
.page-home .phx-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(233, 255, 112, .18);
  clip-path: inherit;
  pointer-events: none;
}

.page-home .hero-home__frame {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.page-home .hero-home__frame-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--home-line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-dim);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.page-home .hero-home__frame-scale {
  flex: 0 1 160px;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--home-accent) 0 2px, transparent 2px 10px);
  opacity: .7;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.page-home .hero-home__frame-time {
  color: var(--home-hi);
  font-weight: bold;
}
.page-home .hero-home__frame-body {
  padding: 6px 0 4px;
}
.page-home .hero-home__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.page-home .phx-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--home-panel);
  color: var(--home-cream);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.page-home .phx-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--home-hi);
}
.page-home .phx-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-hi);
  box-shadow: 0 0 0 2px rgba(233, 255, 112, .15), 0 0 4px rgba(233, 255, 112, .5);
  animation: home-pulse 2.6s var(--ease) infinite;
}
@keyframes home-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(233, 255, 112, .1), 0 0 0 transparent; }
  50% { box-shadow: 0 0 0 4px rgba(233, 255, 112, .25), 0 0 10px rgba(233, 255, 112, .25); }
}

.page-home .hero-home__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(30px, 6vw, 54px);
  line-height: 1.12;
  color: var(--home-cream);
  letter-spacing: .01em;
  transform: skewX(-2deg);
  text-transform: uppercase;
}
.page-home .hero-home__title span {
  color: var(--home-accent);
  -webkit-text-stroke: 1px rgba(232, 93, 4, .5);
}
.page-home .hero-home__lead {
  max-width: 620px;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--home-text);
}

/* 比分牌 */
.page-home .hero-home__score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 22px 0 20px;
  padding: 18px 8px;
  background: linear-gradient(135deg, rgba(42, 42, 53, .9), rgba(11, 27, 61, .7));
  border-left: 3px solid var(--home-accent);
  position: relative;
}
.page-home .hero-home__score::before,
.page-home .hero-home__score::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--home-hi));
  top: -2px;
  left: 10%;
}
.page-home .hero-home__score::after {
  top: auto;
  bottom: -2px;
  right: 10%;
  left: auto;
  background: linear-gradient(270deg, transparent, var(--home-accent));
}
.page-home .hero-home__team {
  text-align: center;
}
.page-home .hero-home__team-name {
  display: block;
  font-size: 13px;
  color: var(--home-dim);
  margin-bottom: 4px;
  letter-spacing: .12em;
}
.page-home .hero-home__team-num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(52px, 8vw, 80px);
  font-weight: bold;
  color: var(--home-cream);
  line-height: 1;
}
.page-home .hero-home__score-mid {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--home-accent);
  transform: skewX(-8deg);
}
.page-home .hero-home__stats {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  padding-top: 12px;
  border-top: 1px solid var(--home-line);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-text);
}
.page-home .hero-home__stats b {
  color: var(--home-hi);
  font-weight: bold;
}

/* 动作按钮 */
.page-home .phx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--home-cream);
  background: linear-gradient(135deg, var(--home-accent), var(--home-accent-2));
  border: 0;
  text-decoration: none;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: transform .2s var(--ease), filter .2s var(--ease), box-shadow .2s var(--ease);
}
.page-home .phx-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 8px 20px rgba(232, 93, 4, .35);
}
.page-home .phx-btn--ghost {
  background: transparent;
  border: 1px solid var(--home-line-hot);
  color: var(--home-cream);
  clip-path: polygon(8px 0, calc(100% - 0px) 0, calc(100% - 8px) 100%, 0px 100%);
}
.page-home .phx-btn--ghost:hover {
  background: rgba(232, 93, 4, .12);
}
.page-home .phx-btn--sm {
  padding: 8px 14px;
  font-size: 13px;
}
.page-home .hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 框景侧边 */
.page-home .hero-home__frame-side {
  display: none;
}
.page-home .hero-home__frame-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--home-hi);
  border-style: solid;
  z-index: 3;
  pointer-events: none;
}
.page-home .hero-home__frame-corner--tl { top: 2px; left: 2px; border-width: 2px 0 0 2px; }
.page-home .hero-home__frame-corner--tr { top: 2px; right: 2px; border-width: 2px 2px 0 0; }
.page-home .hero-home__frame-corner--bl { bottom: 2px; left: 2px; border-width: 0 0 2px 2px; }
.page-home .hero-home__frame-corner--br { bottom: 2px; right: 2px; border-width: 0 2px 2px 0; }

/* 节间快速导航 */
.page-home .section-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  padding: 18px 0 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-dim);
}
.page-home .section-jump a {
  color: var(--c-blue);
  text-decoration: none;
  padding: 4px 2px;
  border-bottom: 1px dashed rgba(78, 168, 222, .4);
  transition: color .2s, border-color .2s;
}
.page-home .section-jump a:hover {
  color: var(--home-hi);
  border-color: var(--home-hi);
}

/* 通用 section-head */
.page-home .phx-section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: baseline;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--home-line);
  padding-bottom: 12px;
  position: relative;
}
.page-home .phx-section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 84px;
  height: 2px;
  background: linear-gradient(90deg, var(--home-accent), var(--home-accent-2));
}
.page-home .phx-section-head__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-accent);
  letter-spacing: .08em;
  align-self: center;
}
.page-home .phx-section-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 32px);
  color: var(--home-cream);
  transform: skewX(-3deg);
  letter-spacing: .02em;
}
.page-home .phx-section-head__en {
  grid-column: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-dim);
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ========== 数据面板预览 ========== */
.page-home .phx-section--alt {
  background: var(--home-panel-2);
  color: var(--home-text);
}
.page-home .data-preview__intro {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}
.page-home .data-preview__intro .phx-datum {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.page-home .phx-datum__num {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: bold;
  color: var(--home-accent);
  line-height: 1;
}
.page-home .phx-datum__unit {
  font-size: .7em;
  color: var(--home-hi);
  margin-left: 2px;
}
.page-home .phx-datum__label {
  font-size: 14px;
  color: var(--home-dim);
}
.page-home .data-preview__text {
  margin: 0;
  max-width: 780px;
  line-height: 1.75;
  font-size: 14px;
}

.page-home .data-preview__grid {
  display: grid;
  gap: 18px;
}
.page-home .phx-panel {
  position: relative;
  background: var(--home-panel);
  clip-path: polygon(var(--home-cut) 0, 100% 0, calc(100% - var(--home-cut)) 100%, 0 100%);
  padding: 18px;
}
.page-home .phx-panel--cream {
  background: var(--home-cream);
  color: var(--home-ink);
}
.page-home .phx-panel--metal {
  background: linear-gradient(145deg, #2A2A35, #20202B);
  color: var(--home-text);
}
.page-home .phx-panel--accent {
  background: linear-gradient(135deg, #C35200, #E85D04 60%, #F48C06);
  color: var(--home-cream);
}
.page-home .phx-panel--lined {
  background: transparent;
  border: 1px solid var(--home-line);
  clip-path: none;
}
.page-home .data-preview__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}
.page-home .data-preview__panel-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-dim);
  letter-spacing: .08em;
}
.page-home .data-preview__img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  display: block;
  margin-bottom: 14px;
  -webkit-mask-image: linear-gradient(135deg, #000 85%, transparent);
  mask-image: linear-gradient(135deg, #000 85%, transparent);
}
.page-home .data-preview__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.page-home .data-preview__list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(26, 17, 0, .15);
  font-size: 13px;
}
.page-home .data-preview__list b {
  font-family: var(--font-mono);
  color: var(--home-accent);
}

.page-home .data-preview__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.page-home .data-preview__svg {
  width: 100%;
  height: auto;
  display: block;
}
.page-home .data-preview__chart-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-dim);
}
.page-home .phx-slash {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--home-accent), transparent);
}

.page-home .data-preview__note {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(233, 255, 112, .06);
  border-left: 3px solid var(--home-hi);
}
.page-home .phx-note__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-hi);
  letter-spacing: .06em;
}
.page-home .phx-note p {
  margin: 0;
  flex: 1 1 240px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--home-text);
}
.page-home .data-preview__note .phx-btn {
  margin-left: auto;
}

/* ========== 追比分 ========== */
.page-home .scoreboard__wrap {
  display: grid;
  gap: 20px;
}
.page-home .scoreboard__panel {
  background: linear-gradient(145deg, rgba(232, 93, 4, .92), rgba(195, 82, 0, .96));
  padding: 22px 18px;
  overflow: hidden;
}
.page-home .scoreboard__panel::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px dashed rgba(255, 248, 231, .18);
  border-radius: 50%;
  top: -70px;
  right: -40px;
  pointer-events: none;
}
.page-home .scoreboard__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 248, 231, .25);
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 248, 231, .85);
}
.page-home .scoreboard__time {
  color: var(--home-hi);
  font-weight: bold;
}
.page-home .scoreboard__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 24px 0 18px;
}
.page-home .scoreboard__team {
  text-align: center;
}
.page-home .scoreboard__team-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255, 248, 231, .9);
}
.page-home .scoreboard__team-score {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: bold;
  color: var(--home-cream);
  line-height: 1.1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .2);
}
.page-home .scoreboard__team-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 248, 231, .8);
  font-family: var(--font-mono);
}
.page-home .scoreboard__team-info i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-hi);
  display: inline-block;
  animation: home-pulse 2s var(--ease) infinite;
  animation-delay: calc(var(--dot, 0) * .5s);
}
.page-home .scoreboard__split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.page-home .scoreboard__split-line {
  width: 1px;
  height: 34px;
  background: rgba(255, 248, 231, .3);
}
.page-home .scoreboard__split b {
  font-family: var(--font-display);
  color: var(--home-hi);
  font-size: 18px;
  letter-spacing: .06em;
}
.page-home .scoreboard__sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 248, 231, .2);
  border-bottom: 1px solid rgba(255, 248, 231, .2);
  font-family: var(--font-mono);
  font-size: 12px;
}
.page-home .scoreboard__sub-item {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.page-home .scoreboard__sub-item span {
  color: rgba(255, 248, 231, .75);
}
.page-home .scoreboard__sub-item b {
  color: var(--home-cream);
}
.page-home .scoreboard__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  font-size: 13px;
  color: rgba(255, 248, 231, .8);
}
.page-home .scoreboard__panel .phx-btn {
  background: var(--home-cream);
  color: var(--home-accent-deep, #C35200);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.page-home .scoreboard__aside {
  display: grid;
  gap: 12px;
  align-content: start;
}
.page-home .scoreboard__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-left: 3px solid var(--home-accent);
}
.page-home .scoreboard__aside-txt {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-text);
  padding: 4px 0;
}

/* ========== 会员中心 ========== */
.page-home .phx-section--cream {
  background: var(--home-cream);
  color: var(--home-ink);
}
.page-home .phx-section--cream .phx-section-head {
  border-bottom-color: rgba(26, 17, 0, .18);
}
.page-home .phx-section--cream .phx-section-head__title {
  color: var(--home-ink);
}
.page-home .phx-section--cream .phx-section-head__en {
  color: rgba(26, 17, 0, .55);
}
.page-home .phx-section--cream .phx-section-head::after {
  background: linear-gradient(90deg, var(--home-accent), var(--home-accent-2));
}
.page-home .phx-section--cream .phx-chip {
  background: rgba(26, 17, 0, .08);
  color: var(--home-ink);
}

.page-home .membership__grid {
  display: grid;
  gap: 22px;
}
.page-home .membership__main {
  padding-right: 0;
}
.page-home .membership__lead {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--home-ink);
  margin: 0 0 12px;
}
.page-home .membership__main p {
  line-height: 1.75;
  font-size: 14px;
  margin: 0 0 12px;
}
.page-home .membership__feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}
.page-home .membership__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-home .membership__cta .phx-btn {
  color: var(--home-cream);
}
.page-home .membership__cta .phx-btn--ghost {
  background: transparent;
  color: var(--home-ink);
  border-color: rgba(26, 17, 0, .3);
  clip-path: none;
  border: 1px solid rgba(26, 17, 0, .3);
}
.page-home .membership__card {
  text-align: center;
  padding: 14px;
}
.page-home .membership__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}
.page-home .membership__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.page-home .membership__card-body .phx-datum__num {
  font-size: 36px;
}
.page-home .membership__aside-note {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(26, 17, 0, .65);
  padding-left: 10px;
  border-left: 2px solid var(--home-accent);
}

/* ========== 更新公告 ========== */
.page-home .updates__layout {
  display: grid;
  gap: 20px;
}
.page-home .updates__list {
  display: grid;
  gap: 14px;
}
.page-home .updates__item {
  background: var(--home-panel);
  padding: 18px;
  transition: background .25s var(--ease), border-color .25s var(--ease);
  margin: 0;
}
.page-home .updates__item:hover {
  background: #33333F;
  border-left: 3px solid var(--home-accent);
}
.page-home .updates__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.page-home .updates__time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--home-dim);
  letter-spacing: .06em;
}
.page-home .updates__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--home-cream);
  line-height: 1.45;
}
.page-home .updates__text {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--home-text);
}
.page-home .updates__link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(78, 168, 222, .3);
  transition: color .2s, border-color .2s;
}
.page-home .updates__link:hover {
  color: var(--home-hi);
  border-color: var(--home-hi);
}
.page-home .updates__side-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.page-home .updates__side-card .phx-datum__num {
  font-size: 42px;
}
.page-home .updates__side-text {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(26, 17, 0, .72);
  margin: 0 0 6px;
}

/* ========== 底部帮助区 ========== */
.page-home .home-help {
  border-top: 1px solid var(--home-line);
  background: linear-gradient(180deg, transparent, rgba(232, 93, 4, .08));
}
.page-home .home-help__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.page-home .home-help__title {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--home-cream);
}
.page-home .home-help__text {
  max-width: 660px;
}
.page-home .home-help__text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--home-dim);
}
.page-home .home-help__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ========== 响应式 ========== */
@media (min-width: 640px) {
  .page-home .hero-home__frame {
    grid-template-columns: 1fr auto;
  }
  .page-home .hero-home__frame-top {
    grid-column: 1 / -1;
  }
  .page-home .hero-home__frame-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 62px;
    border-left: 1px solid var(--home-line);
    margin-left: 10px;
    padding-left: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--home-dim);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  .page-home .hero-home__frame-side-val {
    font-size: 21px;
    font-weight: bold;
    color: var(--home-hi);
  }
  .page-home .hero-home__frame-side-line {
    display: block;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--home-accent), transparent);
  }
  .page-home .data-preview__grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .scoreboard__sub {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .updates__layout {
    grid-template-columns: 1fr 240px;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .page-home .hero-home {
    padding: 30px 0 60px;
  }
  .page-home .hero-home__frame {
    grid-template-columns: 1fr auto;
  }
  .page-home .hero-home__title {
    font-size: 52px;
  }
  .page-home .hero-home__lead {
    font-size: 16px;
  }
  .page-home .data-preview__intro {
    grid-template-columns: 200px 1fr;
    align-items: start;
  }
  .page-home .data-preview__grid {
    grid-template-columns: 7fr 5fr;
  }
  .page-home .scoreboard__wrap {
    grid-template-columns: 7fr 5fr;
    align-items: stretch;
  }
  .page-home .membership__grid {
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }
  .page-home .phx-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .page-home .phx-section--tight {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-home__speedlines i {
    animation: none;
    opacity: .4;
  }
  .page-home .phx-status::before,
  .page-home .scoreboard__team-info i {
    animation: none;
  }
  .page-home .phx-btn,
  .page-home .updates__item {
    transition: none;
  }
}

.page-home {
  --dot: inherit;
  --home-accent-deep: currentColor;
}
