/* ========== 首页专属样式 ========== */
.page-home {
  --home-radius: 16px;
  --home-shadow: 0 18px 44px rgba(15, 42, 74, 0.12);
  background: var(--c-paper);
  overflow-x: hidden;
}

/* ---------- 通用段落编号 ---------- */
.page-home .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin: 0 0 14px;
}
.page-home .section-label::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 3px;
}

/* ================= 首屏 ================= */
.page-home .home-hero {
  position: relative;
  padding: 64px 0 72px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 78, 32, 0.12), transparent 42%),
    linear-gradient(180deg, var(--c-paper) 0%, var(--c-beige) 100%);
  overflow: hidden;
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  right: -90px;
  top: 30px;
  width: 280px;
  height: 280px;
  border: 1px solid var(--c-silver);
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 8px;
  background: var(--grad-brand);
  transform: skewY(-1.2deg);
  transform-origin: left bottom;
}

.page-home .hero-inner {
  display: grid;
  gap: 52px;
  position: relative;
  z-index: 1;
}

.page-home .hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 22px;
}
.page-home .hero-overline::before {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 3px;
}

.page-home .hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin: 0 0 24px;
}
.page-home .hero-copy h1 em {
  display: block;
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
}

.page-home .hero-lead {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--c-blue-deep);
  max-width: 520px;
  margin-bottom: 32px;
}

.page-home .hero-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 2px solid var(--c-silver);
  border-radius: 14px;
  padding: 10px 14px;
  max-width: 520px;
  box-shadow: 0 12px 32px rgba(15, 42, 74, 0.08);
  transition: border-color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.page-home .hero-search:focus-within {
  border-color: var(--c-orange);
  box-shadow: 0 16px 40px rgba(255, 78, 32, 0.14);
}
.page-home .hero-search svg {
  width: 22px;
  height: 22px;
  color: var(--c-silver);
  flex: none;
}
.page-home .hero-search input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--c-ink);
  outline: none;
  padding: 8px 0;
}
.page-home .hero-search-key {
  flex: none;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-orange);
  border-left: 1px solid var(--c-beige);
  padding-left: 14px;
  letter-spacing: 0.06em;
}

.page-home .hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 28px;
}
.page-home .hero-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-peach);
  color: var(--c-orange);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 8px 16px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.page-home .hero-leagues {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-blue-deep);
}

/* 首屏比分滚动条 */
.page-home .hero-ticker {
  overflow: hidden;
  margin-top: 36px;
  padding: 12px 0;
  border-top: 1px solid rgba(168, 176, 194, 0.6);
  border-bottom: 1px solid rgba(168, 176, 194, 0.6);
  max-width: 560px;
}
.page-home .hero-ticker-track {
  display: flex;
  width: max-content;
  animation: home-ticker-scroll 22s linear infinite;
}
.page-home .hero-ticker-group {
  display: flex;
  gap: 36px;
  padding-right: 36px;
  white-space: nowrap;
}
.page-home .hero-ticker-group span {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.page-home .hero-ticker-group span::before {
  content: "●";
  color: var(--c-orange);
  font-size: 6px;
}
@keyframes home-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* 首屏视觉块 */
.page-home .hero-visual {
  position: relative;
}
.page-home .hero-img-frame {
  position: relative;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid var(--c-silver);
  box-shadow: 0 26px 64px rgba(15, 42, 74, 0.2);
}
.page-home .hero-img-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 800 / 600;
}
.page-home .hero-score-tag {
  position: absolute;
  left: -10px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-space);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(11, 16, 35, 0.38);
}
.page-home .hero-score-tag strong {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.page-home .hero-score-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-orange);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
}
.page-home .hero-score-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  animation: home-live-pulse 1.6s ease-in-out infinite;
}
@keyframes home-live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 78, 32, 0.6); }
  50% { box-shadow: 0 0 0 10px rgba(255, 78, 32, 0); }
}

/* ================= 战报检索 ================= */
.page-home .home-war {
  position: relative;
  background: var(--c-blue);
  color: #ffffff;
  padding: 72px 0 84px;
}
.page-home .home-war::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--grad-brand);
  z-index: 2;
}
.page-home .home-war .container {
  position: relative;
  z-index: 1;
}

.page-home .war-head {
  max-width: 680px;
}
.page-home .home-war .section-label {
  color: var(--c-orange);
}
.page-home .war-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.3;
  color: #ffffff;
  margin: 16px 0 16px;
}
.page-home .war-head p:last-child {
  color: rgba(247, 245, 240, 0.72);
  line-height: 1.8;
  max-width: 520px;
}

.page-home .war-visual {
  margin: 40px 0 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 68px rgba(0, 0, 0, 0.28);
}
.page-home .war-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 520px;
}

.page-home .war-toolbar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 深色背景筛选按钮 */
.page-home .home-war .filter-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-base);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.page-home .home-war .filter-btn:hover {
  background: rgba(255, 78, 32, 0.24);
  border-color: var(--c-orange);
  transform: translateY(-2px);
}
.page-home .home-war .filter-btn.is-active {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: #ffffff;
}

.page-home .war-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-home .war-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 22px 24px;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.page-home .war-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 78, 32, 0.5);
}
.page-home .war-league {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--c-orange);
  background: rgba(255, 78, 32, 0.16);
  padding: 4px 12px;
  border-radius: 100px;
}
.page-home .war-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: #ffffff;
  margin: 14px 0 6px;
}
.page-home .war-card p {
  font-size: 0.875rem;
  color: rgba(247, 245, 240, 0.7);
  line-height: 1.7;
  margin: 0;
}

.page-home .war-more {
  margin-top: 36px;
}
.page-home .home-war .btn-ghost {
  border: 1px solid rgba(247, 245, 240, 0.5);
  color: #ffffff;
  background: transparent;
}
.page-home .home-war .btn-ghost:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
}

/* ================= 赛事订阅 ================= */
.page-home .home-sub {
  position: relative;
  background: var(--c-paper);
  padding: 72px 0;
}
.page-home .home-sub::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 46%);
  height: 6px;
  background: var(--grad-brand);
  border-radius: 0 0 0 6px;
}

.page-home .sub-inner {
  display: grid;
  gap: 52px;
  align-items: center;
}

.page-home .sub-visual {
  order: 1;
}
.page-home .sub-phone-frame {
  max-width: 320px;
  margin: 0 auto;
  border-radius: 32px;
  border: 3px solid var(--c-silver);
  padding: 10px;
  background: var(--c-space);
  box-shadow: 0 34px 72px rgba(15, 42, 74, 0.28);
  transform: rotate(1.5deg);
}
.page-home .sub-phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
  aspect-ratio: 400 / 800;
}

.page-home .sub-content {
  order: 2;
}
.page-home .sub-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  line-height: 1.28;
  color: var(--c-ink);
  margin: 16px 0 18px;
}
.page-home .sub-content p {
  color: var(--c-blue-deep);
  line-height: 1.85;
  margin-bottom: 28px;
}

.page-home .sub-features {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.page-home .sub-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-beige);
  border-left: 4px solid var(--c-orange);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
}
.page-home .sub-features strong {
  font-weight: 800;
  color: var(--c-blue);
  font-size: 1rem;
  white-space: nowrap;
}
.page-home .sub-features span {
  font-size: 0.875rem;
  color: var(--c-blue-deep);
  opacity: 0.82;
}

/* ================= 球队库 ================= */
.page-home .home-teams {
  position: relative;
  background: var(--c-beige);
  padding: 72px 0 80px;
  overflow: hidden;
}
.page-home .home-teams::after {
  content: "五大联赛";
  position: absolute;
  left: -10px;
  bottom: 14px;
  font-family: var(--font-head);
  font-size: clamp(4rem, 12vw, 8.5rem);
  line-height: 1;
  color: rgba(15, 42, 74, 0.05);
  letter-spacing: 0.05em;
  transform: rotate(-4deg);
  white-space: nowrap;
  pointer-events: none;
}

.page-home .teams-head {
  position: relative;
  z-index: 1;
}
.page-home .teams-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--c-ink);
  margin: 16px 0;
}
.page-home .teams-head p {
  color: var(--c-blue-deep);
  line-height: 1.85;
  max-width: 620px;
}

.page-home .teams-banner {
  margin: 36px 0 34px;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid var(--c-silver);
  box-shadow: 0 22px 52px rgba(15, 42, 74, 0.14);
  position: relative;
  z-index: 1;
}
.page-home .teams-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 360px;
}

.page-home .teams-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* 浅色背景筛选按钮 */
.page-home .home-teams .filter-btn {
  background: #ffffff;
  border: 1px solid var(--c-silver);
  color: var(--c-blue);
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-base);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.page-home .home-teams .filter-btn:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
  transform: translateY(-2px);
}
.page-home .home-teams .filter-btn.is-active {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 42, 74, 0.22);
}

.page-home .teams-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-home .team-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid var(--c-silver);
  box-shadow: 0 6px 18px rgba(15, 42, 74, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.page-home .team-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-orange);
  box-shadow: 0 14px 30px rgba(255, 78, 32, 0.12);
}
.page-home .team-no {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--c-silver);
  min-width: 40px;
}
.page-home .team-card strong {
  font-family: var(--font-head);
  color: var(--c-ink);
  font-size: 1.05rem;
}
.page-home .team-league-tag {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-blue);
  background: var(--c-peach);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* ================= 华人关注列表 ================= */
.page-home .home-hot {
  background: var(--c-paper);
  padding: 72px 0 84px;
  position: relative;
}
.page-home .home-hot::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--grad-brand);
  opacity: 0.35;
}

.page-home .hot-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.3;
  color: var(--c-ink);
  margin: 16px 0;
}
.page-home .hot-head p {
  color: var(--c-blue-deep);
  line-height: 1.85;
  max-width: 620px;
}

.page-home .hot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 42px;
}
.page-home .hot-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border-radius: var(--home-radius);
  padding: 20px 22px;
  border: 1px solid var(--c-silver);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 42, 74, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.page-home .hot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 42, 74, 0.12);
}
.page-home .hot-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--grad-brand);
  opacity: 0.65;
}
.page-home .hot-no {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--c-orange);
  letter-spacing: 0.02em;
  min-width: 62px;
}
.page-home .hot-info {
  flex: 1;
  min-width: 0;
}
.page-home .hot-info h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--c-ink);
  margin: 0 0 4px;
}
.page-home .hot-info p {
  font-size: 0.875rem;
  color: var(--c-blue-deep);
  margin: 0;
  opacity: 0.85;
}

.page-home .fav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1px solid var(--c-silver);
  border-radius: 100px;
  background: var(--c-paper);
  color: var(--c-blue-deep);
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: border-color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.page-home .fav-btn .fav-icon {
  width: 18px;
  height: 18px;
  flex: none;
}
.page-home .fav-btn:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
  background: var(--c-peach);
}
.page-home .fav-btn:focus-within {
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
}
.page-home .fav-btn input:checked + .fav-icon {
  fill: var(--c-orange);
  stroke: var(--c-orange);
}
.page-home .fav-btn input:checked ~ span {
  color: var(--c-orange);
}

/* ================= 实力与稳定 ================= */
.page-home .home-power {
  position: relative;
  background: var(--c-space);
  color: #ffffff;
  padding: 72px 0 80px;
  overflow: hidden;
}
.page-home .home-power::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -10%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(168, 176, 194, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.page-home .home-power::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -2%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 78, 32, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .power-head {
  position: relative;
  z-index: 1;
}
.page-home .home-power .section-label {
  color: var(--c-orange);
}
.page-home .power-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #ffffff;
  margin: 16px 0;
}
.page-home .power-head p {
  color: rgba(247, 245, 240, 0.76);
  line-height: 1.85;
  max-width: 640px;
}

.page-home .power-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 44px 0 42px;
  position: relative;
  z-index: 1;
}
.page-home .stat-item {
  border: 1px solid rgba(168, 176, 194, 0.22);
  border-radius: 14px;
  padding: 26px 18px;
  background: rgba(15, 42, 74, 0.46);
  text-align: center;
  backdrop-filter: blur(4px);
  transition: border-color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.page-home .stat-item:hover {
  border-color: rgba(255, 78, 32, 0.55);
  transform: translateY(-3px);
}
.page-home .stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.page-home .stat-item span {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  color: rgba(247, 245, 240, 0.72);
  letter-spacing: 0.08em;
}

.page-home .power-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(168, 176, 194, 0.2);
  padding-top: 32px;
}
.page-home .power-cta p {
  color: rgba(247, 245, 240, 0.82);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 auto 0 0;
  flex-basis: 100%;
}
.page-home .power-cta .btn-ghost {
  border: 1px solid rgba(247, 245, 240, 0.48);
  color: #ffffff;
  background: transparent;
}
.page-home .power-cta .btn-ghost:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
}

/* ================= 桌面端布局 ================= */
@media (min-width: 860px) {
  .page-home .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 64px;
    min-height: 620px;
  }
  .page-home .hero-copy h1 {
    font-size: var(--size-display);
  }
  .page-home .hero-visual {
    margin-right: 28px;
  }
  .page-home .hero-score-tag {
    left: -14px;
    bottom: 32px;
  }
  .page-home .hero-ticker {
    max-width: 560px;
  }

  .page-home .war-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .war-more {
    display: flex;
    justify-content: flex-end;
  }

  .page-home .sub-inner {
    grid-template-columns: 340px 1fr;
    gap: 72px;
  }
  .page-home .sub-visual {
    order: 2;
  }
  .page-home .sub-phone-frame {
    margin: 0;
  }
  .page-home .sub-content {
    order: 1;
  }

  .page-home .teams-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .page-home .hot-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .page-home .hot-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 16px 24px;
    gap: 12px;
  }
  .page-home .hot-card::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 6px;
  }
  .page-home .hot-no {
    min-width: 0;
    font-size: 1.9rem;
  }
  .page-home .hot-info h3 {
    font-size: 1.05rem;
  }
  .page-home .fav-btn {
    margin-top: 8px;
  }

  .page-home .power-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .page-home .power-cta p {
    flex-basis: auto;
  }
}

/* ================= 动效降级 ================= */
@media (prefers-reduced-motion: reduce) {
  .page-home .hero-ticker-track {
    animation: none;
    flex-wrap: wrap;
  }
  .page-home .hero-score-live::before {
    animation: none;
  }
  .page-home .war-card,
  .page-home .team-card,
  .page-home .hot-card,
  .page-home .stat-item {
    transition: none;
  }
  .page-home .hero-ticker-group {
    flex-wrap: wrap;
  }
}
