.page-home {
  --home-card-bg: rgba(255, 255, 255, 0.06);
  --home-line: rgba(255, 255, 255, 0.14);
  --home-deep-line: rgba(6, 29, 58, 0.12);
  --home-panel-bg: rgba(255, 255, 255, 0.05);
}

/* 面包屑上下文 */
.page-home .page-context {
  background: var(--deep-blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 0;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--rock-gray);
}

.page-home .page-context .container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .page-context-sep {
  color: var(--accent-orange);
}

.page-home .page-context-cur {
  color: var(--off-white);
}

/* 首屏标题区 */
.page-home .hero-intro {
  background: linear-gradient(135deg, #061D3A 0%, #0A2E5C 58%, #1A4A7A 100%);
  color: var(--off-white);
  padding: 40px 0 38px;
  position: relative;
  overflow: hidden;
}

.page-home .hero-intro::after {
  content: "";
  position: absolute;
  right: -5vw;
  top: 0;
  width: 30vw;
  height: 100%;
  background: repeating-linear-gradient(-45deg, rgba(255, 107, 0, 0.14) 0 8px, transparent 8px 16px);
  transform: skewX(-12deg);
  pointer-events: none;
}

.page-home .hero-kicker {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--highlight-yellow);
  margin: 0 0 10px;
}

.page-home .hero-intro h1 {
  max-width: 960px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(30px, 6vw, 62px);
  line-height: 1.06;
  margin: 0 0 14px;
  color: #ffffff;
  text-shadow: 3px 3px 0 rgba(6, 29, 58, 0.45);
  letter-spacing: 0.01em;
}

.page-home .hero-desc {
  max-width: 880px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.82);
}

/* 即时赛场 */
.page-home .live-section {
  background: var(--off-white);
  padding: 32px 0 48px;
}

.page-home .live-headline {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 20px;
}

.page-home .live-headline .section-title {
  font-size: 26px;
  margin: 0;
  color: var(--primary-blue);
}

.page-home .live-scale {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--rock-gray);
}

/* 首屏拼贴网格 */
.page-home .hero-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .hero-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-raised);
  position: relative;
  overflow: hidden;
}

/* 左侧大时间块 */
.page-home .hero-main {
  min-height: 320px;
  background: var(--primary-blue);
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 29, 58, 0.08) 0%, rgba(6, 29, 58, 0.68) 72%, rgba(6, 29, 58, 0.94) 100%);
}

.page-home .hero-live-block {
  position: relative;
  z-index: 1;
  padding: 54px 20px 20px;
}

.page-home .hero-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--highlight-yellow);
  background: rgba(6, 29, 58, 0.58);
  border: 1px solid rgba(255, 215, 0, 0.32);
  border-radius: 999px;
  padding: 5px 12px;
}

.page-home .hero-live-tag .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--moss-green);
  display: inline-block;
}

.page-home .hero-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.page-home .hero-team {
  font-family: var(--font-heading);
  font-size: clamp(18px, 3.4vw, 28px);
  color: #ffffff;
  flex: 1;
}

.page-home .hero-team-home {
  text-align: right;
}

.page-home .hero-team-away {
  text-align: left;
}

.page-home .hero-score {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 54px);
  color: var(--highlight-yellow);
  text-shadow: 0 0 22px rgba(255, 107, 0, 0.45);
  flex-shrink: 0;
}

.page-home .hero-match-info {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(248, 245, 240, 0.8);
  text-align: center;
  letter-spacing: 0.05em;
}

.page-home .hero-count {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 8px 16px;
  background: rgba(6, 29, 58, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 999px;
}

.page-home .count-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--off-white);
}

.page-home .count-num {
  font-family: var(--font-data);
  font-size: 24px;
  font-weight: 700;
  color: var(--highlight-yellow);
  line-height: 1;
}

/* 右侧热门赛事卡片 */
.page-home .hero-side {
  padding: 20px;
}

.page-home .hero-side-matches {
  background: var(--primary-blue);
  color: var(--off-white);
}

.page-home .hero-side-matches::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 49%, rgba(255, 107, 0, 0.5) 50%);
}

.page-home .hero-side-kicker {
  display: block;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--highlight-yellow);
  margin-bottom: 6px;
}

.page-home .mini-match {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
}

.page-home .mini-competition {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--highlight-yellow);
}

.page-home .mini-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 5px;
}

.page-home .mini-teams b {
  font-family: var(--font-data);
  font-size: 18px;
  color: #ffffff;
}

.page-home .mini-status {
  font-size: 12px;
  color: var(--rock-gray);
}

.page-home .mini-status.is-live {
  color: var(--moss-green);
}

.page-home .txt-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-orange);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

.page-home .txt-link:hover {
  color: var(--highlight-yellow);
}

/* 右侧数据卡片 */
.page-home .hero-side-data {
  background: linear-gradient(145deg, #ff7a1a 0%, var(--accent-orange) 60%, #d95400 100%);
  color: #ffffff;
}

.page-home .hero-side-data .hero-side-kicker {
  color: var(--deep-blue);
  opacity: 0.72;
}

.page-home .hero-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.page-home .hero-stat-num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 40px;
  color: #ffffff;
  line-height: 1;
}

.page-home .hero-stat-label {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

.page-home .hero-side-data .txt-link {
  color: var(--deep-blue);
}

.page-home .hero-side-data .txt-link:hover {
  color: #ffffff;
}

/* 赛事分组区 */
.page-home .comp-section {
  background: var(--primary-blue);
  color: var(--off-white);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}

.page-home .comp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.028) 0 22px, transparent 22px 44px);
  pointer-events: none;
}

.page-home .comp-section .container {
  position: relative;
  z-index: 1;
}

.page-home .comp-section .section-head {
  margin-bottom: 30px;
}

.page-home .comp-section .section-title {
  color: #ffffff;
}

.page-home .comp-section .section-note {
  color: rgba(248, 245, 240, 0.72);
}

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

.page-home .comp-panel {
  background: var(--home-panel-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--accent-orange);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  position: relative;
  transition: transform var(--transition-base), background var(--transition-base);
}

.page-home .comp-panel:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.page-home .comp-panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, transparent 49%, rgba(255, 107, 0, 0.28) 50%);
  pointer-events: none;
}

.page-home .comp-panel-league {
  border-top-color: var(--highlight-yellow);
}

.page-home .comp-panel-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.page-home .comp-code {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--accent-orange);
  letter-spacing: 0.12em;
}

.page-home .comp-panel-league .comp-code {
  color: var(--highlight-yellow);
}

.page-home .comp-panel-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: #ffffff;
}

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

.page-home .comp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.page-home .comp-list li:last-child {
  border-bottom: none;
}

.page-home .comp-item-code {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--highlight-yellow);
  flex-shrink: 0;
}

.page-home .comp-item-name {
  flex: 1;
  font-size: 14px;
  color: var(--off-white);
}

.page-home .comp-item-meta {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--rock-gray);
  text-align: right;
}

.page-home .comp-panel .btn {
  margin-top: 14px;
  width: 100%;
  box-sizing: border-box;
}

/* 回看集锦 */
.page-home .replay-section {
  background: var(--off-white);
  padding: 52px 0;
}

.page-home .replay-section .section-head {
  margin-bottom: 30px;
}

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

.page-home .replay-card {
  display: block;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: var(--deep-blue);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.page-home .replay-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-raised);
}

.page-home .replay-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.page-home .replay-card:hover .replay-media img {
  transform: scale(1.04);
}

.page-home .replay-info {
  padding: 16px;
}

.page-home .replay-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--primary-blue);
}

.page-home .replay-meta {
  margin: 0;
  font-size: 13px;
  color: var(--rock-gray);
  line-height: 1.6;
}

/* 移动工具区 */
.page-home .tool-section {
  background: #ffffff;
  padding: 52px 0;
}

.page-home .tool-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

.page-home .tool-visual {
  text-align: center;
}

.page-home .tool-visual-note {
  display: block;
  margin-top: 14px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--rock-gray);
}

.page-home .tool-phone {
  width: 190px;
  max-width: 68%;
  margin: 0 auto;
  background: var(--deep-blue);
  border-radius: 28px;
  padding: 12px 8px 18px;
  box-shadow: var(--shadow-raised), inset 0 0 0 1px rgba(255, 215, 0, 0.24);
  position: relative;
}

.page-home .tool-phone::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.page-home .tool-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.page-home .tool-section .section-head {
  margin-bottom: 22px;
}

.page-home .tool-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.page-home .tool-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--home-deep-line);
  font-size: 15px;
  color: var(--deep-blue);
  line-height: 1.6;
}

.page-home .tool-list li:last-child {
  border-bottom: none;
}

.page-home .tool-list-num {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--accent-orange);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 2px;
}

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

.page-home .tool-meta {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--rock-gray);
}

/* 数据校准区 */
.page-home .calib-section {
  background: var(--deep-blue);
  color: var(--off-white);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}

.page-home .calib-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--accent-orange) 0 60px, var(--highlight-yellow) 60px 120px);
  opacity: 0.8;
}

.page-home .calib-section .section-head {
  margin-bottom: 24px;
}

.page-home .calib-section .section-title {
  color: #ffffff;
}

.page-home .calib-section .section-note {
  color: rgba(248, 245, 240, 0.72);
}

.page-home .calib-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .calib-steps {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.page-home .calib-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 3px solid var(--accent-orange);
  border-radius: var(--radius);
}

.page-home .calib-step-code {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--highlight-yellow);
  flex-shrink: 0;
  white-space: nowrap;
}

.page-home .calib-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--off-white);
}

.page-home .calib-section .txt-link {
  color: var(--accent-orange);
}

.page-home .calib-section .txt-link:hover {
  color: var(--highlight-yellow);
}

.page-home .calib-visual img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-raised);
}

/* 快速导航区 */
.page-home .navfast-section {
  background: var(--off-white);
  padding: 52px 0;
}

.page-home .navfast-section .section-head {
  margin-bottom: 30px;
}

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

.page-home .navfast-card {
  display: block;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px 20px 22px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--deep-blue);
  border-left: 4px solid var(--primary-blue);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.page-home .navfast-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, transparent 49%, rgba(255, 107, 0, 0.12) 50%);
  transition: background var(--transition-base);
}

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

.page-home .navfast-card:hover::after {
  background: linear-gradient(135deg, transparent 49%, rgba(255, 107, 0, 0.24) 50%);
}

.page-home .navfast-code {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  margin-bottom: 10px;
}

.page-home .navfast-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.page-home .navfast-desc {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  color: var(--rock-gray);
}

/* 底部信任条 */
.page-home .trust-strip {
  background: var(--primary-blue);
  color: rgba(248, 245, 240, 0.85);
  padding: 22px 0;
  border-top: 3px solid var(--accent-orange);
}

.page-home .trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 20px;
}

.page-home .trust-strip p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.page-home .trust-sep {
  margin: 0 10px;
  color: var(--accent-orange);
}

/* 平板及以上布局 */
@media (min-width: 768px) {
  .page-home .hero-intro {
    padding: 54px 0 48px;
  }

  .page-home .hero-collage {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .hero-main {
    grid-column: 1 / -1;
    min-height: 420px;
  }

  .page-home .hero-live-block {
    padding: 70px 32px 28px;
  }

  .page-home .comp-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-home .tool-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
  }

  .page-home .calib-layout {
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
  }

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

/* 桌面完整拼贴布局 */
@media (min-width: 1024px) {
  .page-home .hero-intro {
    padding: 62px 0 54px;
  }

  .page-home .hero-intro h1 {
    font-size: 58px;
  }

  .page-home .live-section {
    padding: 40px 0 60px;
  }

  .page-home .hero-collage {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
  }

  .page-home .hero-main {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 460px;
  }

  .page-home .hero-side-matches {
    grid-column: 2;
    grid-row: 1;
  }

  .page-home .hero-side-data {
    grid-column: 2;
    grid-row: 2;
  }

  .page-home .comp-section,
  .page-home .replay-section,
  .page-home .tool-section,
  .page-home .calib-section,
  .page-home .navfast-section {
    padding: 68px 0;
  }

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