.page-home {
  --home-panel: rgba(13, 40, 67, .72);
  --home-line: rgba(23, 63, 99, .9);
  --home-soft: rgba(140, 163, 182, .22);
  --home-scan: rgba(52, 245, 208, .06);
}

/* ---------- 通用区块头 ---------- */
.page-home .home-sechead {
  max-width: 64ch;
  margin-bottom: clamp(24px, 3.4vw, 40px);
}

.page-home .home-sechead .display--sm {
  margin: 10px 0 14px;
}

.page-home .home-sechead .lede {
  max-width: 58ch;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(44px, 7vw, 96px);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: -22%;
  right: -12%;
  width: min(720px, 68vw);
  height: min(720px, 68vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 245, 208, .13), transparent 68%);
  pointer-events: none;
}

.page-home .home-hero__crumb {
  margin-bottom: clamp(20px, 3vw, 36px);
}

.page-home .home-hero .breadcrumb__link {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--t), border-color var(--t);
}

.page-home .home-hero .breadcrumb__link:hover,
.page-home .home-hero .breadcrumb__link:focus-visible {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.page-home .home-hero__grid {
  display: grid;
  gap: clamp(30px, 4vw, 52px);
  align-items: center;
}

.page-home .home-hero__title {
  margin: 14px 0 18px;
  max-width: 14ch;
}

.page-home .home-hero__title em {
  font-style: normal;
  color: var(--cyan);
  display: block;
}

.page-home .home-hero__lede {
  max-width: 54ch;
  margin-bottom: clamp(22px, 3vw, 30px);
}

.page-home .home-hero__steps {
  list-style: none;
  margin: 0 0 clamp(24px, 3vw, 34px);
  padding: 0;
  display: grid;
  gap: 12px;
  border-left: 2px solid var(--home-soft);
  padding-left: 18px;
}

.page-home .home-hero__step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  color: var(--paper);
  font-size: 15px;
  line-height: 1.6;
}

.page-home .home-hero__stepnum {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--cyan-deep);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-hero__baseline {
  display: block;
  height: 2px;
  margin-top: clamp(30px, 4.5vw, 52px);
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-deep) 38%, rgba(23, 63, 99, .2) 78%, transparent 100%);
}

/* ---------- 比分控制台 ---------- */
.page-home .console {
  position: relative;
  margin: 0;
  min-height: 380px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-800);
  border: 1px solid rgba(52, 245, 208, .22);
  box-shadow: 0 28px 64px rgba(0, 0, 0, .46), inset 0 0 0 1px rgba(52, 245, 208, .05);
  isolation: isolate;
}

.page-home .console__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
}

.page-home .console::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(158deg, rgba(6, 26, 46, .5) 0%, rgba(6, 26, 46, .95) 62%),
    repeating-linear-gradient(0deg, var(--home-scan) 0 1px, transparent 1px 4px);
}

.page-home .console__inner {
  position: relative;
  z-index: 2;
  padding: clamp(18px, 2.6vw, 26px);
}

.page-home .console__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--home-soft);
}

.page-home .console__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-home .console__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 106, 69, .2);
}

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

.page-home .console__row {
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: rgba(23, 63, 99, .42);
  border-left: 3px solid var(--ink-600);
}

.page-home .console__row--live {
  border-left-color: var(--coral);
  background: rgba(23, 63, 99, .62);
}

.page-home .console__meta {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--muted);
}

.page-home .console__main {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.page-home .console__team {
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
  min-width: 0;
  overflow-wrap: anywhere;
}

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

.page-home .console__score {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 34px);
  line-height: 1;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(52, 245, 208, .35);
}

.page-home .console__score--soon {
  color: var(--muted);
  text-shadow: none;
  font-size: clamp(20px, 2.6vw, 24px);
}

.page-home .console__score--final {
  color: var(--paper);
  text-shadow: none;
}

.page-home .console__colon {
  padding: 0 2px;
  opacity: .7;
}

.page-home .console__foot {
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.page-home .console__time {
  color: var(--yellow);
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}

.page-home .console__state {
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid var(--home-soft);
  font-size: 11px;
  letter-spacing: .08em;
}

.page-home .console__state--soon {
  color: var(--yellow);
  border-color: rgba(255, 210, 74, .45);
}

.page-home .console__state--final {
  color: var(--muted);
}

.page-home .console__note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- 今日场次 ---------- */
.page-home .home-live {
  padding-top: clamp(44px, 6vw, 84px);
  padding-bottom: clamp(44px, 6vw, 84px);
}

.page-home .home-live__filter {
  margin-bottom: clamp(22px, 3vw, 32px);
}

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

.page-home .home-live__item {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: var(--r-md);
  background: linear-gradient(150deg, rgba(23, 63, 99, .55), rgba(13, 40, 67, .72));
  border: 1px solid var(--home-soft);
  transition: transform var(--t), border-color var(--t);
}

.page-home .home-live__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 3px;
  background: var(--cyan);
  opacity: .55;
}

.page-home .home-live__item:hover {
  transform: translateY(-2px);
  border-color: rgba(52, 245, 208, .45);
}

.page-home .home-live__pair {
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.page-home .home-live__team {
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
  overflow-wrap: anywhere;
}

.page-home .home-live__team:last-child {
  text-align: right;
}

.page-home .home-live__score {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1;
  color: var(--cyan);
}

.page-home .home-live__score--soon {
  color: var(--muted);
  font-size: 20px;
}

.page-home .home-live__score--final {
  color: var(--paper);
}

.page-home .home-live__colon {
  padding: 0 2px;
  opacity: .65;
}

.page-home .home-live__foot {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--home-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-home .home-live__time {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--yellow);
}

.page-home .home-live__tag {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--muted);
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid var(--home-soft);
}

.page-home .home-live__tag--live {
  color: var(--coral);
  border-color: rgba(255, 106, 69, .5);
  background: rgba(255, 106, 69, .08);
}

.page-home .home-live__tag--final {
  color: var(--muted);
}

/* ---------- 赛程时间轴 ---------- */
.page-home .home-schedule {
  position: relative;
  overflow: hidden;
  padding-top: clamp(44px, 6vw, 86px);
  padding-bottom: clamp(44px, 6vw, 86px);
  background: linear-gradient(180deg, var(--ink-900) 0%, var(--ink-800) 48%, var(--ink-900) 100%);
}

.page-home .home-schedule::before {
  content: "";
  position: absolute;
  top: -8%;
  right: -14%;
  width: min(620px, 60vw);
  height: min(620px, 60vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 183, 154, .16), transparent 66%);
  pointer-events: none;
}

.page-home .home-schedule__switch {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.page-home .home-schedule__grid {
  display: grid;
  gap: clamp(26px, 3.4vw, 44px);
}

.page-home .timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .timeline::before {
  content: "";
  position: absolute;
  left: 92px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, rgba(52, 245, 208, .7), rgba(23, 63, 99, .45) 62%, transparent);
}

.page-home .timeline__item {
  display: grid;
  grid-template-columns: 74px 20px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--home-soft);
}

.page-home .timeline__time {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 15px;
  color: var(--yellow);
  letter-spacing: .04em;
}

.page-home .timeline__dot {
  justify-self: center;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 210, 74, .14);
}

.page-home .timeline__body {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.page-home .timeline__league {
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
}

.page-home .timeline__match {
  font-size: 15px;
  color: var(--paper);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.page-home .timeline__match i {
  font-style: normal;
  color: var(--cyan-deep);
  padding: 0 6px;
  font-size: 12px;
  letter-spacing: .1em;
}

.page-home .home-schedule__visual {
  margin: 0;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-900);
  border: 1px solid var(--home-soft);
}

.page-home .home-schedule__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  opacity: .82;
}

.page-home .home-schedule__caption {
  padding: 16px 18px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  border-top: 1px solid var(--home-soft);
}

/* ---------- 资料索引 ---------- */
.page-home .home-directory {
  padding-top: clamp(44px, 6vw, 86px);
  padding-bottom: clamp(44px, 6vw, 86px);
}

.page-home .home-directory__map {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--home-soft);
}

.page-home .map-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 16px;
  padding: clamp(18px, 2.6vw, 28px) 0;
  border-bottom: 1px solid var(--home-soft);
  align-items: start;
}

.page-home .map-row__idx {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1;
  color: var(--cyan-deep);
  letter-spacing: -.02em;
}

.page-home .map-row__title {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -.01em;
}

.page-home .map-row__body {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

.page-home .map-row__meta {
  grid-column: 2;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--yellow);
}

.page-home .home-directory__hint {
  margin: clamp(26px, 3.4vw, 38px) 0 0;
  max-width: 66ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .home-directory__link {
  display: inline-block;
  margin-left: 6px;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 245, 208, .4);
  transition: border-color var(--t), color var(--t);
}

.page-home .home-directory__link:hover,
.page-home .home-directory__link:focus-visible {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

/* ---------- 收藏与赛前准备 ---------- */
.page-home .home-collect {
  padding-top: clamp(44px, 6vw, 86px);
  padding-bottom: clamp(44px, 6vw, 86px);
}

.page-home .home-collect__grid {
  align-items: center;
}

.page-home .home-collect__copy .prose {
  margin-bottom: 24px;
}

.page-home .home-collect__pair {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-collect__pairitem {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 13px 16px;
  border-radius: var(--r-md);
  background: var(--home-panel);
  border: 1px solid var(--home-soft);
}

.page-home .home-collect__pairnum {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-900);
  background: var(--cyan);
}

.page-home .home-collect__pairtext {
  font-size: 14px;
  line-height: 1.65;
  color: var(--paper);
}

.page-home .home-collect__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.page-home .home-collect__status {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--muted);
}

.page-home .home-collect__visual {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-800);
  border: 1px solid var(--home-soft);
}

.page-home .home-collect__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: .88;
}

.page-home .home-collect__caption {
  padding: 14px 18px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  border-top: 1px solid var(--home-soft);
}

/* ---------- 看球局 ---------- */
.page-home .home-community {
  padding-top: clamp(44px, 6vw, 86px);
  padding-bottom: clamp(44px, 6vw, 86px);
}

.page-home .home-community__banner {
  margin: 0 0 clamp(26px, 3.6vw, 44px);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--home-soft);
  background: var(--ink-900);
}

.page-home .home-community__banner img {
  display: block;
  width: 100%;
  height: clamp(180px, 30vw, 340px);
  object-fit: cover;
  opacity: .85;
}

.page-home .home-community__body {
  display: grid;
  gap: clamp(26px, 3.6vw, 44px);
}

.page-home .home-community__copy .lede {
  max-width: 56ch;
}

.page-home .home-community__text {
  margin: 16px 0 26px;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .home-community__stats {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.page-home .home-community__stat {
  padding: 20px 18px;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(14, 58, 51, .72), rgba(13, 40, 67, .72));
  border: 1px solid rgba(52, 245, 208, .18);
}

.page-home .home-community__stat dt {
  margin-bottom: 10px;
}

.page-home .home-community__stat dd {
  margin: 0;
}

/* ---------- 从这里开始 ---------- */
.page-home .home-start {
  padding-bottom: clamp(48px, 7vw, 96px);
}

.page-home .home-start__panel {
  position: relative;
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, var(--ink-800) 0%, var(--ink-900) 62%);
  border: 1px solid var(--home-soft);
  overflow: hidden;
}

.page-home .home-start__panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: .7;
}

.page-home .home-start__grid {
  margin-top: clamp(22px, 3vw, 32px);
  display: grid;
  gap: 14px;
}

.page-home .home-start__card {
  padding: 20px 18px 22px;
  border-radius: var(--r-md);
  background: rgba(6, 26, 46, .55);
  border: 1px solid var(--home-soft);
  transition: border-color var(--t), transform var(--t);
}

.page-home .home-start__card:hover {
  border-color: rgba(52, 245, 208, .4);
  transform: translateY(-2px);
}

.page-home .home-start__num {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--cyan-deep);
}

.page-home .home-start__title {
  margin: 12px 0 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--paper);
}

.page-home .home-start__desc {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}

.page-home .home-start__link {
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 245, 208, .38);
  transition: border-color var(--t), color var(--t);
}

.page-home .home-start__link:hover,
.page-home .home-start__link:focus-visible {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

/* ---------- 响应式 ---------- */
@media (min-width: 620px) {
  .page-home .home-live__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-start__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .page-home .map-row {
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 8px 22px;
  }

  .page-home .map-row__idx {
    grid-row: 1 / span 2;
    font-size: clamp(30px, 3.6vw, 42px);
  }

  .page-home .map-row__title {
    grid-column: 2;
  }

  .page-home .map-row__body {
    grid-column: 2;
    margin-top: 4px;
  }

  .page-home .map-row__meta {
    grid-column: 3;
    grid-row: 1;
    text-align: right;
  }

  .page-home .home-community__body {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: center;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .page-home .home-schedule__grid {
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    align-items: start;
  }
}

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

@media (max-width: 520px) {
  .page-home .timeline__item {
    grid-template-columns: 62px 16px minmax(0, 1fr);
  }

  .page-home .timeline::before {
    left: 78px;
  }

  .page-home .console__main {
    gap: 6px;
  }

  .page-home .console__team {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-live__item,
  .page-home .home-start__card {
    transition: none;
  }

  .page-home .home-live__item:hover,
  .page-home .home-start__card:hover {
    transform: none;
  }
}
<<<END>>>
