.page-home {
  --card-radius: 2px;
  --shadow-card: 0 10px 28px rgba(0, 0, 0, 0.35);
  --cyan-glow: 0 0 12px rgba(0, 229, 255, 0.3);
  --section-alt-bg: #0d1428;
}

/* ================= Hero 首屏 ================= */
.page-home .hero-cover {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: calc(var(--header-height) + 2.5rem) 1.5rem 3.5rem;
  background: var(--bg-dark);
  overflow: hidden;
}

.page-home .hero-cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-orange) 0%, var(--highlight-yellow) 45%, var(--data-cyan) 100%);
  z-index: 3;
}

.page-home .hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 16, 32, 0.95) 0%, rgba(10, 30, 63, 0.85) 45%, rgba(10, 30, 63, 0.45) 75%, rgba(11, 16, 32, 0.7) 100%);
  z-index: 1;
}

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

.page-home .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  display: block;
}

.page-home .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.page-home .hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--data-cyan);
  margin-bottom: 0.9rem;
  display: inline-block;
  border-left: 2px solid var(--secondary-orange);
  padding-left: 0.75rem;
}

.page-home .hero-title-block h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 9vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin: 0;
  text-transform: uppercase;
}

.page-home .hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--highlight-yellow);
  margin-top: 0.5rem;
  letter-spacing: 0.12em;
}

.page-home .hero-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 34em;
  margin-top: 1.35rem;
}

.page-home .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: 1.7rem;
}

.page-home .hero-stat-item {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.page-home .hero-stat-item strong {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--data-cyan);
  margin-right: 0.3rem;
}

.page-home .hero-index-block {
  background: rgba(10, 30, 63, 0.78);
  border: 1px solid rgba(30, 44, 71, 0.85);
  border-left: 3px solid var(--secondary-orange);
  padding: 1.5rem 1.25rem;
}

.page-home .hero-index-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--data-cyan);
  letter-spacing: 0.14em;
  margin-bottom: 0.9rem;
}

.page-home .hero-index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.page-home .hero-index-list a {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.5rem 0.5rem;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.page-home .hero-index-list a span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--secondary-orange);
  min-width: 2.2em;
}

.page-home .hero-index-list a:hover {
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.05);
}

.page-home .hero-live {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-grid);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.page-home .hero-live-dot {
  width: 7px;
  height: 7px;
  background: var(--success-green);
  border-radius: 50%;
  flex: 0 0 auto;
}

.page-home .hero-live-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ================= 章节通用 ================= */
.page-home .section-cards,
.page-home .section-matchlist,
.page-home .section-content-center,
.page-home .section-user-zone,
.page-home .section-trust {
  scroll-margin-top: calc(var(--header-height) + 1rem);
  padding: 4.5rem 0;
}

.page-home .section-cards,
.page-home .section-content-center,
.page-home .section-trust {
  background: var(--bg-dark);
}

.page-home .section-matchlist,
.page-home .section-user-zone {
  background: var(--section-alt-bg);
}

.page-home .section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 100%;
}

.page-home .section-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--secondary-orange);
  line-height: 1;
}

.page-home .section-heading-text {
  flex: 1;
  min-width: 12em;
}

.page-home .section-heading-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text-light);
}

.page-home .section-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.page-home .section-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--line-grid);
  color: var(--highlight-yellow);
  padding: 0.3rem 0.6rem;
  white-space: nowrap;
}

/* ================= 01 36小时红黄牌清样 ================= */
.page-home .cards-layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.page-home .card-main {
  display: grid;
  gap: 0;
  background: var(--primary-deep-blue);
  border: 1px solid var(--line-grid);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .card-main:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--cyan-glow);
}

.page-home .card-img-wrap {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}

.page-home .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

.page-home .card-corner-note {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  background: rgba(11, 16, 32, 0.8);
  color: var(--highlight-yellow);
  border: 1px solid var(--line-grid);
  padding: 0.25rem 0.5rem;
}

.page-home .card-main-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: center;
}

.page-home .card-main-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}

.page-home .card-main-body p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.page-home .card-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--data-cyan);
  border-left: 2px solid var(--data-cyan);
  padding-left: 0.6rem;
}

.page-home .refresh-hint {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--highlight-yellow);
  opacity: 0.8;
  transition: opacity 0.2s, text-shadow 0.2s;
}

.page-home .card-main:hover .refresh-hint {
  opacity: 1;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.35);
}

.page-home .card-stat {
  background: var(--primary-deep-blue);
  border: 1px solid var(--line-grid);
  border-radius: var(--card-radius);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 108px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.page-home .stat-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--highlight-yellow);
}

.page-home .stat-a .stat-num {
  color: var(--secondary-orange);
}

.page-home .stat-b .stat-num {
  color: var(--data-cyan);
}

.page-home .stat-d .stat-num {
  color: var(--purple-accent);
}

.page-home .stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ================= 02 今日赛事清单 ================= */
.page-home .matchlist-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.page-home .match-list-col {
  border: 1px solid var(--line-grid);
  background: rgba(10, 30, 63, 0.5);
}

.page-home .match-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line-grid);
  align-items: center;
}

.page-home .filter-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-right: 0.25rem;
}

.page-home .filter-chip {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-light);
  border: 1px solid var(--line-grid);
  padding: 0.18rem 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.page-home .filter-chip em {
  font-style: normal;
  color: var(--data-cyan);
}

.page-home .filter-chip.active {
  border-color: var(--secondary-orange);
  color: var(--secondary-orange);
}

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

.page-home .match-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--line-grid);
  transition: background 0.2s;
}

.page-home .match-row:last-child {
  border-bottom: none;
}

.page-home .match-row:hover {
  background: rgba(255, 107, 53, 0.04);
}

.page-home .match-time {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--data-cyan);
}

.page-home .match-league {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.95rem;
}

.page-home .match-status {
  margin-left: auto;
  padding: 0.2rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  border-radius: var(--card-radius);
}

.page-home .is-done {
  background: rgba(33, 181, 115, 0.14);
  color: var(--success-green);
}

.page-home .is-live {
  background: rgba(255, 107, 53, 0.18);
  color: var(--secondary-orange);
}

.page-home .is-upcoming {
  background: rgba(154, 166, 181, 0.12);
  color: var(--text-muted);
}

.page-home .match-indicator {
  flex-basis: 100%;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.page-home .match-live .match-time::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--secondary-orange);
  display: inline-block;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.page-home .match-live {
  background: rgba(255, 107, 53, 0.05);
}

.page-home .match-check-btn {
  color: var(--highlight-yellow);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 215, 0, 0.6);
  padding-bottom: 2px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  transition: color 0.2s, border-color 0.2s;
}

.page-home .match-check-btn:hover {
  color: var(--data-cyan);
  border-color: var(--data-cyan);
}

.page-home .verify-panel {
  display: grid;
  gap: 1.5rem;
  border: 1px solid var(--line-grid);
  background: linear-gradient(135deg, rgba(10, 30, 63, 0.92), rgba(11, 16, 32, 0.88));
  padding: 1.5rem;
  border-radius: var(--card-radius);
}

.page-home .verify-img-wrap {
  order: 1;
}

.page-home .verify-img-wrap img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.page-home .verify-info {
  order: 2;
}

.page-home .verify-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--secondary-orange);
  display: inline-block;
  border-left: 2px solid var(--secondary-orange);
  padding-left: 0.5rem;
  margin-bottom: 0.6rem;
}

.page-home .verify-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-light);
  margin: 0 0 0.5rem;
}

.page-home .verify-info p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.page-home .progress-track {
  height: 6px;
  background: rgba(154, 166, 181, 0.15);
  position: relative;
  margin: 0.9rem 0 0.5rem;
}

.page-home .progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 78%;
  background: linear-gradient(90deg, var(--secondary-orange), var(--highlight-yellow));
}

.page-home .verify-percent {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--highlight-yellow);
}

.page-home .verify-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.55rem;
}

/* ================= 03 内容中心入口 ================= */
.page-home .content-center-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-home .cc-img-block {
  border: 1px solid var(--line-grid);
  padding: 0.75rem;
  background: rgba(10, 30, 63, 0.55);
}

.page-home .cc-img-block img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.page-home .cc-img-caption {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  text-align: center;
}

.page-home .cc-text-block .cc-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.page-home .feature-list {
  list-style: none;
  margin: 1.3rem 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.page-home .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light);
}

.page-home .feature-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--secondary-orange);
  flex: 0 0 auto;
}

/* ================= 04 用户专区新版 ================= */
.page-home .zone-layout {
  display: grid;
  gap: 1rem;
}

.page-home .zone-card {
  border: 1px solid var(--line-grid);
  border-left: 3px solid var(--secondary-orange);
  background: rgba(10, 30, 63, 0.6);
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .zone-card:nth-child(2) {
  border-left-color: var(--highlight-yellow);
}

.page-home .zone-card:nth-child(3) {
  border-left-color: var(--data-cyan);
}

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

.page-home .zone-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 0.6rem;
}

.page-home .zone-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.page-home .zone-footnote {
  margin-top: 1.75rem;
  border-top: 1px solid var(--line-grid);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.page-home .zone-footnote p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0;
}

/* ================= 05 数据服务能力与资质 ================= */
.page-home .trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.page-home .trust-item {
  border: 1px solid var(--line-grid);
  background: rgba(10, 30, 63, 0.5);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-radius: var(--card-radius);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.page-home .trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.35);
}

.page-home .trust-item:nth-child(even) {
  margin-top: 1.25rem;
}

.page-home .trust-num {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--data-cyan);
  line-height: 1.1;
}

.page-home .trust-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.page-home .trust-note {
  margin-top: 2rem;
  border-left: 2px solid var(--data-cyan);
  padding-left: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.page-home .trust-note p {
  margin: 0;
  max-width: 640px;
}

.page-home .trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.page-home .trust-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.page-home .trust-links a:hover {
  color: var(--data-cyan);
}

/* ================= 桌面端栅格增强 ================= */
@media (min-width: 768px) {
  .page-home .card-main {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .verify-panel {
    grid-template-columns: 150px 1fr;
    align-items: center;
  }

  .page-home .verify-img-wrap,
  .page-home .verify-info {
    order: unset;
  }

  .page-home .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .page-home .trust-item:nth-child(even) {
    margin-top: 0;
  }

  .page-home .trust-item:nth-child(3n + 2) {
    margin-top: 1.25rem;
  }
}

@media (min-width: 900px) {
  .page-home .matchlist-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }

  .page-home .content-center-layout {
    grid-template-columns: 0.55fr 1.45fr;
    gap: 3rem;
  }

  .page-home .zone-layout {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .page-home .cards-layout {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }

  .page-home .card-main {
    grid-column: 1 / span 7;
    grid-row: span 2;
  }

  .page-home .card-stat {
    margin: 0;
  }

  .page-home .stat-a {
    grid-column: 8 / span 5;
  }

  .page-home .stat-b {
    grid-column: 8 / span 5;
  }

  .page-home .stat-c {
    grid-column: 1 / span 3;
    margin-top: -1rem;
  }

  .page-home .stat-d {
    grid-column: 5 / span 3;
    margin-top: -1rem;
  }
}

@media (min-width: 1024px) {
  .page-home .hero-cover {
    padding: calc(var(--header-height) + 3rem) 3rem 4rem;
  }

  .page-home .hero-content {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 4rem;
  }
}

@media (min-width: 1200px) {
  .page-home .trust-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-home .trust-item:nth-child(3n + 2) {
    margin-top: 0;
  }
}
