.page-home {
  --home-bg: #0B1D3A;
  --home-green: #39FF14;
  --home-orange: #FF6A00;
  --home-silver: #C0C0C0;
  --home-teal: #1F3A5F;
  --home-wine: #4A0E4E;
  --home-purple: #2C2C54;
  --home-light: #F8F9FA;
  --home-dim: #B0B5B9;
  background-color: var(--home-bg);
  color: var(--home-light);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--home-dim);
}

.page-home .section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--home-green);
}

.page-home .section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--home-green);
  transform: skewX(-20deg);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.page-home h1,
.page-home h2,
.page-home h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.page-home h2 {
  font-size: clamp(26px, 4vw, 40px);
}

.page-home h3 {
  font-size: 18px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-home .btn-primary {
  background: var(--home-green);
  color: #04120a;
  border-color: var(--home-green);
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.35);
}

.page-home .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(57, 255, 20, 0.45);
}

.page-home .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--home-light);
  border-color: rgba(192, 192, 192, 0.5);
}

.page-home .btn-secondary:hover {
  border-color: var(--home-orange);
  color: var(--home-orange);
  transform: translateY(-2px);
}

/* 首屏拼贴块 */
.page-home .hero-collage {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 32px 0 56px;
  background:
    linear-gradient(135deg, #0B1D3A 0%, #12294d 46%, #2C2C54 78%, #4A0E4E 100%);
  overflow: hidden;
}

.page-home .hero-collage__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  filter: blur(6px) contrast(1.18) saturate(0.9);
}

.page-home .hero-collage__grid-overlay {
  position: absolute;
  inset: -12% -8% -12% -8%;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: skewY(-4deg);
  pointer-events: none;
}

.page-home .hero-collage__beam {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg, transparent 30%, rgba(57, 255, 20, 0.06) 55%, rgba(255, 106, 0, 0.08) 80%);
  transform: skewX(-12deg);
  pointer-events: none;
}

.page-home .hero-collage__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px 20px 0;
}

.page-home .hero-collage__breadcrumb {
  grid-column: 1 / -1;
}

.page-home .hero-collage__main {
  max-width: 680px;
}

.page-home .hero-collage__label {
  margin-bottom: 16px;
}

.page-home .hero-collage__main h1 {
  font-size: clamp(34px, 7vw, 66px);
  color: var(--home-light);
  text-shadow:
    0 1px 0 #0a1a38,
    0 2px 0 #07132b,
    0 4px 28px rgba(0, 0, 0, 0.5);
  margin-bottom: 18px;
}

.page-home .hero-collage__lead {
  font-size: 15px;
  color: #d6dde8;
  max-width: 60ch;
  margin: 0 0 22px;
}

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

.page-home .hero-collage__card {
  background: linear-gradient(150deg, rgba(15, 30, 60, 0.86), rgba(18, 41, 77, 0.78));
  border: 1px solid rgba(192, 192, 192, 0.22);
  border-radius: 4px;
  padding: 16px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
}

.page-home .hero-collage__card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.page-home .hero-collage__tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--home-silver);
}

.page-home .hero-collage__live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-green);
  box-shadow: 0 0 12px var(--home-green);
  animation: home-live-dot-blink 1.4s ease-in-out infinite;
}

@keyframes home-live-dot-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

.page-home .hero-collage__scoreline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.page-home .hero-collage__team {
  font-size: 13px;
  color: #e6ebf2;
  max-width: 74px;
  line-height: 1.2;
}

.page-home .score-num {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--home-light);
  text-shadow:
    0 1px 0 #1a1a1a,
    0 2px 0 #111111,
    0 3px 2px rgba(0, 0, 0, 0.38),
    0 10px 18px rgba(0, 0, 0, 0.35);
  animation: home-score-pulse 1.6s ease-in-out infinite;
}

.page-home .score-num--away {
  color: var(--home-orange);
  text-shadow:
    0 1px 0 #3a2a00,
    0 2px 0 #241a00,
    0 3px 2px rgba(0, 0, 0, 0.38),
    0 10px 18px rgba(255, 106, 0, 0.15);
  animation-delay: 0.2s;
}

@keyframes home-score-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.page-home .score-colon {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--home-silver);
}

.page-home .hero-collage__card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--home-dim);
}

.page-home .hero-collage__possession {
  color: var(--home-green);
}

.page-home .hero-collage__stats-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
}

.page-home .hero-collage__stat-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(192, 192, 192, 0.16);
  border-radius: 3px;
  padding: 10px 12px;
}

.page-home .hero-collage__stat-item dt {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--home-dim);
  margin-bottom: 4px;
}

.page-home .hero-collage__stat-item dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.1;
  color: var(--home-light);
}

.page-home .hero-collage__edition {
  border-color: rgba(255, 106, 0, 0.35);
}

.page-home .hero-collage__edition-tag {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  background: var(--home-orange);
  color: #0b1d3a;
  border-radius: 2px;
  margin-bottom: 10px;
}

.page-home .hero-collage__edition-title {
  font-size: 22px;
  margin-bottom: 6px;
}

.page-home .hero-collage__edition-desc {
  font-size: 13px;
  color: #d6dde8;
  margin-bottom: 10px;
}

.page-home .hero-collage__edition-link {
  color: var(--home-orange);
  font-size: 14px;
  text-decoration: none;
}

.page-home .hero-collage__quicknav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.page-home .hero-collage__quickitem {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 3px;
  color: var(--home-light);
  text-decoration: none;
  font-size: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.page-home .hero-collage__quickitem:hover {
  border-color: var(--home-green);
  transform: translateY(-2px);
}

.page-home .hero-collage__quicknum {
  font-size: 12px;
  color: var(--home-green);
}

/* 实时赛事滚动条 */
.page-home .live-ticker {
  position: relative;
  padding: 48px 0 36px;
  background: var(--home-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.page-home .live-ticker__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.page-home .live-ticker__heading h2 {
  margin-bottom: 0;
}

.page-home .live-ticker__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--home-dim);
  padding: 6px 12px;
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 30px;
}

.page-home .live-ticker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-green);
  box-shadow: 0 0 10px var(--home-green);
  animation: home-live-dot-blink 1.4s ease-in-out infinite;
}

.page-home .live-ticker__count {
  font-size: 13px;
  color: var(--home-green);
}

.page-home .live-ticker__viewport {
  overflow: hidden;
  padding: 6px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.page-home .live-ticker__track {
  display: flex;
  width: max-content;
  animation: home-ticker-marquee 42s linear infinite;
  will-change: transform;
}

.page-home .live-ticker__viewport:hover .live-ticker__track {
  animation-play-state: paused;
}

@keyframes home-ticker-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.page-home .live-ticker__group {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}

.page-home .ticker-card {
  flex: 0 0 256px;
  background: linear-gradient(150deg, #0f1e3a, #13294f);
  border: 1px solid rgba(192, 192, 192, 0.16);
  border-radius: 4px;
  padding: 14px 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.page-home .ticker-card:hover {
  border-color: rgba(57, 255, 20, 0.55);
  transform: translateY(-3px);
}

.page-home .ticker-card__league {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--home-silver);
}

.page-home .ticker-card__score {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 8px;
}

.page-home .ticker-card__team {
  font-size: 13px;
  color: #e6ebf2;
  max-width: 76px;
}

.page-home .ticker-card__num {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--home-light);
  text-shadow: 0 1px 0 #1a1a1a, 0 2px 0 #111, 0 3px 2px rgba(0, 0, 0, 0.35);
}

.page-home .ticker-card__time {
  font-size: 12px;
  color: var(--home-green);
}

/* 本周焦点战 */
.page-home .focus-matches {
  padding: 56px 0 60px;
  background:
    radial-gradient(circle at 85% 12%, rgba(57, 255, 20, 0.08), transparent 30%),
    var(--home-purple);
  border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.page-home .focus-matches__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.page-home .focus-matches__heading {
  max-width: 680px;
}

.page-home .focus-matches__heading p:last-child {
  color: #cfd6e2;
  font-size: 15px;
  max-width: 66ch;
}

.page-home .focus-matches__more {
  flex-shrink: 0;
}

.page-home .focus-tabs__list {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(192, 192, 192, 0.18);
  padding-bottom: 12px;
  overflow-x: auto;
}

.page-home .focus-tabs__btn {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(192, 192, 192, 0.3);
  color: var(--home-light);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.page-home .focus-tabs__btn[aria-selected="true"] {
  background: var(--home-orange);
  border-color: var(--home-orange);
  color: #0b1d3a;
  font-weight: 600;
}

.page-home .focus-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .focus-card {
  background: #1b1b3a;
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.page-home .focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 106, 0, 0.5);
}

.page-home .focus-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #10102a;
}

.page-home .focus-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .focus-card__league {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: rgba(11, 29, 58, 0.85);
  border: 1px solid rgba(57, 255, 20, 0.4);
  color: var(--home-green);
  border-radius: 2px;
}

.page-home .focus-card__graphic {
  position: absolute;
  right: 12px;
  top: 6px;
  font-family: var(--font-heading);
  font-size: 84px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  user-select: none;
}

.page-home .focus-card--grid-bg .focus-card__media {
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #1b1b3a 0%, #1b1b3a 60%, #0b1d3a 100%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
}

.page-home .focus-card__body {
  padding: 14px 16px 16px;
}

.page-home .focus-card__teams {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.page-home .focus-card__teams b {
  color: var(--home-orange);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
}

.page-home .focus-card__meta {
  font-size: 12px;
  color: var(--home-dim);
  margin-bottom: 10px;
}

.page-home .focus-card__actions a {
  color: var(--home-green);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.page-home .focus-card__actions a:hover {
  border-bottom-color: var(--home-green);
}

/* 专家专栏预览 */
.page-home .expert-preview {
  padding: 56px 0 60px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 106, 0, 0.08), transparent 28%),
    var(--home-wine);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-home .expert-preview__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.page-home .expert-preview__heading {
  max-width: 700px;
}

.page-home .expert-preview__heading p:last-child {
  color: #d9cdd8;
  font-size: 15px;
}

.page-home .expert-preview__more {
  flex-shrink: 0;
}

.page-home .expert-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .expert-card {
  background: rgba(20, 6, 28, 0.55);
  border: 1px solid rgba(192, 192, 192, 0.18);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.page-home .expert-card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.page-home .expert-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #14061c;
}

.page-home .expert-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .expert-card--chart .expert-card__media svg {
  width: 100%;
  height: 100%;
  display: block;
}

.page-home .expert-card__badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(74, 14, 78, 0.9);
  border: 1px solid rgba(255, 106, 0, 0.45);
  color: var(--home-orange);
  border-radius: 2px;
}

.page-home .expert-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.page-home .expert-card__body h3 {
  font-size: 18px;
  color: var(--home-light);
  margin-bottom: 0;
}

.page-home .expert-card__body p {
  font-size: 14px;
  color: #d8cfd6;
  margin: 0;
}

.page-home .expert-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .expert-card__read {
  color: var(--home-green);
  font-size: 14px;
  text-decoration: none;
}

.page-home .expert-card__read:hover {
  color: var(--home-light);
}

.page-home .expert-card__collect {
  font-size: 12px;
  color: var(--home-orange);
  letter-spacing: 0.05em;
}

/* 数据对照工具 */
.page-home .data-compare {
  padding: 56px 0 60px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    var(--home-teal);
  border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.page-home .data-compare__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-home .data-compare__visual {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(192, 192, 192, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.page-home .data-compare__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.page-home .data-compare__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.page-home .data-compare__content h2 {
  color: var(--home-light);
}

.page-home .data-compare__content > p {
  color: #d0d9e4;
  margin-bottom: 20px;
  max-width: 62ch;
}

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

.page-home .data-compare__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(192, 192, 192, 0.14);
  border-radius: 4px;
}

.page-home .data-compare__item-num {
  font-size: 12px;
  color: var(--home-green);
  flex-shrink: 0;
}

.page-home .data-compare__list h3 {
  font-size: 16px;
  margin-bottom: 2px;
  color: var(--home-light);
}

.page-home .data-compare__list p {
  font-size: 13px;
  color: #c4ccd8;
  margin: 0;
}

/* 焕新版功能亮点 */
.page-home .new-version {
  position: relative;
  padding: 56px 0 60px;
  background: var(--home-bg);
  border-top: 2px solid var(--home-orange);
}

.page-home .new-version__head {
  max-width: 720px;
  margin-bottom: 30px;
}

.page-home .new-version__head p:last-child {
  color: #c6ceda;
  font-size: 15px;
}

.page-home .new-version__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .version-feature {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(192, 192, 192, 0.16);
  border-radius: 6px;
  padding: 22px 20px;
  transition: border-color 0.22s, transform 0.22s;
}

.page-home .version-feature:hover {
  border-color: rgba(255, 106, 0, 0.6);
  transform: translateY(-3px);
}

.page-home .version-feature__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--home-green);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 4px;
  background: rgba(57, 255, 20, 0.06);
}

.page-home .version-feature h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--home-light);
}

.page-home .version-feature p {
  font-size: 13px;
  color: #c6ceda;
  margin: 0;
}

/* 行动区块 */
.page-home .home-cta {
  padding: 56px 0 64px;
  background:
    radial-gradient(circle at 20% 50%, rgba(57, 255, 20, 0.07), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(255, 106, 0, 0.06), transparent 30%),
    #071229;
  border-top: 1px solid rgba(192, 192, 192, 0.12);
}

.page-home .home-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .home-cta__content {
  max-width: 680px;
}

.page-home .home-cta__content h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.page-home .home-cta__content p {
  color: #c6ceda;
  font-size: 15px;
}

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

/* 收藏协议与动效 */
@media (prefers-reduced-motion: reduce) {
  .page-home .hero-collage__live-dot,
  .page-home .live-ticker__dot,
  .page-home .score-num,
  .page-home .score-num--away {
    animation: none;
  }

  .page-home .live-ticker__track {
    animation: none;
    width: 100%;
    overflow-x: auto;
  }

  .page-home .live-ticker__group {
    flex-shrink: 0;
  }
}

/* 桌面端布局 */
@media (min-width: 768px) {
  .page-home .hero-collage__inner {
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
    padding: 48px 24px 0;
  }

  .page-home .hero-collage__main {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
  }

  .page-home .hero-collage__card--score {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
  }

  .page-home .hero-collage__card--stats {
    grid-column: 9 / 13;
    grid-row: 2 / 3;
  }

  .page-home .hero-collage__card--edition {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
  }

  .page-home .hero-collage__quicknav {
    grid-column: 5 / 9;
    grid-row: 2 / 3;
  }

  .page-home .focus-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .expert-preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .data-compare__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .page-home .new-version__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-cta__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

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

  .page-home .new-version__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
