.page-home {
  --home-hero-green: #0D2B1F;
  --home-line: rgba(160, 176, 168, 0.18);
  --home-accent-soft: rgba(198, 255, 0, 0.14);
  --home-gradient-green: linear-gradient(135deg, #0D2B1F 0%, #166B36 100%);
  background: var(--bg-black);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== 首屏 hero 背景与布局 ===== */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  padding: 24px 0 36px;
  background: linear-gradient(180deg, var(--bg-black) 0%, #07100C 100%);
  overflow: hidden;
  border-bottom: 4px solid var(--accent);
}
.page-home .home-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-home .home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 30%;
  opacity: 0.22;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 15, 13, 0.94) 0%, rgba(10, 15, 13, 0.82) 55%, rgba(13, 43, 31, 0.55) 100%),
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(198, 255, 0, 0.025) 14px 16px);
}
.page-home .home-hero-container {
  padding-top: 12px;
  padding-bottom: 8px;
}

/* ===== 实时比分滚动条 ===== */
.page-home .home-scorebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 14px;
  background: rgba(13, 43, 31, 0.88);
  border: 1px solid rgba(198, 255, 0, 0.28);
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}
.page-home .scorebar__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: home-scorebar-scroll 34s linear infinite;
}
.page-home .home-scorebar:hover .scorebar__track {
  animation-play-state: paused;
}
.page-home .scorebar__group {
  display: flex;
  gap: 8px;
  padding-right: 8px;
}
.page-home .scorebar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px 7px 10px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-numeric);
  font-size: 0.82rem;
  line-height: 1.3;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.page-home .scorebar__item:hover,
.page-home .scorebar__item:focus-visible {
  background: rgba(198, 255, 0, 0.1);
  border-color: rgba(198, 255, 0, 0.45);
  outline: none;
}
.page-home .scorebar__sport {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--gray-green);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  background: rgba(160, 176, 168, 0.14);
}
.page-home .scorebar__score {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.page-home .scorebar__minute {
  color: var(--gray-green);
  font-size: 0.72rem;
}
.page-home .scorebar__card {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--gray-green);
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}
.page-home .scorebar__card--red {
  color: var(--orange);
  background: rgba(240, 78, 35, 0.14);
}
@keyframes home-scorebar-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== 首屏左右分屏 ===== */
.page-home .home-hero-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.page-home .home-live-panel {
  min-width: 0;
}
.page-home .home-frame {
  background: linear-gradient(160deg, rgba(13, 43, 31, 0.9) 0%, rgba(10, 15, 13, 0.96) 100%);
  border: 1px solid rgba(198, 255, 0, 0.18);
  border-radius: var(--radius-lg);
  padding: 18px 16px 16px;
  position: relative;
}
.page-home .home-frame .frame__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--home-line);
  margin-bottom: 14px;
}
.page-home .home-frame .frame__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.page-home .home-frame-note {
  font-size: 0.72rem;
  color: var(--gray-green);
}
.page-home .home-live-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-home .home-live-card {
  background: rgba(255, 255, 255, 0.035);
  border-radius: var(--radius-md);
  padding: 14px 14px 12px;
  border-left: 3px solid var(--accent);
  transition: background 0.2s ease;
}
.page-home .home-live-card:hover {
  background: rgba(198, 255, 0, 0.07);
}
.page-home .home-live-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.page-home .home-live-league {
  font-size: 0.72rem;
  color: var(--gray-green);
  letter-spacing: 0.04em;
}
.page-home .home-ring {
  width: 42px;
  height: 42px;
  transform: rotate(-90deg);
  flex-shrink: 0;
}
.page-home .home-ring__bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 4;
}
.page-home .home-ring__fg {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
}
.page-home .home-live-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.page-home .home-team {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  flex: 1;
}
.page-home .home-team:last-child {
  text-align: right;
}
.page-home .home-live-score {
  font-family: var(--font-numeric);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  animation: home-score-flash 1.8s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes home-score-flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.page-home .home-live-events {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 0.72rem;
  color: var(--gray-green);
}
.page-home .home-live-events li {
  position: relative;
  padding-left: 10px;
}
.page-home .home-live-events li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}
.page-home .home-hero-caption {
  margin: 18px 0 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.page-home .home-hero-caption img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.page-home .home-hero-caption figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 0.76rem;
  color: var(--white);
  background: rgba(10, 15, 13, 0.72);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  border-left: 3px solid var(--accent);
}

/* ===== 首屏右侧索引面板 ===== */
.page-home .home-index-panel {
  padding: 20px 18px;
  background: rgba(13, 43, 31, 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--home-line);
  position: relative;
  overflow: hidden;
}
.page-home .home-index-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(198, 255, 0, 0.16) 0%, transparent 68%);
  pointer-events: none;
}
.page-home .home-crumb {
  margin: 0 0 10px;
  font-size: 0.72rem;
  color: var(--gray-green);
  letter-spacing: 0.08em;
}
.page-home .home-hero-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.4vw, 3.15rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}
.page-home .home-hero-lead {
  margin: 0 0 18px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray-green);
}
.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.page-home .home-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  margin-bottom: 18px;
}
.page-home .home-quick-stats .stat {
  text-align: left;
}
.page-home .home-quick-stats .stat__number {
  font-family: var(--font-numeric);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.page-home .home-quick-stats .stat__label {
  font-size: 0.7rem;
  color: var(--gray-green);
}
.page-home .home-hot-list {
  margin-bottom: 16px;
}
.page-home .home-hot-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.page-home .home-hot-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.page-home .home-hot-links a {
  display: block;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  color: var(--gray-green);
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.page-home .home-hot-links a:hover {
  background: rgba(198, 255, 0, 0.1);
  color: var(--accent);
}
.page-home .home-index-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
}
.page-home .home-index-note a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(198, 255, 0, 0.5);
}
.page-home .home-index-note a:hover {
  color: var(--accent);
}
.page-home .home-index-dot {
  color: var(--gray);
}

/* ===== 最新赛果总汇 ===== */
.page-home .home-results {
  padding: 56px 0 48px;
  background: var(--bg-black);
  position: relative;
}
.page-home .home-results-head {
  align-items: flex-end;
  margin-bottom: 28px;
}
.page-home .home-section-sub {
  margin: 8px 0 0;
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--gray-green);
}
.page-home .home-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-home .home-result-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  border-left: 3px solid rgba(198, 255, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.page-home .home-result-card:hover {
  background: #252b27;
  transform: translateY(-2px);
}
.page-home .home-result-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--gray-green);
}
.page-home .home-result-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.9rem;
}
.page-home .home-result-teams span {
  flex: 1;
}
.page-home .home-result-teams span:last-child {
  text-align: right;
}
.page-home .home-result-score {
  font-family: var(--font-numeric);
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.page-home .home-result-stats {
  list-style: none;
  margin: 0;
  padding: 10px 0 0;
  border-top: 1px solid var(--home-line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 0.72rem;
  color: var(--gray-green);
}

/* ===== 开赛轮次安排 ===== */
.page-home .home-rounds {
  position: relative;
  padding: 56px 0 52px;
  background: linear-gradient(165deg, #0A0F0D 0%, var(--home-hero-green) 100%);
  overflow: hidden;
}
.page-home .home-rounds-bg {
  position: absolute;
  right: -140px;
  bottom: -30px;
  width: 480px;
  opacity: 0.16;
  pointer-events: none;
}
.page-home .home-rounds-bg img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.page-home .home-rounds-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}
.page-home .home-rounds-eyebrow,
.page-home .home-features-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 8px;
}
.page-home .home-rounds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-home .home-round-card {
  background: rgba(10, 15, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 16px;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.page-home .home-round-card:hover {
  border-color: rgba(198, 255, 0, 0.35);
  background: rgba(13, 43, 31, 0.82);
}
.page-home .home-round-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(198, 255, 0, 0.12);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}
.page-home .home-round-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--white);
  padding-right: 56px;
}
.page-home .home-round-line span {
  flex: 1;
}
.page-home .home-round-line span:last-child {
  text-align: right;
}
.page-home .home-round-score {
  font-family: var(--font-numeric);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.page-home .home-round-detail {
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--home-line);
  font-size: 0.76rem;
  color: var(--gray-green);
}
.page-home .home-rounds-footnote {
  margin: 22px 0 0;
  font-size: 0.78rem;
  color: var(--gray-green);
  line-height: 1.6;
}
.page-home .home-rounds-footnote a {
  color: var(--accent);
  text-underline-offset: 3px;
}

/* ===== 周末两场连播 ===== */
.page-home .home-weekend {
  padding: 56px 0 52px;
  background:
    radial-gradient(circle at 85% 20%, rgba(198, 255, 0, 0.13) 0%, transparent 42%),
    linear-gradient(180deg, #07100C 0%, var(--home-hero-green) 100%);
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}
.page-home .home-weekend-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.page-home .home-weekend-copy h2 {
  margin: 0 0 14px;
}
.page-home .home-weekend-copy p {
  margin: 0 0 18px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-green);
}
.page-home .home-weekend-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  border: 1px solid rgba(198, 255, 0, 0.4);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  margin-bottom: 14px;
}
.page-home .home-weekend-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.page-home .home-weekend-stop {
  background: rgba(10, 15, 13, 0.7);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.page-home .home-weekend-stop::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}
.page-home .home-weekend-day {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.page-home .home-weekend-time {
  font-family: var(--font-numeric);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
}
.page-home .home-weekend-match {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.page-home .home-weekend-note {
  font-size: 0.76rem;
  color: var(--gray-green);
}
.page-home .home-weekend-status {
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.page-home .home-weekend-arrow {
  text-align: center;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
}

/* ===== 近期战绩归档 ===== */
.page-home .home-records {
  padding: 56px 0 48px;
  background: var(--bg-black);
}
.page-home .home-records-head {
  align-items: flex-end;
  margin-bottom: 28px;
}
.page-home .home-records-list {
  display: grid;
  gap: 12px;
}
.page-home .home-record-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  background: rgba(30, 30, 30, 0.85);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  border-left: 3px solid var(--home-line);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.page-home .home-record-row:hover {
  background: rgba(38, 46, 42, 0.9);
  border-left-color: var(--accent);
}
.page-home .home-record-star {
  font-size: 1.15rem;
  color: var(--accent);
  line-height: 1;
}
.page-home .home-record-team {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  white-space: nowrap;
}
.page-home .home-record-dots {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
}
.page-home .home-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.page-home .home-dot--win {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(198, 255, 0, 0.4);
}
.page-home .home-dot--draw {
  background: #E6C84C;
}
.page-home .home-dot--loss {
  background: var(--orange);
}
.page-home .home-record-summary {
  font-family: var(--font-numeric);
  font-size: 0.8rem;
  color: var(--gray-green);
  grid-column: 2 / 3;
  white-space: nowrap;
}
.page-home .home-record-link {
  grid-column: 3 / 4;
  text-align: right;
  font-size: 0.76rem;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.page-home .home-record-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== 平台服务特性 ===== */
.page-home .home-features {
  padding: 56px 0 52px;
  background:
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(198, 255, 0, 0.02) 16px 18px),
    linear-gradient(180deg, #0A0F0D 0%, #0D2B1F 100%);
}
.page-home .home-features-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.page-home .home-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}
.page-home .home-feature-card {
  padding: 18px 16px;
  background: rgba(10, 15, 13, 0.72);
  border-radius: var(--radius-md);
  border-top: 2px solid rgba(198, 255, 0, 0.22);
}
.page-home .home-feature-num {
  font-family: var(--font-numeric);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(198, 255, 0, 0.28);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.page-home .home-feature-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
}
.page-home .home-feature-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--gray-green);
}
.page-home .home-features-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.page-home .home-features-media {
  margin: 0;
}
.page-home .home-features-media img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 1px solid var(--home-line);
}

/* ===== 信任条 ===== */
.page-home .home-trust {
  padding: 38px 0 42px;
  background: #07100C;
  border-top: 1px solid var(--home-line);
}
.page-home .home-trust-inner {
  display: grid;
  gap: 20px;
}
.page-home .home-trust-text p {
  margin: 10px 0 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--gray-green);
}
.page-home .home-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.76rem;
  color: var(--gray-green);
}
.page-home .home-trust-list li {
  padding: 5px 10px;
  background: rgba(160, 176, 168, 0.07);
  border-radius: var(--radius-pill);
}
.page-home .home-trust-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray-green);
}
.page-home .home-trust-contact a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 255, 0, 0.4);
}
.page-home .home-trust-contact a:hover {
  color: var(--accent);
}

/* ===== 通用按钮与筛选在页面内的姿态 ===== */
.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .filter-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 15, 13, 0.7);
  color: var(--gray-green);
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
}
.page-home .filter-btn[aria-pressed="true"] {
  background: var(--accent);
  color: #0A0F0D;
  font-weight: 700;
  border-color: var(--accent);
}
.page-home .filter-btn:hover {
  border-color: rgba(198, 255, 0, 0.5);
  color: var(--white);
}

/* ===== 响应式：平板 768px ===== */
@media (min-width: 768px) {
  .page-home .home-hero {
    padding-top: 32px;
    padding-bottom: 52px;
  }
  .page-home .home-live-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-live-card {
    padding: 16px 14px 14px;
  }
  .page-home .home-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .page-home .home-rounds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-weekend-track {
    flex-direction: row;
    align-items: stretch;
    gap: 18px;
  }
  .page-home .home-weekend-arrow {
    align-self: center;
    font-size: 2rem;
  }
  .page-home .home-weekend-stop {
    flex: 1;
  }
  .page-home .home-record-row {
    grid-template-columns: auto 1.2fr 1.4fr 1fr auto;
  }
  .page-home .home-record-summary {
    grid-column: auto;
    text-align: right;
  }
  .page-home .home-record-link {
    grid-column: auto;
  }
  .page-home .home-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-trust-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* ===== 桌面端：左7右3分屏 ===== */
@media (min-width: 1024px) {
  .page-home .home-hero-cols {
    grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
    gap: 28px;
  }
  .page-home .home-hero-media img {
    opacity: 0.4;
  }
  .page-home .home-index-panel {
    position: sticky;
    top: 90px;
    padding: 24px 22px;
  }
  .page-home .home-results-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .page-home .home-result-card:nth-child(5) {
    grid-column: span 2;
  }
  .page-home .home-result-card:nth-child(6) {
    grid-column: 3 / -1;
  }
  .page-home .home-rounds-intro {
    flex-direction: row;
    align-items: flex-end;
  }
  .page-home .home-rounds-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .page-home .home-round-card--football:nth-child(2) {
    transform: translateY(14px);
  }
  .page-home .home-round-card--football:nth-child(3) {
    transform: translateY(8px);
  }
  .page-home .home-round-card--basketball:nth-child(5) {
    transform: translateY(12px);
  }
  .page-home .home-round-card--basketball:nth-child(6) {
    transform: translateY(4px);
  }
  .page-home .home-round-card--tennis {
    grid-column: span 2;
  }
  .page-home .home-weekend-inner {
    grid-template-columns: 1.1fr 1.4fr;
    align-items: center;
  }
  .page-home .home-features-inner {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 40px;
  }
  .page-home .home-features-media {
    position: sticky;
    top: 90px;
  }
  .page-home .home-features-media img {
    max-height: 680px;
  }
  .page-home .home-trust-inner {
    grid-template-columns: 1.2fr 1fr 0.9fr;
    gap: 28px;
  }
}

/* ===== 辅助可见性 ===== */
.page-home .is-hidden {
  display: none !important;
}
.page-home a:focus-visible,
.page-home button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.page-home img {
  max-width: 100%;
  height: auto;
}
@media (prefers-reduced-motion: reduce) {
  .page-home .scorebar__track,
  .page-home .home-live-score {
    animation: none !important;
  }
  .page-home * {
    transition: none !important;
  }
}
