.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}
.page-home {
  --home-deep: #0B1B3A;
  --home-neon: #C6FF00;
  --home-orange: #FF7A00;
  --home-black: #000;
  --home-white: #fff;
  --home-gray: #F5F5F5;
  --home-mid-gray: #3A4663;
  --home-text: #667;
  --home-card-radius: 24px;
  --home-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-body, "Noto Sans SC", "PingFang SC", sans-serif);
}
.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
}
.page-home .container {
  width: 100%;
  max-width: var(--container-max, 1280px);
  margin: 0 auto;
  padding: 0 20px;
}
.page-home .section {
  padding: 72px 0;
  position: relative;
}
.page-home .section-dark {
  background: var(--home-deep);
  color: var(--home-white);
}
.page-home .section-light {
  background: var(--home-gray);
}
.page-home .section-deep {
  background: linear-gradient(135deg, var(--home-black) 0%, var(--home-deep) 100%);
  color: var(--home-white);
}
.page-home .panel-corner {
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}
.page-home .btn-sport {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--home-neon);
  color: var(--home-black);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 100px;
  border: 2px solid var(--home-neon);
  transition: all var(--home-transition);
}
.page-home .btn-sport:hover,
.page-home .btn-sport:focus-visible {
  background: transparent;
  color: var(--home-neon);
  outline: none;
}
.page-home .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--home-white);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all var(--home-transition);
}
.page-home .btn-outline:hover,
.page-home .btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--home-neon);
  color: var(--home-neon);
  outline: none;
}
.page-home .section-light .btn-outline {
  color: var(--home-deep);
  border-color: var(--home-deep);
}
.page-home .section-light .btn-outline:hover,
.page-home .section-light .btn-outline:focus-visible {
  background: var(--home-deep);
  color: var(--home-neon);
  border-color: var(--home-deep);
}

/* 首屏 */
.page-home .home-hero {
  position: relative;
  min-height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: stretch;
  background: var(--home-deep);
  color: var(--home-white);
  overflow: hidden;
}
.page-home .home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.28;
}
.page-home .home-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 27, 58, 0.92) 0%, rgba(11, 27, 58, 0.72) 50%, rgba(11, 27, 58, 0.35) 100%);
}
.page-home .home-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(198, 255, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 255, 0, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.6;
}
.page-home .home-hero-slant {
  position: absolute;
  top: 0;
  right: -8%;
  width: 46%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(135deg, rgba(198, 255, 0, 0.1) 0%, transparent 60%);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  pointer-events: none;
}
.page-home .home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 32px;
  padding-top: 60px;
  padding-bottom: 48px;
}
.page-home .home-hero-narrative {
  max-width: 640px;
}
.page-home .home-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--home-neon);
  font-weight: 600;
  margin-bottom: 20px;
}
.page-home .home-hero-kicker::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--home-neon);
}
.page-home .home-hero h1 {
  font-family: var(--font-title, "Noto Sans SC", "PingFang SC", sans-serif);
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.page-home .home-hero-lead {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 36px;
  max-width: 520px;
}
.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.page-home .home-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
}
.page-home .home-hero-stat {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.page-home .home-hero-stat dt {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.56);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.page-home .home-hero-stat dd {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: var(--home-white);
  font-family: var(--font-title, "Noto Sans SC", "PingFang SC", sans-serif);
}
.page-home .home-hero-visual {
  position: relative;
  display: none;
  height: 100%;
  min-height: 480px;
  align-items: center;
  justify-content: center;
}
.page-home .home-hero-circle {
  position: absolute;
  width: 380px;
  height: 380px;
  z-index: 0;
  transform: rotate(0deg);
}
.page-home .home-hero-pitch {
  position: relative;
  z-index: 1;
  width: 340px;
  height: 420px;
  object-fit: cover;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  opacity: 0.82;
}
.page-home .home-hero-speedlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.page-home .home-hero-speedlines span {
  position: absolute;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--home-neon) 0%, transparent 100%);
  opacity: 0.55;
  border-radius: 4px;
}
.page-home .home-hero-speedlines span:nth-child(1) {
  width: 210px;
  top: 22%;
  right: 8%;
  transform: rotate(-8deg);
}
.page-home .home-hero-speedlines span:nth-child(2) {
  width: 150px;
  top: 28%;
  right: 2%;
  transform: rotate(6deg);
  opacity: 0.3;
}
.page-home .home-hero-speedlines span:nth-child(3) {
  width: 280px;
  top: 58%;
  right: 12%;
  transform: rotate(-4deg);
}
.page-home .home-hero-speedlines span:nth-child(4) {
  width: 110px;
  top: 72%;
  right: -4%;
  transform: rotate(12deg);
  opacity: 0.32;
}
.page-home .home-hero-speedlines span:nth-child(5) {
  width: 190px;
  top: 84%;
  right: 22%;
  transform: rotate(-9deg);
}

/* 比分面板 */
.page-home .home-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 36px;
}
.page-home .home-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-neon);
  margin: 0 0 8px;
}
.page-home .home-section-tag::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--home-neon);
}
.page-home .section-light .home-section-tag,
.page-home .home-coverage .home-section-tag {
  color: var(--home-deep);
}
.page-home .section-light .home-section-tag::after,
.page-home .home-coverage .home-section-tag::after {
  background: var(--home-orange);
}
.page-home .home-section-head h2,
.page-home .home-features-intro h2,
.page-home .home-coverage-head h2,
.page-home .home-cta h2 {
  font-family: var(--font-title, "Noto Sans SC", "PingFang SC", sans-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}
.page-home .home-section-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
  max-width: 380px;
}
.page-home .home-score-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.page-home .home-score-card {
  position: relative;
  background: rgba(255, 255, 255, 0.045);
  border-radius: 12px;
  padding: 28px 26px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--home-transition);
}
.page-home .home-score-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.page-home .home-score-verse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.page-home .home-score-sport {
  font-size: 13px;
  font-weight: 700;
  color: var(--home-neon);
  letter-spacing: 0.08em;
}
.page-home .home-score-time {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.page-home .home-score-main {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}
.page-home .home-score-team {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}
.page-home .home-score-teams {
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-home .home-score-main .home-score-team:first-child {
  text-align: right;
}
.page-home .home-score-main .home-score-team:last-child {
  text-align: left;
}
.page-home .home-score-num {
  font-family: var(--font-title, "Noto Sans SC", "PingFang SC", sans-serif);
  font-size: 34px;
  font-weight: 900;
  color: var(--home-neon);
  letter-spacing: 0.02em;
  text-shadow: 0 0 18px rgba(198, 255, 0, 0.3);
}
.page-home .home-score-divider {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}
.page-home .home-score-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
}
.page-home .home-score-bar {
  flex: 1 1 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 3px;
  overflow: hidden;
}
.page-home .home-score-bar span {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: var(--home-neon);
  box-shadow: 0 0 8px rgba(198, 255, 0, 0.4);
}
.page-home .home-score-live {
  position: absolute;
  top: 26px;
  right: 24px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--home-black);
  background: var(--home-neon);
  padding: 4px 10px;
  border-radius: 40px;
  text-transform: uppercase;
}
.page-home .home-score-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  text-align: center;
}
.page-home .home-score-footer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.page-home .home-score-footer a {
  color: var(--home-neon);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* 核心功能 */
.page-home .home-features-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.page-home .home-features-intro {
  max-width: 620px;
}
.page-home .home-features-lead {
  font-size: 17px;
  line-height: 1.85;
  color: var(--home-text);
  margin: 20px 0 36px;
}
.page-home .home-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
}
.page-home .home-feature-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.page-home .home-feature-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--home-deep);
  position: relative;
  margin-top: 2px;
}
.page-home .home-feature-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: var(--home-neon);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.page-home .home-feature-copy h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--home-deep);
  margin: 0 0 6px;
}
.page-home .home-feature-copy p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-text);
  margin: 0;
}
.page-home .home-features-media {
  position: relative;
  align-self: center;
}
.page-home .home-features-media img {
  width: 100%;
  border-radius: 8px;
  clip-path: polygon(36px 0, 100% 0, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0 100%, 0 36px);
  min-height: 280px;
  object-fit: cover;
}
.page-home .home-features-media-slant {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 27, 58, 0.28), transparent 55%);
  pointer-events: none;
  border-radius: 8px;
}

/* APP 区块 */
.page-home .home-app-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.page-home .home-app-copy {
  max-width: 600px;
}
.page-home .home-app-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-orange);
  font-weight: 700;
  margin: 0 0 12px;
}
.page-home .home-app-copy h2 {
  font-family: var(--font-title, "Noto Sans SC", "PingFang SC", sans-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 20px;
}
.page-home .home-app-desc {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
  font-size: 16px;
  margin: 0 0 28px;
}
.page-home .home-app-points {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.page-home .home-app-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}
.page-home .home-app-points li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: var(--home-orange);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.page-home .home-app-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-home .home-app-visual img {
  width: 260px;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* 更新日志 */
.page-home .home-log-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.page-home .home-log-list::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--home-neon) 0%, rgba(198, 255, 0, 0.25) 60%, transparent);
}
.page-home .home-log-item {
  position: relative;
  padding-left: 48px;
  margin-bottom: 32px;
}
.page-home .home-log-item:last-child {
  margin-bottom: 0;
}
.page-home .home-log-dot {
  position: absolute;
  left: 0;
  top: 24px;
  width: 18px;
  height: 18px;
  background: var(--home-neon);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(198, 255, 0, 0.16);
}
.page-home .home-log-card {
  background: var(--home-white);
  border-radius: 12px;
  padding: 26px 28px 30px;
  box-shadow: 0 6px 28px rgba(11, 27, 58, 0.06);
}
.page-home .home-log-time {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--home-orange);
  margin: 0 0 10px;
  background: rgba(255, 122, 0, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
}
.page-home .home-log-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--home-deep);
  margin: 0 0 10px;
}
.page-home .home-log-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--home-text);
  margin: 0 0 16px;
}
.page-home .home-log-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--home-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--home-neon);
  padding-bottom: 2px;
  transition: color var(--home-transition);
}
.page-home .home-log-link:hover,
.page-home .home-log-link:focus-visible {
  color: var(--home-orange);
}

/* 数据覆盖 */
.page-home .home-coverage {
  background: var(--home-gray);
  overflow: hidden;
}
.page-home .home-coverage-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(11, 27, 58, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(11, 27, 58, 0.05) 100%);
  pointer-events: none;
}
.page-home .home-coverage-inner {
  position: relative;
  z-index: 1;
}
.page-home .home-coverage-head {
  max-width: 720px;
  margin-bottom: 44px;
}
.page-home .home-coverage-desc {
  font-size: 17px;
  line-height: 1.85;
  color: var(--home-text);
  margin: 18px 0 0;
}
.page-home .home-coverage-head h2 {
  color: var(--home-deep);
}
.page-home .home-coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.page-home .home-coverage-stat {
  background: var(--home-white);
  border-radius: 12px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(11, 27, 58, 0.05);
  transition: transform var(--home-transition);
}
.page-home .home-coverage-stat:hover {
  transform: translateY(-4px);
}
.page-home .home-coverage-num {
  font-family: var(--font-title, "Noto Sans SC", "PingFang SC", sans-serif);
  font-size: 40px;
  font-weight: 900;
  color: var(--home-deep);
  letter-spacing: -0.02em;
}
.page-home .home-coverage-stat:nth-child(2) .home-coverage-num {
  color: var(--home-orange);
}
.page-home .home-coverage-stat:nth-child(3) .home-coverage-num {
  color: var(--home-deep);
}
.page-home .home-coverage-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--home-deep);
  margin-top: 12px;
}
.page-home .home-coverage-detail {
  font-size: 13px;
  color: var(--home-text);
  margin-top: 6px;
}
.page-home .home-coverage-media figure {
  margin: 0;
  position: relative;
}
.page-home .home-coverage-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  clip-path: polygon(32px 0, 100% 0, 100% calc(100% - 32px), calc(100% - 32px) 100%, 0 100%, 0 32px);
}
.page-home .home-coverage-media figcaption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--home-text);
  line-height: 1.7;
  max-width: 640px;
}
.page-home .home-coverage-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* CTA 区块 */
.page-home .home-cta {
  background: var(--home-deep);
  overflow: hidden;
}
.page-home .home-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(198, 255, 0, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-home .home-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.page-home .home-cta-copy {
  max-width: 640px;
}
.page-home .home-cta-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 15px;
  margin: 12px 0 0;
}
.page-home .home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* 桌面端断点 */
@media (min-width: 768px) {
  .page-home .home-hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .page-home .home-hero-stat {
    padding: 16px 16px 16px 0;
  }
  .page-home .home-score-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .page-home .home-score-card {
    padding: 30px 28px;
  }
  .page-home .home-features-wrap {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
  }
  .page-home .home-app-inner {
    grid-template-columns: 1fr 0.6fr;
    gap: 64px;
  }
  .page-home .home-app-visual img {
    width: 300px;
  }
  .page-home .home-coverage-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .page-home .home-coverage-media img {
    height: 400px;
  }
}

@media (min-width: 1100px) {
  .page-home .home-hero-inner {
    grid-template-columns: 1fr 0.85fr;
    padding-top: 0;
  }
  .page-home .home-hero-visual {
    display: flex;
  }
  .page-home .home-hero-btn-mobile {
    display: inline-flex;
  }
  .page-home .home-log-list::before {
    left: 16px;
  }
  .page-home .home-log-item {
    padding-left: 68px;
  }
  .page-home .home-log-dot {
    left: 8px;
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 479px) {
  .page-home .home-score-num {
    font-size: 28px;
  }
  .page-home .home-score-main {
    gap: 10px;
  }
  .page-home .home-feature-list li {
    flex-direction: row;
  }
  .page-home .home-cta-actions,
  .page-home .home-score-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .page-home .home-cta-actions .btn-sport,
  .page-home .home-cta-actions .btn-outline,
  .page-home .home-score-footer .btn-outline {
    width: 100%;
  }
}
</PAGE_CSS>
