.page-home {
  --home-hero-speed: 0.8s;
  --home-ornament-height: 6px;
  --home-radius-lg: 32px;
  --home-radius-md: 20px;
  --home-gap: clamp(48px, 6vw, 88px);
}

/* ========= 面包屑 ========= */
.page-home .breadcrumb {
  position: relative;
  z-index: 3;
  padding-top: 24px;
  padding-bottom: 0;
  font-size: 0.875rem;
  color: var(--color-text-dim);
}
.page-home .breadcrumb a {
  color: var(--color-text-dim);
  text-decoration-color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
.page-home .breadcrumb a:hover {
  color: var(--color-lime);
  text-decoration-color: var(--color-lime);
}
.page-home .breadcrumb__sep {
  margin: 0 0.4em;
  opacity: 0.6;
}

/* ========= 首屏 Hero ========= */
.page-home .home-hero {
  position: relative;
  padding: 0;
  margin-bottom: var(--home-gap);
  overflow: hidden;
}
.page-home .home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.page-home .home-hero__media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 39, 0.25) 0%, rgba(10, 14, 39, 0.7) 60%, var(--color-bg) 100%),
    linear-gradient(90deg, rgba(5, 7, 15, 0.85) 0%, rgba(10, 14, 39, 0.3) 100%);
}
.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(60px, 10vh, 120px);
  padding-bottom: clamp(80px, 12vh, 140px);
}
.page-home .home-hero__title {
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0.2em 0 0.3em;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 40px rgba(198, 255, 0, 0.15);
}
.page-home .home-hero__title::after {
  content: '';
  display: block;
  height: var(--home-ornament-height);
  background: linear-gradient(90deg, var(--color-lime) 0%, var(--color-orange) 80%, transparent 120%);
  border-radius: var(--radius-pill);
  margin-top: 12px;
  width: 72%;
  animation: home-lime-grow 1.2s var(--ease) both;
}
@keyframes home-lime-grow {
  from { width: 0; opacity: 0; }
  to { width: 72%; opacity: 1; }
}
.page-home .home-hero__lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}
.page-home .home-hero__lead strong {
  color: var(--color-white);
  background: linear-gradient(90deg, rgba(198, 255, 0, 0.2), rgba(198, 255, 0, 0.02));
  padding: 0.15em 0.3em;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(48px, 8vh, 72px);
}
.page-home .home-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  position: relative;
  z-index: 1;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.page-home .home-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-home .home-hero__stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-lime);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.page-home .home-hero__stat-label {
  font-size: 0.875rem;
  color: var(--color-text-dim);
}
.page-home .home-hero__speedline {
  position: absolute;
  right: -10%;
  top: 18%;
  width: 45%;
  height: 120px;
  background:
    radial-gradient(closest-side, rgba(198, 255, 0, 0.4) 0%, transparent 100%),
    repeating-linear-gradient(-55deg, transparent 0 4px, rgba(198, 255, 0, 0.18) 4px 6px, transparent 6px 24px);
  filter: blur(0.4px);
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 720px) {
  .page-home .home-hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero__inner {
    padding-top: clamp(80px, 14vh, 150px);
    padding-bottom: 120px;
  }
  .page-home .home-hero__lead {
    max-width: 680px;
  }
}

/* ========= 通用章节标题 ========= */
.page-home .home-section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
.page-home .home-section-title .text-lime {
  color: var(--color-lime);
}

/* ========= 01 · 全站赛事订阅对比评测 ========= */
.page-home .home-compare {
  padding: 0;
}
.page-home .home-compare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.page-home .home-compare__content {
  max-width: 560px;
}
.page-home .home-compare__feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  gap: 16px;
}
.page-home .home-compare__feature-list li {
  padding-left: 24px;
  position: relative;
  color: var(--color-text-dim);
  line-height: 1.7;
}
.page-home .home-compare__feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--color-lime);
  transform: rotate(45deg);
}
.page-home .home-compare__visual {
  position: relative;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.page-home .home-compare__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}
.page-home .home-compare__chart {
  position: absolute;
  inset: auto 20px 20px 20px;
  background: rgba(5, 7, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.page-home .home-compare__chart-row {
  display: grid;
  grid-template-columns: 72px 1fr 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}
.page-home .home-compare__chart-row:last-child {
  margin-bottom: 0;
}
.page-home .home-compare__chart-label {
  color: var(--color-text-dim);
}
.page-home .home-compare__chart-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.page-home .home-compare__chart-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-lime), var(--color-orange));
  border-radius: var(--radius-pill);
}
.page-home .home-compare__chart-value {
  text-align: right;
  font-weight: 700;
  color: var(--color-white);
  font-variant-numeric: tabular-nums;
}

@media (min-width: 960px) {
  .page-home .home-compare__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
  }
}

/* ========= 02 · 周末主场连场指南 ========= */
.page-home .home-weekend {
  position: relative;
  padding: 0;
  padding: clamp(72px, 10vw, 120px) 0;
}
.page-home .home-weekend__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-home .home-weekend__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  transform: scale(1.05);
}
.page-home .home-weekend__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-bg-deep) 0%, rgba(5, 7, 15, 0.35) 40%, rgba(5, 7, 15, 0.35) 60%, var(--color-bg-deep) 100%);
}
.page-home .home-weekend .container {
  position: relative;
  z-index: 1;
}
.page-home .home-weekend__header {
  max-width: 700px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.page-home .home-weekend__timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
.page-home .home-weekend__day {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--home-radius-lg);
  padding: clamp(24px, 4vw, 40px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.page-home .home-weekend__day::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-lime));
  border-radius: 0 0 0 var(--radius-pill);
}
.page-home .home-weekend__day:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 255, 0, 0.3);
}
.page-home .home-weekend__day-title {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--color-white);
}
.page-home .home-weekend__day-title .index-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-lime);
}
.page-home .home-weekend__match {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  margin: 0 0 8px;
  line-height: 1.3;
}
.page-home .home-weekend__meta {
  font-size: 0.875rem;
  color: var(--color-text-dim);
  font-variant-numeric: tabular-nums;
  margin-bottom: 20px;
}
.page-home .home-weekend__day .link-arrow {
  font-size: 0.875rem;
}
.page-home .home-weekend__connector {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
}
.page-home .home-weekend__connector span {
  display: block;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-lime), var(--color-orange));
  border-radius: var(--radius-pill);
}
.page-home .home-weekend__connector::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 8px rgba(198, 255, 0, 0.5);
}
.home-weekend__connector {
  position: relative;
}
.home-weekend__connector span {
  position: absolute;
}

@media (min-width: 760px) {
  .page-home .home-weekend__timeline {
    grid-template-columns: 1fr 48px 1fr;
    align-items: center;
  }
  .page-home .home-weekend__connector {
    height: 2px;
    width: 100%;
  }
  .page-home .home-weekend__connector span {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-orange));
  }
  .page-home .home-weekend__connector::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* ========= 03 · 赛果专栏速览 ========= */
.page-home .home-results {
  padding: 0;
}
.page-home .home-results__header {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.page-home .home-results__scoreboard {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.92) 0%, rgba(10, 14, 39, 0.98) 70%);
  border-radius: var(--home-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(32px, 5vw, 56px);
  max-width: 860px;
  box-shadow: var(--shadow);
}
.page-home .home-results__match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.page-home .home-results__team {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  text-align: center;
}
.page-home .home-results__score {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-lime) 30%, var(--color-orange-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.page-home .home-results__possession {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}
.page-home .home-results__possession-label {
  font-size: 0.875rem;
  color: var(--color-text-dim);
  margin-bottom: 12px;
}
.page-home .home-results__possession-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 28px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 2px;
}
.page-home .home-results__possession-home {
  background: linear-gradient(90deg, var(--color-lime) 0%, #a3d600 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 16px;
  color: var(--color-bg-deep);
  border-radius: var(--radius-pill) 2px 2px var(--radius-pill);
  font-variant-numeric: tabular-nums;
  transition: opacity 0.3s var(--ease);
}
.page-home .home-results__possession-away {
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 16px;
  color: var(--color-white);
  border-radius: 2px var(--radius-pill) var(--radius-pill) 2px;
  font-variant-numeric: tabular-nums;
}
.page-home .home-results__possession-home:hover {
  opacity: 0.85;
}

/* ========= 04 · 排名查询中心入口 ========= */
.page-home .home-ranking {
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
}
.page-home .home-ranking__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.page-home .home-ranking__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 40px;
  align-items: center;
}
.page-home .home-ranking__visual {
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  max-width: 440px;
}
.page-home .home-ranking__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .home-ranking__table-wrap {
  border-radius: var(--home-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
}
.page-home .home-ranking__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.page-home .home-ranking__item {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.page-home .home-ranking__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}
.page-home .home-ranking__item--top {
  background: linear-gradient(90deg, rgba(255, 90, 0, 0.22), rgba(255, 138, 0, 0.08));
  border: 1px solid rgba(255, 90, 0, 0.4);
}
.page-home .home-ranking__pos {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--color-text-dim);
  font-variant-numeric: tabular-nums;
}
.page-home .home-ranking__item--top .home-ranking__pos {
  color: var(--color-orange);
}
.page-home .home-ranking__name {
  font-weight: 600;
}
.page-home .home-ranking__points {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--color-lime);
}
.page-home .home-ranking__gd {
  font-variant-numeric: tabular-nums;
  color: var(--color-text-dim);
  font-size: 0.875rem;
  width: 48px;
  text-align: right;
}

@media (min-width: 760px) {
  .page-home .home-ranking__content {
    grid-template-columns: 1fr 1.4fr;
  }
}

@media (min-width: 1024px) {
  .page-home .home-ranking__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
  }
  .page-home .home-ranking__content {
    grid-template-columns: 1fr;
  }
}

/* ========= 05 · 数据实力与信任背书 ========= */
.page-home .home-trust {
  padding: 0;
}
.page-home .home-trust__title {
  max-width: 560px;
}
.page-home .home-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  margin: 48px 0;
}
.page-home .home-trust__item {
  border-left: 3px solid var(--color-line);
  padding-left: 20px;
  transition: border-color 0.3s var(--ease);
}
.page-home .home-trust__item:hover {
  border-color: var(--color-lime);
}
.page-home .home-trust__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--color-lime) 20%, var(--color-orange) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.page-home .home-trust__desc {
  font-size: 0.9375rem;
  color: var(--color-text-dim);
}
.page-home .home-trust__note {
  max-width: 760px;
  color: var(--color-text-dim);
  line-height: 1.8;
  border-top: 1px solid var(--color-line);
  padding-top: 32px;
  margin-bottom: 32px;
}
.page-home .home-trust__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media (min-width: 720px) {
  .page-home .home-trust__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========= 链接与通用工具 ========= */
.page-home .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.page-home .link-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.page-home .link-arrow:hover {
  color: var(--color-white);
  gap: 12px;
}
.page-home .link-arrow--lime {
  color: var(--color-lime);
}
.page-home .link-arrow--lime:hover {
  color: var(--color-white);
}

/* 减少动效 */
@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__title::after {
    animation: none;
    width: 72%;
  }
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ========= 导航指示 & 动作按钮微调 ========= */
.page-home .btn--dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-white);
}
.page-home .btn--dark:hover {
  background: rgba(255, 255, 255, 0.14);
}
.page-home .btn {
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.page-home .btn:hover {
  transform: translateY(-2px);
}
.page-home .btn--lime {
  box-shadow: 0 8px 24px rgba(198, 255, 0, 0.18);
}
.page-home .btn--lime:hover {
  box-shadow: 0 12px 32px rgba(198, 255, 0, 0.28);
  background: #d4ff1a;
}

.page-home {
  --color-white: var(--color-text);
}
