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

/* 实时赛况滚动条 */
.page-home .home-ticker {
  display: flex;
  align-items: stretch;
  background: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
  border-bottom: 1px solid var(--color-red);
  position: relative;
  z-index: 3;
}
.page-home .home-ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  white-space: nowrap;
}
.page-home .home-ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: home-ticker-scroll 36s linear infinite;
}
.page-home .home-ticker:hover .home-ticker-track,
.page-home .home-ticker:focus-within .home-ticker-track {
  animation-play-state: paused;
}
.page-home .home-ticker-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.6rem 1rem;
}
.page-home .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--color-white);
  white-space: nowrap;
}
.page-home .ticker-sport {
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  font-size: 0.75rem;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.page-home .ticker-item strong {
  font-weight: 700;
  color: var(--color-red-tint);
  font-variant-numeric: tabular-nums;
}
@keyframes home-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* 左右分屏 */
.page-home .home-shell {
  display: grid;
  grid-template-columns: 1fr;
}

/* 品牌叙事左栏 */
.page-home .home-brand-rail {
  background: var(--color-black);
  color: var(--color-white);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-bottom: 4px solid var(--color-red);
}
.page-home .home-brand-rail h1 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.page-home .home-h1-sep {
  color: var(--color-red);
  font-weight: 400;
  margin: 0 0.2em;
}
.page-home .home-brand-statement {
  color: var(--color-silver);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
  max-width: 24em;
}
.page-home .home-rail-index {
  display: grid;
  gap: 0.4rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}
.page-home .home-rail-index a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--color-white);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9375rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.page-home .home-rail-index a:hover {
  color: var(--color-red);
  border-color: var(--color-red);
}
.page-home .rail-index-num {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--color-red);
  font-variant-numeric: tabular-nums;
}
.page-home .home-rail-quote {
  background: var(--color-deep);
  padding: 1rem 1.25rem;
  clip-path: polygon(0 0, 96% 0, 100% 8%, 100% 100%, 0 100%);
}
.page-home .home-rail-quote p {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-white);
}
.page-home .home-rail-link {
  color: var(--color-blue);
  font-size: 0.875rem;
  text-decoration: none;
  font-weight: 500;
}
.page-home .home-rail-link:hover {
  text-decoration: underline;
}

/* 右侧主内容区 */
.page-home .home-main {
  background: var(--color-white);
  min-width: 0;
}

/* 首屏 Hero */
.page-home .home-hero {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem) var(--content-pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(160deg, var(--color-black) 0%, var(--color-black) 62%, var(--color-red) 62%, var(--color-red) 100%);
  color: var(--color-white);
}
.page-home .home-hero-copy {
  position: relative;
  z-index: 1;
}
.page-home .home-hero-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin: 0 0 0.85rem;
  color: var(--color-white);
  font-weight: 500;
}
.page-home .home-hero h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}
.page-home .home-hero-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin: 0 0 1.25rem;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.92);
}
.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.page-home .home-hero-link {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 0.6rem 1rem;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.page-home .home-hero-link:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
}
.page-home .home-hero-media {
  position: relative;
  z-index: 1;
  margin: 0;
}
.page-home .home-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 10% 100%);
}

/* 通用区块标题 */
.page-home .home-section-title {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}
.page-home .home-section-index {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-red);
  margin: 0.35rem 0 0;
  line-height: 1;
  border: 1px solid var(--color-red);
  padding: 0.3rem 0.5rem;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
  flex-shrink: 0;
}
.page-home .home-section-title h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.page-home .home-section-desc {
  color: var(--color-gray);
  font-size: 0.875rem;
  margin: 0.35rem 0 0;
  line-height: 1.6;
}

/* 今日焦点战索引 */
.page-home .home-matches {
  padding: clamp(2rem, 4vw, 3.5rem) var(--content-pad);
  background: var(--color-white);
}
.page-home .home-match-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 0 2rem;
}
.page-home .home-match-card {
  background: var(--color-white);
  border: 1px solid var(--color-silver);
  padding: 1.25rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.page-home .home-match-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 4px;
  background: var(--color-red);
}
.page-home .home-match-card:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 var(--color-red-tint);
  border-color: var(--color-red);
}
.page-home .home-match-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.page-home .home-match-fav {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0.25rem 0.5rem;
  color: var(--color-gray);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  cursor: pointer;
  border-radius: 2px;
  transition: color 0.2s ease, background 0.2s ease;
}
.page-home .home-match-fav:hover,
.page-home .home-match-fav[aria-pressed="true"] {
  color: var(--color-red);
  background: var(--color-red-tint);
}
.page-home .home-match-time {
  font-family: var(--font-ui);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  font-variant-numeric: tabular-nums;
  color: var(--color-black);
}
.page-home .home-match-teams {
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--color-black);
}
.page-home .home-match-teams span {
  color: var(--color-gray);
  font-size: 0.75rem;
  margin: 0 0.25rem;
}
.page-home .home-match-score {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-red);
  margin: 0;
}

/* 赛讯覆盖条 */
.page-home .home-match-coverage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--color-deep);
  color: var(--color-white);
  padding: 1.25rem;
}
.page-home .home-match-coverage-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.page-home .home-match-coverage-copy p {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.92);
}
.page-home .home-coverage-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--color-white);
}
.page-home .home-coverage-link {
  color: var(--color-amber);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
}
.page-home .home-coverage-link:hover {
  text-decoration: underline;
}

/* 爱体育优势数据 */
.page-home .home-stats {
  padding: clamp(2rem, 4vw, 3.5rem) var(--content-pad);
  background: var(--color-black);
  color: var(--color-white);
}
.page-home .home-stats .home-section-desc {
  color: var(--color-silver);
}
.page-home .home-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 1.5rem;
}
.page-home .home-stat {
  background: var(--color-deep);
  padding: 1.25rem 1rem;
  border-top: 3px solid var(--color-red);
  min-width: 0;
}
.page-home .home-stat-num {
  font-family: var(--font-ui);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  font-variant-numeric: tabular-nums;
  color: var(--color-white);
  line-height: 1.1;
}
.page-home .home-stat-label {
  font-size: 0.8125rem;
  color: var(--color-silver);
  line-height: 1.6;
  margin: 0;
}
.page-home .home-stats-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--color-deep);
  padding: 1.25rem;
}
.page-home .home-stats-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-home .home-stats-media p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-white);
}

/* 下载与多端适配 */
.page-home .home-download {
  padding: clamp(2rem, 4vw, 3.5rem) var(--content-pad);
  background: var(--color-white);
}
.page-home .home-download-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: var(--color-red-tint);
  border: 1px solid var(--color-red);
  padding: 1.5rem;
}
.page-home .home-download-copy ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.page-home .home-download-copy li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-black);
}
.page-home .home-download-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--color-red);
  transform: skewX(-20deg);
}
.page-home .home-download-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 最新内容观察 */
.page-home .home-insights {
  padding: clamp(2rem, 4vw, 3.5rem) var(--content-pad);
  background: var(--color-white);
}
.page-home .home-insights-all {
  margin-left: auto;
  color: var(--color-blue);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}
.page-home .home-insights-all:hover {
  text-decoration: underline;
}
.page-home .home-insights-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.page-home .home-insight-card {
  background: var(--color-white);
  border: 1px solid var(--color-silver);
  border-top: 4px solid var(--color-black);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .home-insight-card:hover {
  border-color: var(--color-red);
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 var(--color-red-tint);
}
.page-home .home-insight-card h3 {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
  font-family: var(--font-serif);
  font-weight: 900;
}
.page-home .home-insight-card h3 a {
  color: var(--color-black);
  text-decoration: none;
}
.page-home .home-insight-card h3 a:hover {
  color: var(--color-red);
}
.page-home .home-insight-card p {
  margin: 0;
  color: var(--color-gray);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* 平板与桌面增强 */
@media (min-width: 600px) {
  .page-home .home-match-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 700px) {
  .page-home .home-match-coverage {
    grid-template-columns: 3fr 2fr;
  }
  .page-home .home-stats-media {
    grid-template-columns: 1.5fr 1fr;
  }
  .page-home .home-download-panel {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
  .page-home .home-insights-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .page-home .home-shell {
    grid-template-columns: minmax(260px, 1fr) 3fr;
    align-items: start;
  }
  .page-home .home-brand-rail {
    position: sticky;
    top: var(--header-h);
    height: calc(100vh - var(--header-h));
    border-bottom: none;
    border-right: 1px solid var(--color-silver);
    overflow-y: auto;
  }
  .page-home .home-hero {
    grid-template-columns: 1.1fr 1fr;
    min-height: 440px;
    padding: clamp(2.5rem, 5vw, 4rem) var(--content-pad);
    background: linear-gradient(115deg, var(--color-black) 0%, var(--color-black) 50%, var(--color-red) 50%, var(--color-red) 100%);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .page-home .home-ticker-track {
    animation: none;
  }
  .page-home .home-match-card:hover,
  .page-home .home-insight-card:hover {
    transform: none;
  }
}
