.page-home {
  --home-panel-radius: 16px;
  --home-card-border: rgba(0, 229, 255, .22);
  --home-soft-text: rgba(255, 255, 255, .62);
}
.page-home img {
  max-width: 100%;
}

/* ========== 01 封面首屏 ========== */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 420px at 85% -20%, rgba(0, 229, 255, .16), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(255, 90, 0, .09), transparent 55%),
    var(--navy-900);
  color: var(--white);
  padding: 40px 0 56px;
}
.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
}
.page-home .home-hero__bg-num {
  position: absolute;
  z-index: 0;
  top: 36px;
  right: -16px;
  font-family: var(--font-mono);
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.06em;
  color: rgba(0, 229, 255, .08);
  pointer-events: none;
  user-select: none;
}
.page-home .home-hero__line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .65;
}
.page-home .home-hero__crumbs {
  margin-bottom: 28px;
}
.page-home .home-hero__crumbs .breadcrumbs__item,
.page-home .home-hero__crumbs .breadcrumbs__current {
  color: rgba(255, 255, 255, .56);
}
.page-home .home-hero__crumbs .breadcrumbs__current {
  color: var(--cyan-500);
}
.page-home .home-hero__index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--cyan-500);
  margin-bottom: 18px;
}
.page-home .home-hero__index::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--cyan-500);
  opacity: .6;
}
.page-home .home-hero__tagline {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--home-soft-text);
}
.page-home .home-hero__title {
  margin: 0 0 28px;
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: .02em;
  color: var(--white);
}
.page-home .home-hero__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 6px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--cyan-500), var(--orange-500));
  border-radius: 0 4px 4px 0;
}
.page-home .home-hero__lead {
  max-width: 720px;
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .78);
}
.page-home .home-hero__points {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-home .home-hero__points li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .88);
}
.page-home .home-hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--cyan-500);
  box-shadow: 0 0 12px rgba(0, 229, 255, .65);
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-hero__actions .btn {
  animation: homeRiseIn .55s cubic-bezier(.2, .8, .2, 1) both;
}
.page-home .home-hero__actions .btn:nth-child(2) {
  animation-delay: .06s;
}
.page-home .home-hero__actions .btn:nth-child(3) {
  animation-delay: .12s;
}
.page-home .home-hero__actions .btn:nth-child(4) {
  animation-delay: .18s;
}
@keyframes homeRiseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== 章节头共用 ========== */
.page-home .home-sec-head {
  margin-bottom: 28px;
  border-top: 2px solid rgba(0, 229, 255, .35);
  padding-top: 16px;
}
.page-home .home-sec-head__index {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--cyan-500);
  margin-bottom: 8px;
}
.page-home .home-sec-head__title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: inherit;
}
.page-home .home-sec-head__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .6);
}
.page-home .home-sec-head--light {
  border-top-color: var(--cyan-500);
  color: var(--ink-800);
}
.page-home .home-sec-head--light .home-sec-head__desc {
  color: var(--gray-500);
}

/* ========== 02 今日焦点赛事 ========== */
.page-home .home-matches {
  position: relative;
  background: var(--navy-800);
  color: var(--white);
  padding: 48px 0 56px;
  border-top: 1px solid rgba(0, 229, 255, .18);
}
.page-home .home-matches__panel {
  position: relative;
  border: 1px solid rgba(0, 229, 255, .2);
  border-radius: var(--home-panel-radius);
  overflow: hidden;
  background: rgba(10, 17, 40, .72);
  padding: 24px;
  margin-bottom: 24px;
}
.page-home .home-matches__panel-bg,
.page-home .home-stats__panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .home-matches__panel-bg {
  opacity: .28;
}
.page-home .home-matches__pulse {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .7);
}
.page-home .home-matches__pulse span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  animation: homePing 2s ease-out infinite;
}
@keyframes homePing {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 196, 140, .5);
  }
  70%,
  100% {
    box-shadow: 0 0 0 8px rgba(0, 196, 140, 0);
  }
}
.page-home .home-matches__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-home .home-match {
  background: rgba(10, 17, 40, .72);
  border: 1px solid var(--home-card-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-home .home-match__league {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .62);
}
.page-home .home-match__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.page-home .home-match__team {
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.page-home .home-match__score {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--cyan-500);
  white-space: nowrap;
  animation: homeScorePulse 3s ease-in-out infinite;
}
@keyframes homeScorePulse {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(0, 229, 255, 0);
  }
  50% {
    text-shadow: 0 0 14px rgba(0, 229, 255, .5);
  }
}
.page-home .home-match__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(255, 255, 255, .18);
  padding-top: 12px;
}
.page-home .home-match__time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}
.page-home .tag--green {
  animation: homeLivePulse 2s ease-in-out infinite;
}
@keyframes homeLivePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
}
.page-home .home-matches__more {
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.page-home .home-matches__note {
  margin: 10px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

/* ========== 03 焕新版更新摘要 ========== */
.page-home .home-update {
  background: var(--gray-50);
  color: var(--ink-800);
  padding: 48px 0 56px;
}
.page-home .home-update__layout {
  display: block;
}
.page-home .home-update__timeline {
  margin-bottom: 8px;
}
.page-home .home-update__step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-100);
}
.page-home .home-update__step:first-child {
  border-top: 1px solid var(--border-100);
}
.page-home .home-update__step-no {
  font-family: var(--font-mono);
  font-size: 32px;
  line-height: 1.2;
  color: var(--cyan-500);
  flex: 0 0 48px;
}
.page-home .home-update__step-body h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-800);
}
.page-home .home-update__step-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-500);
}
.page-home .home-update__figure {
  margin: 24px 0 0;
}
.page-home .home-update__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border-100);
  box-shadow: var(--shadow-card);
}
.page-home .home-update__figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--gray-500);
}

/* ========== 04 专家专栏推荐 ========== */
.page-home .home-experts {
  background:
    radial-gradient(900px 320px at 100% 0%, rgba(0, 229, 255, .1), transparent 60%),
    var(--navy-900);
  color: var(--white);
  padding: 48px 0 56px;
  border-top: 1px solid rgba(255, 90, 0, .2);
}
.page-home .home-experts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
}
.page-home .home-expert-card {
  background: var(--navy-800);
  border: 1px solid rgba(0, 229, 255, .18);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 12px 36px rgba(10, 17, 40, .18);
}
.page-home .home-expert-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
}
.page-home .home-expert-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .66);
}
.page-home .home-expert-card__link {
  color: var(--cyan-500);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.page-home .home-experts__footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 28px;
}
.page-home .home-experts__figure {
  margin: 0;
}
.page-home .home-experts__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(0, 229, 255, .2);
}
.page-home .home-experts__figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}
.page-home .home-experts__edition {
  background: rgba(0, 229, 255, .05);
  border: 1px dashed rgba(0, 229, 255, .35);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.page-home .home-experts__edition-label {
  font-size: 13px;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .6);
}
.page-home .home-experts__edition-num {
  font-family: var(--font-mono);
  font-size: 40px;
  line-height: 1.2;
  color: var(--cyan-500);
}
.page-home .home-experts__edition p {
  margin: 0 0 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
}

/* ========== 05 数据指标条 ========== */
.page-home .home-stats {
  background:
    radial-gradient(800px 300px at 100% 0%, rgba(255, 90, 0, .12), transparent 55%),
    var(--navy-800);
  color: var(--white);
  padding: 48px 0 56px;
  border-top: 1px solid rgba(0, 229, 255, .18);
}
.page-home .home-stats__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--home-panel-radius);
  background: rgba(10, 17, 40, .6);
  padding: 28px 20px;
  margin-bottom: 16px;
}
.page-home .home-stats__panel-bg {
  opacity: .22;
}
.page-home .home-stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.page-home .home-stat {
  text-align: center;
  padding: 20px 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(10, 17, 40, .5);
}
.page-home .home-stat__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--cyan-500);
}
.page-home .home-stat__suffix {
  margin-left: 4px;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--cyan-500);
}
.page-home .home-stat__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .65);
}
.page-home .home-stats__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  text-align: center;
}

/* ========== 平板与桌面 ========== */
@media (min-width: 700px) {
  .page-home .home-hero {
    padding: 64px 0 80px;
  }
  .page-home .home-hero__title {
    font-size: 76px;
  }
  .page-home .home-hero__points {
    flex-direction: row;
    gap: 32px;
  }
  .page-home .home-matches__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-matches__panel {
    padding: 28px;
  }
  .page-home .home-update__layout {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 40px;
    align-items: center;
  }
  .page-home .home-update__figure {
    margin: 0;
  }
  .page-home .home-experts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-experts__footer {
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
  }
  .page-home .home-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .home-stats__panel {
    padding: 36px 24px;
  }
}

@media (min-width: 1000px) {
  .page-home .home-hero {
    padding: 88px 0 104px;
  }
  .page-home .home-hero__title {
    font-size: 96px;
  }
  .page-home .home-hero__lead {
    font-size: 18px;
    max-width: 760px;
  }
  .page-home .home-hero__bg-num {
    font-size: 300px;
    right: -20px;
  }
  .page-home .home-hero__points li {
    font-size: 15px;
  }
  .page-home .home-matches {
    padding: 64px 0 72px;
  }
  .page-home .home-update {
    padding: 64px 0 72px;
  }
  .page-home .home-experts {
    padding: 64px 0 72px;
  }
  .page-home .home-stats {
    padding: 64px 0 72px;
  }
  .page-home .home-sec-head {
    margin-bottom: 36px;
  }
  .page-home .home-sec-head__title {
    font-size: 40px;
  }
}
