.page-home {
  padding-block: 24px 84px;
}

/* ---------- 上下文条 ---------- */
.page-home .home-context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(18px, 2.6vw, 30px);
  padding: 11px 14px;
  border: var(--edge);
  border-left: 3px solid var(--volt);
  border-radius: var(--radius-sm);
  background: rgba(18, 37, 30, 0.72);
  font-size: 0.84rem;
}

.page-home .home-context__text {
  color: var(--paper);
  opacity: 0.88;
  line-height: 1.6;
}

/* ---------- 首屏 ---------- */
.page-home .home-stage {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
}

.page-home .home-stage__head {
  max-width: 64ch;
}

.page-home .home-stage__head .eyebrow {
  margin: 0 0 10px;
}

.page-home .home-stage__head h1 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 5.6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.page-home .home-stage__head .lede {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(0.94rem, 1.7vw, 1.04rem);
  line-height: 1.82;
  color: var(--data);
}

.page-home .home-stage__banner {
  margin: 0;
}

.page-home .home-stage__banner .media__frame {
  aspect-ratio: 16 / 9;
  border: var(--edge);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1f19;
}

.page-home .home-stage__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .home-stage__grid {
  display: grid;
  gap: clamp(18px, 2.4vw, 26px);
}

@media (min-width: 980px) {
  .page-home .home-stage__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    align-items: start;
  }
}

/* ---------- 比分面板 ---------- */
.page-home .home-score {
  position: relative;
  padding: clamp(16px, 2.4vw, 26px);
  background: var(--panel);
  border: var(--edge);
  border-radius: var(--radius);
  box-shadow:
    7px 9px 0 -1px rgba(30, 122, 90, 0.26),
    15px 19px 0 -2px rgba(30, 122, 90, 0.1);
}

.page-home .home-score__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 211, 204, 0.18);
}

.page-home .home-score__title {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-home .home-score__more {
  font-size: 0.82rem;
  color: var(--volt);
  text-decoration: none;
  border-bottom: 1px solid rgba(215, 255, 63, 0.45);
  padding-bottom: 2px;
}

.page-home .home-score__more:hover {
  border-bottom-color: var(--volt);
}

.page-home .home-score__day + .home-score__day {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed rgba(201, 211, 204, 0.2);
}

.page-home .home-score__daylabel {
  margin: 0 0 10px;
  font-family: var(--font-num);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--data);
}

.page-home .home-score__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .home-score__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "league status"
    "pair   pair";
  gap: 8px 12px;
  padding: 12px 14px;
  border: var(--edge-soft);
  border-radius: var(--radius-sm);
  background: rgba(10, 20, 40, 0.52);
  transition: background 0.2s var(--ease);
}

.page-home .home-score__item:hover {
  background: rgba(30, 122, 90, 0.22);
}

@media (min-width: 620px) {
  .page-home .home-score__item {
    grid-template-columns: 130px minmax(0, 1fr) auto;
    grid-template-areas: "league pair status";
    align-items: center;
    gap: 10px 16px;
  }
}

.page-home .home-score__league {
  grid-area: league;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--data);
}

.page-home .home-score__pair {
  grid-area: pair;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.page-home .home-score__team {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
  color: var(--paper);
}

.page-home .home-score__team--away {
  text-align: right;
}

.page-home .home-score__num {
  flex: 0 0 auto;
  min-width: 1.9em;
  text-align: center;
  font-family: var(--font-num);
  font-size: clamp(1.35rem, 3.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--volt);
  font-variant-numeric: tabular-nums;
}

.page-home .home-score__dash {
  flex: 0 0 auto;
  font-size: 0.9rem;
  color: var(--data);
}

.page-home .home-score__item .tag {
  grid-area: status;
  justify-self: start;
}

/* ---------- 侧栏 ---------- */
.page-home .home-side {
  display: grid;
  gap: clamp(16px, 2.2vw, 22px);
}

.page-home .home-side__figure {
  margin: 0;
}

.page-home .home-side__figure .media__frame {
  aspect-ratio: 3 / 2;
  border: var(--edge);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1f19;
}

.page-home .home-side__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .home-side__panel {
  padding: 18px;
  border: var(--edge);
  border-radius: var(--radius);
  background: rgba(10, 20, 40, 0.6);
}

.page-home .home-side__title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--paper);
}

.page-home .home-side__text {
  margin: 0 0 14px;
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--data);
}

.page-home .home-side__links {
  list-style: none;
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px dashed rgba(201, 211, 204, 0.2);
  display: grid;
  gap: 8px;
}

.page-home .home-side__links a {
  font-size: 0.86rem;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 211, 204, 0.28);
  justify-self: start;
  padding-bottom: 2px;
}

.page-home .home-side__links a:hover {
  color: var(--volt);
  border-bottom-color: var(--volt);
}

.page-home .home-side__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.page-home .home-side__stats .stat {
  padding: 12px 10px;
  border: var(--edge);
  border-radius: var(--radius-sm);
  background: rgba(30, 122, 90, 0.16);
  text-align: center;
}

.page-home .home-side__stats .stat__value {
  display: block;
  font-family: var(--font-num);
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--volt);
}

.page-home .home-side__stats .stat__label {
  display: block;
  margin-top: 5px;
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  color: var(--data);
}

/* ---------- 联赛与滚动比分条 ---------- */
.page-home .home-leagues {
  margin-top: clamp(40px, 6vw, 72px);
  padding: clamp(18px, 3vw, 30px);
  border: var(--edge);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(30, 122, 90, 0.18), rgba(10, 20, 40, 0.72) 68%);
}

.page-home .home-leagues__head {
  max-width: 58ch;
  margin-bottom: 18px;
}

.page-home .home-leagues__head .section__index {
  margin: 0 0 10px;
}

.page-home .home-leagues__head .heading-display {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3.4vw, 2.05rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.page-home .home-leagues__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--data);
}

.page-home .home-leagues__tags {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-ticker {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  border-top: 1px solid rgba(201, 211, 204, 0.16);
  border-bottom: 1px solid rgba(201, 211, 204, 0.16);
}

.page-home .home-ticker:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 2px;
}

.page-home .home-ticker__track {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  display: flex;
  gap: 12px;
  width: max-content;
}

.page-home .home-ticker__item {
  scroll-snap-align: start;
  flex: 0 0 auto;
  min-width: 148px;
  padding: 12px 14px;
  border: var(--edge);
  border-radius: var(--radius-sm);
  background: rgba(5, 8, 7, 0.55);
  display: grid;
  gap: 6px;
}

.page-home .home-ticker__league {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--data);
}

.page-home .home-ticker__score {
  font-family: var(--font-num);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}

.page-home .home-ticker__state {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--ember);
}

.page-home .home-leagues__media {
  margin: 18px 0 0;
}

.page-home .home-leagues__media .media__frame {
  aspect-ratio: 4 / 3;
  border: var(--edge);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1f19;
}

.page-home .home-leagues__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- 赛季资料 ---------- */
.page-home .home-shelf {
  margin-top: clamp(40px, 6vw, 72px);
}

.page-home .home-shelf__head {
  max-width: 60ch;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.page-home .home-shelf__head .section__index {
  margin: 0 0 10px;
}

.page-home .home-shelf__head .heading-display {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3.4vw, 2.05rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.page-home .home-shelf__text {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--data);
}

.page-home .home-shelf__cta {
  align-self: start;
}

.page-home .home-seasons {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(201, 211, 204, 0.2);
}

.page-home .home-seasons__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 4px 14px;
  align-items: baseline;
  padding: 12px 0 12px 22px;
}

.page-home .home-seasons__bar {
  position: absolute;
  left: -6px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 0 4px rgba(215, 255, 63, 0.14);
}

.page-home .home-seasons__item:first-child .home-seasons__bar {
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(255, 92, 53, 0.16);
}

.page-home .home-seasons__name {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--paper);
}

.page-home .home-seasons__meta {
  font-size: 0.8rem;
  color: var(--data);
  line-height: 1.7;
}

.page-home .home-fields {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

@media (min-width: 700px) {
  .page-home .home-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1060px) {
  .page-home .home-fields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home .home-fields__item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: var(--edge-soft);
  border-left: 2px solid var(--grass);
  border-radius: var(--radius-sm);
  background: rgba(18, 37, 30, 0.6);
}

.page-home .home-fields__key {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--paper);
}

.page-home .home-fields__desc {
  font-size: 0.78rem;
  color: var(--data);
  line-height: 1.7;
}

/* ---------- 换设备帮助 ---------- */
.page-home .home-switch {
  margin-top: clamp(40px, 6vw, 72px);
  padding: clamp(18px, 3vw, 30px);
  border: var(--edge);
  border-radius: var(--radius);
  background: rgba(10, 20, 40, 0.66);
}

.page-home .home-switch__head {
  max-width: 60ch;
  margin-bottom: 20px;
}

.page-home .home-switch__head .section__index {
  margin: 0 0 10px;
}

.page-home .home-switch__head .heading-display {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3.4vw, 2.05rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.page-home .home-switch__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--data);
}

.page-home .home-switch__grid {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

@media (min-width: 860px) {
  .page-home .home-switch__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-home .home-faq {
  border: var(--edge);
  border-radius: var(--radius-sm);
  background: rgba(5, 8, 7, 0.5);
  padding: 0;
}

.page-home .home-faq[open] {
  border-color: rgba(215, 255, 63, 0.34);
  background: rgba(30, 122, 90, 0.16);
}

.page-home .home-faq summary {
  cursor: pointer;
  padding: 14px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--paper);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-home .home-faq summary::-webkit-details-marker {
  display: none;
}

.page-home .home-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--font-num);
  font-size: 1.1rem;
  color: var(--volt);
  line-height: 1;
}

.page-home .home-faq[open] summary::after {
  content: "–";
}

.page-home .home-faq p {
  margin: 0;
  padding: 0 16px 16px;
  font-size: 0.86rem;
  line-height: 1.82;
  color: var(--data);
}

.page-home .home-switch__media {
  margin: 0 0 18px;
}

.page-home .home-switch__media .media__frame {
  aspect-ratio: 12 / 7;
  border: var(--edge);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1f19;
}

.page-home .home-switch__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .home-switch__cta {
  align-self: start;
}

/* ---------- 服务与联系 ---------- */
.page-home .home-trust {
  margin-top: clamp(40px, 6vw, 72px);
  padding: clamp(20px, 3vw, 32px);
  border: var(--edge);
  border-top: 3px solid var(--volt);
  border-radius: var(--radius);
  background: rgba(18, 37, 30, 0.7);
}

.page-home .home-trust .section__index {
  margin: 0 0 12px;
}

.page-home .home-trust__lead {
  max-width: 66ch;
  margin: 0 0 22px;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--data);
}

.page-home .home-trust__grid {
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}

@media (min-width: 700px) {
  .page-home .home-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1060px) {
  .page-home .home-trust__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-home .home-trust__cell {
  padding: 12px 14px;
  border: var(--edge-soft);
  border-radius: var(--radius-sm);
  background: rgba(5, 8, 7, 0.45);
}

.page-home .home-trust__cell dt {
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--data);
}

.page-home .home-trust__cell dd {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--paper);
  word-break: break-word;
}

.page-home .home-trust__cell dd.num {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
}

.page-home .home-trust__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- 动效降级 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home .home-score__item {
    transition: none;
  }
}
<<<END>>>
