/* ===== 首页专属样式 · page-home ===== */
.page-home {
  --home-gap: 28px;
  --home-cut: 18px;
  --home-rail-w: 52px;
  --home-title-size: clamp(2.1rem, 5.2vw, 3.9rem);
  --home-lead-size: clamp(1rem, 1.4vw, 1.15rem);
  --home-card-shadow: 0 10px 30px rgba(26, 26, 26, 0.06), 0 2px 8px rgba(26, 26, 26, 0.04);
  --home-card-shadow-hover: 0 16px 40px rgba(26, 26, 26, 0.1), 0 4px 12px rgba(26, 26, 26, 0.06);
  background: var(--c-bg);
  overflow-x: hidden;
}

/* ===== 首屏 ===== */
.page-home .home-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
  padding: 24px 20px 52px;
  max-width: var(--container);
  margin: 0 auto;
}

.page-home .home-hero-photo {
  position: relative;
  order: -1;
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--home-cut)), calc(100% - 24px) 100%, 0 100%);
}

.page-home .home-hero-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.page-home .home-photo-caption {
  position: absolute;
  right: 16px;
  bottom: 18px;
  background: rgba(26, 26, 26, 0.78);
  color: var(--c-white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  padding: 6px 14px;
  border-radius: 2px;
  border-left: 3px solid var(--c-gold);
}

.page-home .home-hero-rail {
  display: none;
}

.page-home .home-hero-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-hero-tag {
  margin: 18px 0 0;
  background: var(--c-ink);
  color: var(--c-white);
  border-radius: 2px;
}

.page-home .home-hero-main h1 {
  font-family: var(--font-head);
  font-size: var(--home-title-size);
  font-weight: 900;
  line-height: 1.16;
  color: var(--c-ink);
  margin: 20px 0 16px;
  letter-spacing: -0.02em;
  max-width: 12em;
}

.page-home .home-hero-lead {
  font-family: var(--font-body);
  font-size: var(--home-lead-size);
  line-height: 1.85;
  color: var(--c-muted);
  max-width: 34em;
  margin: 0 0 26px;
}

.page-home .home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-stat-cell {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 14px 16px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.page-home .home-stat-cell dt {
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: var(--c-muted);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.page-home .home-stat-cell dd {
  margin: 0;
}

.page-home .home-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-ink);
  line-height: 1;
}

.page-home .home-stat-unit {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-left: 2px;
}

.page-home .home-stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--c-muted);
  margin-top: 6px;
}

.page-home .home-hero-map {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 18px 14px 14px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--home-cut)), calc(100% - 20px) 100%, 12px 100%, 0 calc(100% - 14px));
  box-shadow: var(--home-card-shadow);
}

.page-home .home-map-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding: 0 4px;
}

.page-home .home-map-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: 0.04em;
}

.page-home .home-map-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--c-muted);
}

.page-home .home-heatmap-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== 面板筛选与卡片 ===== */
.page-home .home-panel-zone {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 20px 56px;
}

.page-home .home-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.page-home .home-filter-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: 0.1em;
  padding-left: 12px;
  border-left: 4px solid var(--c-blue);
}

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

.page-home .home-filter-actions .filter-button {
  background: var(--c-white);
  color: var(--c-ink);
  border: 1px solid var(--c-border);
  font-family: var(--font-head);
  font-size: 0.85rem;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.page-home .home-filter-actions .filter-button:hover,
.page-home .home-filter-actions .filter-button.is-active,
.page-home .home-filter-actions .filter-button[aria-pressed="true"] {
  background: var(--c-ink);
  color: var(--c-white);
  border-color: var(--c-ink);
}

.page-home .home-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .home-panel-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 24px 22px 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(26, 26, 26, 0.03);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--home-cut)), calc(100% - var(--home-cut)) 100%, 0 100%);
}

.page-home .home-panel-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--c-blue), var(--c-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-home .home-panel-card:nth-child(3n + 2)::before {
  background: linear-gradient(180deg, var(--c-gold), var(--c-red));
}

.page-home .home-panel-card:hover {
  box-shadow: var(--home-card-shadow-hover);
  transform: translateY(-3px);
}

.page-home .home-panel-card:hover::before {
  opacity: 1;
}

.page-home .home-panel-card[hidden] {
  display: none !important;
}

.page-home .home-panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.page-home .home-panel-code {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--c-border);
  line-height: 1;
  letter-spacing: -0.03em;
}

.page-home .home-panel-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0 0 10px;
  line-height: 1.4;
}

.page-home .home-panel-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--c-muted);
  margin: 0 0 18px;
}

.page-home .home-panel-link {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-ink);
  text-decoration: none;
  border-bottom: 2px solid var(--c-blue);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-home .home-panel-link:hover {
  color: var(--c-blue);
  border-color: var(--c-ink);
}

/* ===== 历史交锋旧版内容中心 ===== */
.page-home .home-history {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.03) 0%, rgba(155, 89, 182, 0.04) 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.page-home .home-history-media {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}

.page-home .home-history-media img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  display: block;
}

.page-home .home-history-media-tag {
  position: absolute;
  right: 14px;
  bottom: 18px;
  background: var(--c-gold);
  color: var(--c-ink);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 2px;
  letter-spacing: 0.06em;
}

.page-home .home-history-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-history-content h2,
.page-home .home-leagues h2,
.page-home .home-help h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--c-ink);
  margin: 8px 0 16px;
}

.page-home .home-history-desc,
.page-home .home-help-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--c-muted);
  margin: 0 0 22px;
}

.page-home .home-history-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  width: 100%;
}

.page-home .home-history-features li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--c-ink);
  padding: 8px 0;
  border-bottom: 1px dashed var(--c-border);
}

.page-home .home-history-features li:last-child {
  border-bottom: none;
}

.page-home .home-feature-mark {
  color: var(--c-purple);
  font-size: 0.8rem;
  margin-right: 10px;
}

.page-home .home-history .btn-primary {
  background: var(--c-ink);
  color: var(--c-white);
  border: 1px solid var(--c-ink);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.page-home .home-history .btn-primary:hover {
  background: var(--c-blue);
  color: var(--c-ink);
  border-color: var(--c-blue);
}

/* ===== 热门联赛排名 ===== */
.page-home .home-leagues {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 20px 64px;
}

.page-home .home-leagues-head {
  margin-bottom: 32px;
}

.page-home .section-kicker {
  color: var(--c-purple);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
}

.page-home .section-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 10px 0 0;
  max-width: 30em;
}

.page-home .home-league-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .home-league-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 22px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--home-cut)), calc(100% - var(--home-cut)) 100%, 0 100%);
}

.page-home .home-league-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 44px 44px 0;
  border-color: transparent rgba(245, 244, 240, 0.9) transparent transparent;
  transition: border-color 0.3s ease;
}

.page-home .home-league-card:hover {
  box-shadow: var(--home-card-shadow-hover);
  transform: translateY(-4px);
}

.page-home .home-league-card:hover::after {
  border-color: transparent var(--c-blue) transparent transparent;
}

.page-home .home-league-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.page-home .home-league-code {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-home .home-league-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-ink);
}

.page-home .home-league-form-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.page-home .home-form-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: var(--c-muted);
  letter-spacing: 0.08em;
}

.page-home .home-form-row {
  display: flex;
  gap: 4px;
}

.page-home .home-form-pip {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.page-home .home-form-win {
  background: var(--c-blue);
}

.page-home .home-form-draw {
  background: var(--c-gold);
}

.page-home .home-form-lose {
  background: var(--c-red);
}

.page-home .home-form-summary {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-ink);
  background: var(--c-bg-alt);
  padding: 4px 12px;
  border-radius: 2px;
}

.page-home .home-league-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--c-border);
  padding-top: 14px;
}

.page-home .home-league-tip {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--c-muted);
}

.page-home .home-league-link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-ink);
  text-decoration: none;
  border-bottom: 2px solid var(--c-purple);
  transition: color 0.3s ease;
}

.page-home .home-league-link:hover {
  color: var(--c-purple);
}

/* ===== 帮助中心速览 ===== */
.page-home .home-help {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 20px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: linear-gradient(to right, var(--c-bg) 0%, var(--c-bg-alt) 100%);
  border-top: 1px solid var(--c-border);
}

.page-home .home-help-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-help-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  width: 100%;
}

.page-home .home-help-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 12px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.page-home .home-help-link:hover {
  border-color: var(--c-purple);
  box-shadow: var(--home-card-shadow);
}

.page-home .home-help-icon {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-blue);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.page-home .home-help-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .home-help-item-text strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-ink);
}

.page-home .home-help-item-text em {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--c-muted);
  font-style: normal;
}

.page-home .home-help .btn-outline {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-ink);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.page-home .home-help .btn-outline:hover {
  background: var(--c-ink);
  color: var(--c-white);
}

.page-home .home-help-media {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 12px));
}

.page-home .home-help-media img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

.page-home .home-help-media-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--c-deep);
  color: var(--c-white);
  font-family: var(--font-head);
  font-size: 0.78rem;
  padding: 10px 16px;
  letter-spacing: 0.05em;
}

.page-home .home-help-note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.2);
  animation: home-pulse 2s ease-in-out infinite;
}

.page-home .home-help-media-note {
  margin-top: 0;
  border-radius: 0 0 6px 6px;
}

/* ===== 品牌文化横幅 ===== */
.page-home .home-culture {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 20px 60px;
}

.page-home .home-culture-frame {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 30px) 100%, 30px 100%, 0 calc(100% - 18px));
  border: 1px solid var(--c-border);
  box-shadow: var(--home-card-shadow);
}

.page-home .home-culture-frame img {
  width: 100%;
  height: auto;
  min-height: 150px;
  object-fit: cover;
  display: block;
}

.page-home .home-culture-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(52, 73, 94, 0.65) 100%);
  color: var(--c-white);
  text-align: center;
  padding: 24px 16px;
}

.page-home .home-culture-mark {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-gold);
}

.page-home .home-culture-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.5;
  max-width: 30em;
}

.page-home .home-culture-links {
  display: flex;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.82rem;
}

.page-home .home-culture-links a {
  color: var(--c-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.4);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.page-home .home-culture-links a:hover {
  color: var(--c-white);
  border-color: var(--c-white);
}

.page-home .home-culture-slash {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== 动画与交互 ===== */
.page-home .home-help-media-note {
  animation: home-pulse-dot 2s ease-in-out infinite;
}

@keyframes home-pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(0, 229, 255, 0.05);
  }
}

/* data-reveal 入场动画 */
.page-home [data-reveal] {
  opacity: 1;
  transform: none;
}

/* ===== 响应式 · ≥ 640px ===== */
@media (min-width: 640px) {
  .page-home .home-hero {
    padding-left: 28px;
    padding-right: 28px;
  }

  .page-home .home-panel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .page-home .home-league-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .page-home .home-history {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

  .page-home .home-help {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .page-home .home-culture-overlay {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .page-home .home-culture-text {
    font-size: 1.05rem;
  }
}

/* ===== 响应式 · ≥ 1024px ===== */
@media (min-width: 1024px) {
  .page-home .home-hero {
    grid-template-columns: var(--home-rail-w) 1.08fr 0.92fr;
    gap: 0;
    padding: 40px 28px 64px;
    row-gap: 36px;
  }

  .page-home .home-hero-photo {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 34%;
    max-height: none;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .page-home .home-hero-photo img {
    height: 100%;
    min-height: 760px;
    object-fit: cover;
  }

  .page-home .home-photo-caption {
    font-size: 0.8rem;
  }

  .page-home .home-hero-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    align-self: start;
    position: relative;
    z-index: 2;
  }

  .page-home .home-rail-text {
    writing-mode: vertical-rl;
    font-family: var(--font-head);
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    color: var(--c-muted);
    white-space: nowrap;
  }

  .page-home .home-rail-line {
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg, var(--c-blue), var(--c-border));
  }

  .page-home .home-rail-index {
    writing-mode: vertical-rl;
    font-family: var(--font-head);
    font-size: 0.68rem;
    color: var(--c-muted);
    letter-spacing: 0.16em;
  }

  .page-home .home-rail-diamond {
    color: var(--c-gold);
    font-size: 0.7rem;
    animation: home-diamond 2.4s ease-in-out infinite;
  }

  @keyframes home-diamond {
    0%, 100% {
      transform: translateY(0);
      opacity: 0.6;
    }
    50% {
      transform: translateY(-6px);
      opacity: 1;
    }
  }

  .page-home .home-hero-main {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    padding-left: 36px;
    padding-right: 28px;
    padding-top: 8px;
  }

  .page-home .home-hero-main h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
  }

  .page-home .home-hero-lead {
    font-size: 1rem;
  }

  .page-home .home-hero-map {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    margin-top: 24px;
  }

  .page-home .home-heatmap-svg {
    max-height: 460px;
  }

  .page-home .home-panel-zone {
    padding: 64px 28px;
  }

  .page-home .home-panel-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .page-home .home-filter-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
  }

  .page-home .home-history {
    padding: 72px 28px;
    gap: 64px;
  }

  .page-home .home-leagues {
    padding: 72px 28px 80px;
  }

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

  .page-home .home-help {
    padding: 64px 28px 72px;
    gap: 56px;
  }

  .page-home .home-culture {
    padding: 56px 28px 72px;
  }
}

/* ===== 响应式 · ≥ 1400px ===== */
@media (min-width: 1400px) {
  .page-home .home-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .page-home .home-hero-photo {
    width: 30%;
  }

  .page-home .home-panel-zone,
  .page-home .home-history,
  .page-home .home-leagues,
  .page-home .home-help,
  .page-home .home-culture {
    padding-left: 0;
    padding-right: 0;
  }
}
