/* ========== 首页页面专属样式 ========== */
.page-home {
  --home-gap: 14px;
  --home-hero-row: 220px;
  --home-section-pad: 56px 0;
}

/* ---- 首屏信息矩阵 ---- */
.page-home .home-hero {
  padding: 28px 0 44px;
  border-bottom: 1px solid var(--c-mid);
}

.page-home .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
}

.page-home .hero-cell {
  position: relative;
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-black);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.page-home .hero-cell:hover {
  border-color: var(--c-orange);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.10);
  transform: translateY(-3px);
  z-index: 3;
}

/* 主卡片 */
.page-home .hero-cell-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
}

.page-home .hero-media {
  position: absolute;
  inset: 0;
}

.page-home .hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-home .hero-cell-main:hover .hero-media img {
  transform: scale(1.03);
}

.page-home .hero-cell-main::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 36px solid var(--c-orange);
  border-left: 36px solid transparent;
}

.page-home .hero-main-content {
  position: relative;
  z-index: 3;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.88) 78%);
  color: var(--c-white);
}

.page-home .hero-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-home .hero-main-content .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-home .hero-main-content h1 {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  color: var(--c-white);
  font-size: clamp(28px, 6vw, 42px);
  line-height: 1.1;
}

.page-home .hero-lead {
  margin: 0 0 22px;
  max-width: 32em;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.5;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.page-home .hero-main-content .arrow-link {
  color: var(--c-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

/* 战报栏目统计卡 */
.page-home .hero-cell-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--c-light);
}

.page-home .hero-cell-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue);
}

.page-home .hero-stat-line {
  display: flex;
  align-items: baseline;
}

.page-home .hero-stat-figure {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--c-black);
}

.page-home .hero-stat-unit {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-gray);
}

.page-home .hero-cell-copy {
  margin: 8px 0 18px;
  color: var(--c-gray);
  font-size: 14px;
  line-height: 1.5;
}

/* 平台状态面板 */
.page-home .hero-cell-status {
  padding: 22px;
  background: var(--c-black);
  color: var(--c-white);
}

.page-home .hero-status-panel {
  background: transparent;
  border: 0;
}

.page-home .hero-status-panel .data-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.page-home .hero-status-panel .data-panel-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}

.page-home .hero-status-panel .data-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .hero-status-panel .data-row:last-child {
  border-bottom: 0;
}

.page-home .hero-status-panel .data-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .hero-status-panel .data-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
}

/* 球队筛选入口 */
.page-home .hero-cell-team {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.page-home .team-filter-ui {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 12px;
  background: var(--c-light);
  border: 1px solid var(--c-black);
}

.page-home .team-filter-ui svg {
  color: var(--c-blue);
}

.page-home .team-filter-label {
  font-size: 14px;
  font-weight: 700;
}

.page-home .team-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 16px;
}

.page-home .hero-cell-team .btn {
  align-self: flex-start;
}

/* ---- 2025版本更新亮点 ---- */
.page-home .home-updates {
  padding: var(--home-section-pad);
  background: var(--c-black);
  color: var(--c-white);
}

.page-home .section-head {
  max-width: 760px;
  margin-bottom: 28px;
  text-align: left;
}

.page-home .section-head h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.2;
  color: var(--c-black);
}

.page-home .section-head .section-desc {
  margin: 0;
  color: var(--c-gray);
  font-size: 16px;
  line-height: 1.6;
}

.page-home .home-updates .section-head h2 {
  color: var(--c-white);
}

.page-home .home-updates .section-head .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-updates-btn {
  margin-top: 24px;
}

.page-home .home-version-timeline {
  position: relative;
  margin-top: 48px;
}

.page-home .home-version-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--c-blue);
}

.page-home .home-version-timeline .timeline-item {
  position: relative;
  margin-left: 0;
  padding-bottom: 36px;
  padding-left: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .home-version-timeline .timeline-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-home .home-version-timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--c-orange);
}

.page-home .home-version-timeline .timeline-time {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--c-orange);
}

.page-home .home-version-timeline .timeline-title {
  margin: 0 0 8px;
  color: var(--c-white);
  font-size: 20px;
}

.page-home .home-version-timeline .timeline-text {
  margin: 0;
  max-width: 52em;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.page-home .version-card {
  margin-top: 48px;
  padding: 28px;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--c-white);
  transition: border-color var(--transition);
}

.page-home .version-card:hover {
  border-color: var(--c-orange);
}

.page-home .version-card-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .version-card-num {
  margin: 12px 0;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.1;
  color: var(--c-white);
}

.page-home .version-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
}

.page-home .version-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.page-home .version-card-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
}

.page-home .version-card-list li::before {
  content: "→";
  margin-right: 8px;
  color: var(--c-orange);
}

/* ---- 28个战报栏目概览 ---- */
.page-home .home-reports {
  padding: var(--home-section-pad);
  background: var(--c-light);
}

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

.page-home .sport-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  background: var(--c-white);
  border: 1px solid var(--c-black);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.page-home .sport-card:hover {
  background: var(--c-blue);
  border-color: var(--c-blue);
  transform: translateX(4px);
}

.page-home .sport-index {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--c-orange);
  transition: color var(--transition);
}

.page-home .sport-card:hover .sport-index {
  color: var(--c-white);
}

.page-home .sport-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-black);
  transition: color var(--transition);
}

.page-home .sport-card:hover .sport-name {
  color: var(--c-white);
}

.page-home .sport-card-more {
  background: transparent;
  border-style: dashed;
}

.page-home .reports-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.page-home .reports-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 2px solid var(--c-black);
}

.page-home .reports-bignum {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.9;
  color: var(--c-orange);
}

.page-home .reports-stats p {
  margin: 0;
  font-weight: 700;
  color: var(--c-gray);
}

.page-home .reports-media {
  margin: 0;
}

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

.page-home .subscribe-note {
  padding: 20px;
  background: var(--c-white);
  border: 1px solid var(--c-black);
}

.page-home .subscribe-note p {
  margin: 10px 0 14px;
  color: var(--c-gray);
}

/* ---- 球队订阅流程 ---- */
.page-home .home-steps {
  padding: var(--home-section-pad);
  background: var(--c-white);
}

.page-home .steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .step-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--c-mid);
  transition: padding-left var(--transition);
}

.page-home .step-item:first-child {
  border-top: 1px solid var(--c-mid);
}

.page-home .step-item:hover {
  padding-left: 8px;
}

.page-home .step-num {
  min-width: 44px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  color: var(--c-blue);
}

.page-home .step-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--c-black);
}

.page-home .step-body p {
  margin: 0;
  font-size: 15px;
  color: var(--c-gray);
  line-height: 1.6;
}

.page-home .steps-media {
  margin: 24px 0 0;
}

.page-home .steps-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--c-black);
}

.page-home .steps-media figcaption {
  padding: 12px 0;
  border-bottom: 1px solid var(--c-black);
  font-size: 13px;
  color: var(--c-gray);
}

/* ---- 品牌认证声明 ---- */
.page-home .home-trust {
  padding: 0;
}

.page-home .trust-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 460px;
  overflow: hidden;
}

.page-home .trust-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .trust-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 36px 28px;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.55) 65%, rgba(17, 17, 17, 0) 100%);
  color: var(--c-white);
}

.page-home .trust-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.page-home .trust-overlay h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.2;
  color: var(--c-white);
}

.page-home .trust-text {
  margin: 0 0 18px;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.6;
}

.page-home .trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.page-home .trust-list li {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--c-white);
  font-size: 14px;
}

.page-home .trust-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.page-home .trust-actions .arrow-link {
  color: var(--c-white);
}

/* ---- 响应式 ---- */
@media (min-width: 700px) {
  .page-home .sports-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .hero-stat-figure {
    font-size: 68px;
  }

  .page-home .home-version-timeline .timeline-time {
    font-size: 24px;
  }
}

@media (min-width: 900px) {
  .page-home .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: var(--home-hero-row);
  }

  .page-home .hero-cell-main {
    grid-column: span 8;
    grid-row: span 2;
    min-height: 0;
  }

  .page-home .hero-cell-stat {
    grid-column: span 4;
    grid-row: span 1;
  }

  .page-home .hero-cell-status {
    grid-column: span 2;
    grid-row: span 1;
  }

  .page-home .hero-cell-team {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (min-width: 960px) {
  .page-home .updates-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
  }

  .page-home .version-card {
    margin-top: 48px;
  }

  .page-home .reports-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
  }

  .page-home .reports-side {
    margin-top: 0;
  }
}

@media (min-width: 980px) {
  .page-home .steps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .steps-media {
    margin-top: 0;
  }

  .page-home .trust-overlay {
    padding: 44px 40px;
  }
}
