.page-home {
  --home-accent: #FF8A4C;
  --home-teal: #00D3B4;
  --home-yellow: #FFC857;
  --home-rose: #FF5C7A;
  --home-bg-deep: #0A1628;
  --home-bg-card: #13263F;
  --home-bg-panel: #101E33;
  --home-text: #E6F0FF;
  --home-muted: #8FA9C9;
  --home-line: #2E4B6B;
  --home-font-head: "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-body: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-num: "Roboto Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --home-radius: 20px;
  --home-radius-soft: 14px;
  background-color: var(--home-bg-deep);
  color: var(--home-text);
  font-family: var(--home-font-body);
  overflow-x: hidden;
}
.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--home-radius-soft);
}
.page-home a {
  color: inherit;
  text-decoration: none;
}
.page-home .eyebrow {
  display: inline-block;
  font-family: var(--home-font-num);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-accent);
  border-left: 3px solid var(--home-accent);
  padding-left: 10px;
  margin-bottom: 16px;
}
.page-home .home-title {
  font-family: var(--home-font-head);
  font-weight: 900;
  font-size: 40px;
  line-height: 1.16;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.page-home .home-section-title {
  font-family: var(--home-font-head);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.page-home .home-desc,
.page-home .home-section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--home-muted);
  max-width: 640px;
  margin: 0;
}
.page-home .text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--home-teal);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}
.page-home .text-link:hover {
  color: var(--home-accent);
  transform: translateX(3px);
}
.page-home .foot-note {
  font-size: 13px;
  color: var(--home-muted);
  line-height: 1.6;
}
.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .btn-primary {
  background: var(--home-accent);
  color: #0A1628;
  border: 1px solid var(--home-accent);
}
.page-home .btn-primary:hover {
  background: #ff9e64;
  border-color: #ff9e64;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 138, 76, 0.25);
}
.page-home .btn-ghost {
  background: transparent;
  color: var(--home-text);
  border: 1px solid var(--home-line);
}
.page-home .btn-ghost:hover {
  border-color: var(--home-teal);
  color: var(--home-teal);
  transform: translateY(-2px);
}

/* 首屏顶部状态 */
.page-home .home-topline {
  padding: 26px 20px 0;
  position: relative;
}
.page-home .home-topline::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 75, 107, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 75, 107, 0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 30% 20%, black, transparent 80%);
  pointer-events: none;
}
.page-home .home-topline__meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto 18px;
}
.page-home .home-topline__kick {
  font-family: var(--home-font-num);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--home-muted);
  text-transform: uppercase;
}
.page-home .home-topline__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--home-teal);
  font-weight: 600;
}
.page-home .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-teal);
  box-shadow: 0 0 0 4px rgba(0, 211, 180, 0.18);
}
.page-home .home-topline__lead {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  font-family: var(--home-font-head);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #E6F0FF 0%, #00D3B4 55%, #FF8A4C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 4px;
}

/* 命令栏 */
.page-home .home-command {
  max-width: 1280px;
  margin: 26px auto 0;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.page-home .home-command__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.page-home .command-link {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--home-muted);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.page-home .command-link:hover {
  color: var(--home-text);
  border-color: var(--home-line);
  background: rgba(46, 75, 107, 0.25);
}
.page-home .home-command__right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .command-refresh {
  font-family: var(--home-font-num);
  font-size: 13px;
  color: var(--home-teal);
  background: rgba(0, 211, 180, 0.08);
  border: 1px solid rgba(0, 211, 180, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
}

/* 赛程中心 */
.page-home .home-schedule {
  max-width: 1280px;
  margin: 70px auto 0;
  padding: 0 20px;
}
.page-home .home-schedule__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 34px;
}
.page-home .home-schedule__badge {
  display: flex;
  gap: 10px;
  align-items: center;
}
.page-home .badge-version {
  font-family: var(--home-font-num);
  font-size: 14px;
  color: var(--home-yellow);
  background: rgba(255, 200, 87, 0.1);
  border: 1px solid rgba(255, 200, 87, 0.35);
  padding: 6px 16px;
  border-radius: 999px;
  transform: skewX(-5deg);
}
.page-home .badge-live {
  font-family: var(--home-font-num);
  font-size: 13px;
  color: var(--home-teal);
  background: rgba(0, 211, 180, 0.12);
  border: 1px solid rgba(0, 211, 180, 0.4);
  padding: 6px 12px;
  border-radius: 999px;
  animation: home-pulse-soft 2s ease-in-out infinite;
}
@keyframes home-pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.page-home .home-schedule__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.page-home .schedule-board {
  background: var(--home-bg-card);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.page-home .schedule-board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--home-accent), var(--home-teal));
  opacity: 0.7;
}
.page-home .schedule-board__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--home-line);
}
.page-home .schedule-board__refresh {
  font-size: 13px;
  color: var(--home-teal);
  font-family: var(--home-font-num);
  font-weight: 500;
}
.page-home .match-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--home-bg-panel);
  border-radius: var(--home-radius-soft);
  padding: 20px 22px;
  margin-bottom: 24px;
  border: 1px solid rgba(46, 75, 107, 0.6);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .match-card:hover {
  border-color: var(--home-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.page-home .match-card__team {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-home .match-card__team--right {
  text-align: right;
  align-items: flex-end;
}
.page-home .match-card__name {
  font-size: 18px;
  font-weight: 800;
}
.page-home .match-card__form {
  font-size: 13px;
  color: var(--home-muted);
  font-family: var(--home-font-num);
}
.page-home .match-card__score {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--home-font-num);
}
.page-home .score-num {
  font-size: 42px;
  font-weight: 700;
  color: var(--home-accent);
}
.page-home .score-sep {
  font-size: 20px;
  color: var(--home-muted);
}
.page-home .trend-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 24px;
}
.page-home .trend-compare__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-home .trend-label {
  font-size: 13px;
  color: var(--home-muted);
  line-height: 1.4;
}
.page-home .trend-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
  border-bottom: 1px solid var(--home-line);
  padding-bottom: 4px;
}
.page-home .trend-bar {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 138, 76, 0.85), rgba(255, 92, 122, 0.55));
  border-radius: 6px 6px 0 0;
  min-height: 14px;
  position: relative;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.page-home .trend-bar:hover {
  filter: brightness(1.25);
  transform: scaleY(1.03);
  transform-origin: bottom;
}
.page-home .trend-bar i {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  font-family: var(--home-font-num);
  font-size: 12px;
  color: var(--home-accent);
}
.page-home .trend-bar--ghost {
  background: linear-gradient(180deg, rgba(0, 211, 180, 0.8), rgba(0, 211, 180, 0.3));
}
.page-home .trend-bar--ghost i {
  color: var(--home-teal);
}
.page-home .schedule-board__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--home-line);
  padding-top: 18px;
}
.page-home .schedule-visual {
  margin: 0;
  position: relative;
}
.page-home .schedule-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(0, 211, 180, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.page-home .schedule-visual figcaption,
.page-home .home-sync__visual figcaption,
.page-home .video-card figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--home-muted);
  line-height: 1.5;
  text-align: center;
}

/* 实时数据流水 */
.page-home .home-live {
  max-width: 1280px;
  margin: 80px auto 0;
  padding: 0 20px;
}
.page-home .home-live__head {
  margin-bottom: 30px;
}
.page-home .live-panel {
  background: var(--home-bg-card);
  border-radius: var(--home-radius);
  border: 1px solid var(--home-line);
  overflow: hidden;
}
.page-home .live-panel__row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 0.8fr 0.7fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(46, 75, 107, 0.55);
  font-size: 15px;
  transition: background-color 0.2s ease;
}
.page-home .live-panel__row:last-child {
  border-bottom: none;
}
.page-home .live-panel__row:hover {
  background: rgba(0, 211, 180, 0.04);
}
.page-home .live-panel__row--header {
  font-family: var(--home-font-num);
  font-size: 13px;
  color: var(--home-muted);
  cursor: default;
}
.page-home .live-team {
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-home .live-team i {
  font-style: normal;
  color: var(--home-muted);
  font-weight: 400;
  margin: 0 6px;
}
.page-home .live-score {
  font-family: var(--home-font-num);
  font-weight: 700;
  color: var(--home-accent);
  font-size: 17px;
}
.page-home .live-val {
  font-family: var(--home-font-num);
  color: var(--home-text);
}
.page-home .live-trend {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-home .live-trend--up {
  color: var(--home-rose);
}
.page-home .live-trend--down {
  color: var(--home-teal);
}
.page-home .live-trend--flat {
  color: var(--home-yellow);
}
.page-home .live-data__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.page-home .live-data__stat {
  font-family: var(--home-font-num);
  font-size: 14px;
  color: var(--home-text);
  background: rgba(255, 138, 76, 0.08);
  border: 1px solid rgba(255, 138, 76, 0.28);
  border-radius: 999px;
  padding: 8px 18px;
  transform: skewX(-4deg);
  display: inline-block;
}

/* 数据面板联动 */
.page-home .home-sync {
  max-width: 1280px;
  margin: 80px auto 0;
  padding: 0 20px;
}
.page-home .home-sync__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
.page-home .home-sync__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--home-text);
  margin: 0 0 26px;
}
.page-home .sync-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.page-home .sync-list__item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(46, 75, 107, 0.5);
}
.page-home .sync-list__item:last-child {
  border-bottom: none;
}
.page-home .sync-list__num {
  font-family: var(--home-font-num);
  font-size: 14px;
  color: var(--home-teal);
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 4px;
}
.page-home .sync-list__item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}
.page-home .sync-list__item p {
  margin: 0;
  font-size: 14px;
  color: var(--home-muted);
  line-height: 1.7;
}
.page-home .home-sync__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 19 / 12;
  border: 1px solid rgba(255, 138, 76, 0.3);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

/* 视频集锦 */
.page-home .home-video {
  max-width: 1280px;
  margin: 80px auto 0;
  padding: 0 20px;
}
.page-home .home-video__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 30px;
}
.page-home .home-video__badge {
  font-family: var(--home-font-num);
  font-size: 42px;
  font-weight: 700;
  color: var(--home-accent);
  line-height: 1;
  transform: skewX(-8deg);
  writing-mode: horizontal-tb;
}
.page-home .video-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.page-home .video-card {
  margin: 0;
  background: var(--home-bg-card);
  border-radius: var(--home-radius-soft);
  overflow: hidden;
  border: 1px solid var(--home-line);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .video-card:hover {
  border-color: var(--home-accent);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}
.page-home .video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
}
.page-home .video-card figcaption {
  padding: 12px 16px 14px;
  margin: 0;
  text-align: left;
  font-weight: 600;
}
.page-home .video-track__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--home-line);
}

/* 数据对照 */
.page-home .home-visual {
  max-width: 1280px;
  margin: 80px auto 0;
  padding: 0 20px;
}
.page-home .home-visual__desc {
  font-size: 16px;
  color: var(--home-muted);
  line-height: 1.7;
  max-width: 640px;
}
.page-home .radar-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}
.page-home .radar-chart {
  background: var(--home-bg-card);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  padding: 16px;
}
.page-home .radar-chart svg {
  width: 100%;
  height: auto;
  max-height: 460px;
}
.page-home .radar-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-home .radar-legend__item {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-text);
}
.page-home .radar-legend__item::before {
  content: "";
  width: 18px;
  height: 10px;
  border-radius: 4px;
  display: inline-block;
  transform: skewX(-10deg);
}
.page-home .radar-legend__item--home::before {
  background: var(--home-accent);
}
.page-home .radar-legend__item--away::before {
  background: var(--home-teal);
}
.page-home .radar-note {
  font-size: 13px;
  color: var(--home-muted);
  line-height: 1.7;
  margin: 8px 0 0;
}
.page-home .home-visual__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.page-home .stat-block {
  background: var(--home-bg-card);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-soft);
  padding: 20px 18px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.page-home .stat-block:hover {
  border-color: var(--home-teal);
  transform: translateY(-3px);
}
.page-home .stat-block__num {
  display: block;
  font-family: var(--home-font-num);
  font-size: 30px;
  font-weight: 700;
  color: var(--home-accent);
  margin-bottom: 4px;
}
.page-home .stat-block__label {
  display: block;
  font-size: 13px;
  color: var(--home-muted);
}

/* 信任声明 */
.page-home .home-trust {
  max-width: 1280px;
  margin: 80px auto 0;
  padding: 0 20px 70px;
}
.page-home .home-trust__inner {
  background: linear-gradient(135deg, rgba(255, 138, 76, 0.12), rgba(0, 211, 180, 0.08));
  border: 1px solid rgba(255, 138, 76, 0.25);
  border-radius: var(--home-radius);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
}
.page-home .home-trust__inner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 76, 0.3), transparent 70%);
  pointer-events: none;
}
.page-home .home-trust__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--home-text);
  max-width: 720px;
  margin: 0 0 26px;
}
.page-home .home-trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

@media (min-width: 900px) {
  .page-home .home-schedule__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
  }
  .page-home .home-sync__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
  }
  .page-home .radar-wrap {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
  }
  .page-home .home-live__head,
  .page-home .home-schedule__head,
  .page-home .home-video__head,
  .page-home .home-visual__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
  }
  .page-home .home-live__head {
    display: block;
  }
}

@media (max-width: 640px) {
  .page-home .live-panel__row {
    grid-template-columns: 1.2fr 0.6fr 1fr;
    padding: 12px 14px;
    gap: 8px;
    font-size: 14px;
  }
  .page-home .live-panel__row--header {
    display: none;
  }
  .page-home .live-trend {
    grid-column: 1 / -1;
  }
  .page-home .trend-compare {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-home .score-num {
    font-size: 34px;
  }
  .page-home .home-title {
    font-size: 30px;
  }
  .page-home .home-section-title {
    font-size: 26px;
  }
  .page-home .home-video__badge {
    display: none;
  }
  .page-home .home-schedule__head {
    flex-direction: column;
  }
  .page-home .home-trust__inner {
    padding: 28px 20px;
  }
  .page-home .home-topline__lead {
    font-size: 26px;
  }
}
