/* ===== 首页 · 开赛总览 ===== */
.page-home {
  --home-bevel: clamp(20px, 4vw, 44px);
  --home-hero-gradient: linear-gradient(135deg, #081228 0%, #132642 55%, #1E3A5F 100%);
  background-color: var(--space-deep);
  overflow-x: hidden;
}

.page-home .container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Hero 开赛倒计时 ---------- */
.page-home .home-hero {
  background: var(--home-hero-gradient);
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.page-home .home-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
}

.page-home .home-hero-main {
  min-width: 0;
}

.page-home .home-hero-title {
  margin: 14px 0 4px;
  font-size: clamp(46px, 11vw, 116px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--text-light);
}

.page-home .home-hero-title .orange {
  color: var(--orange);
  font-style: normal;
  text-shadow: 0 0 30px rgba(255, 107, 53, .35);
}

.page-home .home-hero-tagline {
  color: var(--text-secondary);
  font-size: clamp(14px, 2.2vw, 20px);
  letter-spacing: .32em;
  margin-bottom: 40px;
}

/* 倒计时 */
.page-home .home-countdown {
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
  max-width: 640px;
}

.page-home .home-countdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.page-home .home-countdown-label {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
}

.page-home .home-countdown-relative {
  background: rgba(201, 255, 61, .14);
  border: 1px solid rgba(201, 255, 61, .5);
  color: var(--green);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}

.page-home .home-countdown-digits {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex-wrap: nowrap;
}

.page-home .home-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.page-home .home-cd-num {
  font-size: clamp(42px, 12vw, 112px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: .9;
  color: var(--orange);
  text-shadow: 0 0 30px rgba(255, 107, 53, .32);
  transition: filter .3s ease, text-shadow .3s ease;
  display: block;
  letter-spacing: -.02em;
}

.page-home .home-cd-num:hover {
  filter: brightness(1.22);
  text-shadow: 0 0 44px rgba(255, 107, 53, .6);
}

.page-home .home-cd-label {
  color: var(--text-secondary);
  font-size: 12px;
  letter-spacing: .18em;
  margin-top: 8px;
}

.page-home .home-cd-sep {
  color: var(--green);
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 900;
  line-height: .9;
  padding-bottom: 26px;
}

.page-home .home-countdown-match {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
}

.page-home .home-cd-vs {
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .2em;
}

.page-home .home-cd-team {
  background: rgba(30, 58, 95, .6);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 8px 16px;
  letter-spacing: .04em;
}

.page-home .home-countdown-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 13px;
}

.page-home .home-cd-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 255, 61, .5);
  padding-bottom: 2px;
  transition: color .22s ease, border-color .22s ease;
}

.page-home .home-cd-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.page-home .home-cd-art {
  margin-top: 28px;
  max-width: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
}

.page-home .home-cd-art img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  opacity: .55;
  transition: opacity .3s ease;
}

.page-home .home-cd-art:hover img {
  opacity: .85;
}

/* Hero 右侧比分卡 */
.page-home .home-hero-side {
  min-width: 0;
}

.page-home .home-scores-card {
  position: relative;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 8% 96%);
  background: var(--space-light);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.page-home .home-scores-bg {
  position: absolute;
  inset: 0;
}

.page-home .home-scores-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .28;
}

.page-home .home-scores-inner {
  position: relative;
  z-index: 2;
  padding: 40px 28px 32px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-home .home-live-table {
  margin-top: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .home-live-row {
  display: grid;
  grid-template-columns: 18px 1fr auto auto;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  background: rgba(8, 18, 40, .82);
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color .22s ease, background .22s ease;
}

.page-home .home-live-row:hover {
  border-color: var(--orange);
  background: rgba(8, 18, 40, .96);
}

.page-home .home-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}

.page-home .home-live-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--green);
  animation: pageHomePulse 1.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pageHomePulse {
  0%, 100% { transform: scale(.6); opacity: .35; }
  50% { transform: scale(1.25); opacity: .1; }
}

.page-home .home-live-team {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .home-live-score {
  color: var(--orange);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}

.page-home .home-live-minute {
  color: var(--text-secondary);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.page-home .home-scores-note {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 12px;
  letter-spacing: .04em;
  border-top: 1px solid rgba(46, 71, 110, .8);
  padding-top: 14px;
}

.page-home .home-scores-cta {
  margin-top: 18px;
  width: 100%;
  text-align: center;
}

/* 运动轨迹 */
.page-home .home-hero-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  width: 100%;
  height: 90px;
  z-index: 1;
  pointer-events: none;
}

/* ---------- 2. 本周末赛程馆藏 ---------- */
.page-home .home-fixtures {
  padding: 64px 0 56px;
  background: var(--space-deep);
}

.page-home .home-section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.page-home .home-fixtures-intro {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}

.page-home .home-fixture-list {
  border-top: 1px solid var(--hairline);
}

.page-home .home-fx-row {
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background .25s ease;
}

.page-home .home-fx-row:hover {
  background: rgba(19, 38, 66, .45);
}

.page-home .home-fx-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-home .home-fx-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 18px 8px;
  cursor: pointer;
  transition: box-shadow .25s ease;
}

.page-home .home-fx-row:hover .home-fx-label {
  box-shadow: inset 0 -2px 0 var(--green);
}

.page-home .home-fx-time {
  color: var(--text-secondary);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
  min-width: 88px;
}

.page-home .home-fx-teams {
  color: var(--text-light);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .home-fx-teams strong {
  font-weight: 800;
}

.page-home .home-fx-vs {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.page-home .home-fx-comp {
  color: var(--text-secondary);
  font-size: 13px;
  flex: 1 1 auto;
  min-width: 200px;
}

.page-home .home-fx-more {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-secondary);
  transition: border-color .22s ease, color .22s ease;
  white-space: nowrap;
}

.page-home .home-fx-more-close {
  display: none;
}

.page-home .home-fx-toggle:checked ~ .home-fx-label .home-fx-more-open {
  display: none;
}

.page-home .home-fx-toggle:checked ~ .home-fx-label .home-fx-more-close {
  display: inline;
}

.page-home .home-fx-toggle:checked ~ .home-fx-label {
  box-shadow: inset 3px 0 0 var(--orange);
}

.page-home .home-fx-toggle:checked ~ .home-fx-label .home-fx-more {
  border-color: var(--orange);
  color: var(--orange);
}

.page-home .home-fx-detail {
  display: none;
  padding: 0 16px 20px;
}

.page-home .home-fx-toggle:checked ~ .home-fx-detail {
  display: block;
}

.page-home .home-fx-detail-inner {
  border-left: 2px solid var(--green);
  background: rgba(19, 38, 66, .5);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .home-fx-detail-inner p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.page-home .home-fx-detail-inner strong {
  color: var(--green);
  font-weight: 700;
}

.page-home .home-fx-detail-inner a {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 53, .4);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}

.page-home .home-fx-detail-inner a:hover {
  color: var(--green);
  border-color: var(--green);
}

.page-home .home-fixtures-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  padding-top: 28px;
  color: var(--text-secondary);
  font-size: 13px;
}

.page-home .home-fixtures-foot a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 255, 61, .5);
  transition: color .2s ease, border-color .2s ease;
}

.page-home .home-fixtures-foot a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* ---------- 3. 会员板块与比分表 ---------- */
.page-home .home-member {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--space-deep) 0%, var(--space-mid) 100%);
  position: relative;
  overflow: hidden;
}

.page-home .home-member::before {
  content: "";
  position: absolute;
  right: -160px;
  top: 40px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 255, 61, .06) 0%, transparent 65%);
  pointer-events: none;
}

.page-home .home-member-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 36px;
}

.page-home .home-member-copy {
  min-width: 0;
}

.page-home .home-member-desc {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  max-width: 540px;
  margin: 16px 0 0;
}

.page-home .home-member-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-member-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.page-home .home-member-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 10px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

.page-home .home-member-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-home .home-member-art {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  max-width: 620px;
}

.page-home .home-member-art img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  opacity: .8;
}

.page-home .home-member-panel {
  background: linear-gradient(160deg, var(--space-light) 0%, var(--space-mid) 100%);
  padding: 32px 24px;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 5% 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .32);
  border: 1px solid rgba(46, 71, 110, .7);
  border-radius: var(--radius);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.page-home .home-member-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.page-home .home-member-panel-hint {
  color: var(--text-secondary);
  font-size: 12px;
  letter-spacing: .1em;
}

.page-home .home-panel-note {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
  border-top: 1px solid rgba(46, 71, 110, .7);
  padding-top: 16px;
  margin: 20px 0 0;
}

.page-home .home-panel-link {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: .05em;
  transition: color .22s ease;
}

.page-home .home-panel-link:hover {
  color: var(--orange);
}

/* ---------- 4. 最新战报收藏 ---------- */
.page-home .home-reports {
  padding: 64px 0 56px;
  background: var(--space-deep);
}

.page-home .home-reports-intro {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}

.page-home .home-reports-grid {
  display: grid;
  gap: 24px;
}

.page-home .home-report-card {
  padding: 24px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.page-home .home-report-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
  border-color: var(--orange);
}

.page-home .home-report-meta {
  color: var(--text-secondary);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-left: 3px solid var(--green);
  padding-left: 10px;
}

.page-home .home-report-card .card-title {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 800;
  color: var(--text-light);
}

.page-home .home-report-card .card-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.page-home .home-report-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
}

.page-home .home-report-path {
  color: var(--text-secondary);
  font-size: 12px;
  text-decoration: none;
  transition: color .2s ease;
}

.page-home .home-report-path:hover {
  color: var(--green);
}

/* ---------- 5. 跨端同步提示条 ---------- */
.page-home .home-sync {
  padding: 0 0 72px;
  background: var(--space-deep);
}

.page-home .home-sync-shell {
  background: var(--green);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: grid;
  gap: 24px;
  color: var(--space-deep);
  box-shadow: 0 18px 50px rgba(201, 255, 61, .12);
  border: 1px solid rgba(201, 255, 61, .3);
}

.page-home .home-sync-art {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 0;
}

.page-home .home-sync-art img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.page-home .home-sync-copy .eyebrow {
  color: var(--space-deep);
}

.page-home .home-sync-copy .eyebrow::before {
  background-color: var(--space-deep);
}

.page-home .home-sync-title {
  font-size: clamp(24px, 4.5vw, 40px);
  font-weight: 900;
  line-height: 1.3;
  margin: 10px 0 12px;
  letter-spacing: -.02em;
}

.page-home .home-sync-title em {
  font-style: normal;
  display: block;
  color: var(--space-mid);
  font-weight: 900;
}

.page-home .home-sync-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(8, 18, 40, .85);
  margin: 0 0 24px;
  max-width: 560px;
}

.page-home .home-sync-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.page-home .home-sync-actions .btn-secondary {
  border-color: rgba(8, 18, 40, .7);
  color: var(--space-deep);
  background: transparent;
}

.page-home .home-sync-actions .btn-secondary:hover {
  background: rgba(8, 18, 40, .08);
  border-color: var(--space-deep);
}

.page-home .home-sync-contact {
  color: var(--space-deep);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(8, 18, 40, .4);
  padding-bottom: 2px;
  transition: border-color .2s ease;
}

.page-home .home-sync-contact:hover {
  border-color: var(--orange);
}

/* ---------- 平板增强 ---------- */
@media (min-width: 720px) {
  .page-home .home-hero-shell {
    grid-template-columns: 1fr 320px;
    align-items: stretch;
    gap: 32px;
  }

  .page-home .home-scores-card {
    min-height: 560px;
  }

  .page-home .home-section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-home .home-member-grid {
    grid-template-columns: 1fr 340px;
    gap: 28px;
  }

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

  .page-home .home-report-card:first-child {
    grid-column: 1 / -1;
  }

  .page-home .home-sync-shell {
    grid-template-columns: 200px 1fr;
    align-items: center;
    padding: 32px 36px;
  }
}

/* ---------- 桌面增强 ---------- */
@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 64px 0 96px;
  }

  .page-home .home-hero-shell {
    grid-template-columns: minmax(0, 1.25fr) minmax(380px, .75fr);
    gap: 48px;
  }

  .page-home .home-countdown {
    padding-top: 36px;
  }

  .page-home .home-scores-card {
    min-height: 560px;
  }

  .page-home .home-scores-inner {
    padding: 44px 32px 36px 48px;
  }

  .page-home .home-fixtures {
    padding: 88px 0 72px;
  }

  .page-home .home-fixture-list {
    margin-top: 16px;
  }

  .page-home .home-member {
    padding: 88px 0;
  }

  .page-home .home-member-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(400px, .9fr);
    gap: 60px;
  }

  .page-home .home-member-panel {
    padding: 40px 32px;
  }

  .page-home .home-reports {
    padding: 88px 0 72px;
  }

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

  .page-home .home-report-card:first-child {
    grid-column: auto;
  }

  .page-home .home-reports-grid .home-report-card:nth-child(2) {
    transform: translateY(18px) rotate(.6deg);
  }

  .page-home .home-reports-grid .home-report-card:nth-child(2):hover {
    transform: translateY(10px) rotate(.6deg);
  }

  .page-home .home-reports-grid .home-report-card:nth-child(3) {
    transform: translateY(32px) rotate(-.4deg);
  }

  .page-home .home-reports-grid .home-report-card:nth-child(3):hover {
    transform: translateY(24px) rotate(-.4deg);
  }
}

/* ---------- 超大屏 ---------- */
@media (min-width: 1440px) {
  .page-home .home-hero-shell {
    gap: 72px;
  }

  .page-home .home-scores-card {
    min-height: 620px;
  }

  .page-home .home-hero-track {
    bottom: 30px;
  }
}
