.page-home {
  --home-frame-line: rgba(234, 246, 255, 0.32);
  --home-card-bg: rgba(11, 30, 63, 0.86);
  --home-grid-line: rgba(140, 229, 255, 0.16);
  --home-rule: rgba(140, 229, 255, 0.22);
  --home-text: #EAF6FF;
  --home-muted: #A9BFD8;
  --home-green: #C5FF3D;
  --home-cyan: #8CE5FF;

  background: var(--color-deep-space);
  color: var(--home-text);
  overflow-x: hidden;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .container {
  max-width: 1320px;
  padding-left: 24px;
  padding-right: 24px;
}

.page-home .section-heading {
  color: var(--home-text);
}

/* ========== 首屏概览 ========== */
.page-home .home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #0A1428 0%, #0B1E3F 100%);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .home-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-home .home-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.72) 0%, rgba(10, 20, 40, 0.88) 60%, #0A1428 100%);
}

.page-home .home-hero__wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-home .home-hero__frame {
  position: relative;
  border: 1px solid var(--home-frame-line);
  padding: 28px 22px 24px;
  margin-left: 0;
  max-width: 900px;
  background: linear-gradient(135deg, rgba(11, 30, 63, 0.82), rgba(10, 20, 40, 0.76));
  box-shadow: 0 0 0 1px rgba(10, 20, 40, 0.2), 0 20px 60px rgba(0, 0, 0, 0.28);
}

.page-home .home-hero__frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, transparent 50%, var(--home-green) 50%);
}

.page-home .home-hero__frame::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--home-green) 50%, transparent 50%);
}

.page-home .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.page-home .home-hero__badge {
  display: inline-flex;
  align-items: center;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  background: var(--home-green);
  color: #0A1428;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 6px 14px 6px 12px;
  text-transform: uppercase;
}

.page-home .home-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--home-cyan);
  border: 1px solid rgba(140, 229, 255, 0.35);
  padding: 5px 10px;
}

.page-home .home-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-aqua-green);
  box-shadow: 0 0 0 3px rgba(62, 214, 138, 0.18);
}

.page-home .home-hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(26px, 4.6vw, 44px);
  line-height: 1.16;
  margin: 0 0 16px;
  color: var(--home-text);
  letter-spacing: -0.01em;
}

.page-home .home-hero__lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--home-muted);
  max-width: 32em;
  margin: 0 0 24px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .home-hero .btn--primary {
  background: var(--home-green);
  color: #0A1428;
  font-weight: 700;
  border: 0;
  padding: 10px 18px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.page-home .home-hero .btn--ghost {
  background: transparent;
  color: var(--home-text);
  border: 1px solid rgba(234, 246, 255, 0.4);
  padding: 10px 18px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.page-home .home-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  border-top: 1px solid var(--home-rule);
  padding-top: 20px;
}

.page-home .home-hero__stat {
  border-left: 2px solid var(--home-green);
  padding-left: 12px;
}

.page-home .home-hero__stat dt {
  font-size: 12px;
  color: var(--home-muted);
  margin-bottom: 4px;
}

.page-home .home-hero__stat dd {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 18px;
  color: var(--home-text);
  margin: 0;
}

/* ========== 目录索引 ========== */
.page-home .home-index {
  padding-top: 64px;
  padding-bottom: 40px;
}

.page-home .home-index__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}

.page-home .home-index__head p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
}

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

.page-home .home-index__card {
  position: relative;
  display: block;
  background: var(--home-card-bg);
  border: 1px solid rgba(140, 229, 255, 0.12);
  padding: 22px 20px 20px 24px;
  text-decoration: none;
  color: var(--home-text);
  min-height: 120px;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .home-index__card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, transparent 50%, rgba(197, 255, 61, 0.7) 50%);
}

.page-home .home-index__card:hover,
.page-home .home-index__card:focus-visible {
  border-color: rgba(197, 255, 61, 0.8);
  transform: translateY(-3px);
}

.page-home .home-index__no {
  display: block;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--home-green);
  margin-bottom: 12px;
}

.page-home .home-index__card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 6px;
}

.page-home .home-index__card em {
  display: block;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  color: var(--home-muted);
}

/* ========== 赛讯阅更新说明 ========== */
.page-home .home-updates {
  padding: 48px 0 72px;
  background: #08101F;
  background-image: linear-gradient(rgba(140, 229, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 40px;
}

.page-home .home-updates .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-home .home-updates .breadcrumb__link {
  color: var(--home-cyan);
  text-decoration: none;
  font-size: 13px;
}

.page-home .home-updates .breadcrumb__link[aria-current="page"] {
  color: var(--home-muted);
}

.page-home .home-updates .content-grid {
  display: grid;
  gap: 32px;
}

.page-home .home-updates .content-grid__main p:first-of-type {
  color: var(--home-muted);
  margin-bottom: 24px;
}

.page-home .home-updates__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-updates__item {
  background: rgba(11, 30, 63, 0.92);
  border: 1px solid rgba(140, 229, 255, 0.12);
  border-left: 3px solid var(--home-green);
}

.page-home .home-updates__item[open] {
  border-left-color: var(--home-cyan);
}

.page-home .home-updates__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--home-text);
}

.page-home .home-updates__item summary::before {
  content: "+";
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--home-green);
  color: #0A1428;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 16px;
}

.page-home .home-updates__item[open] summary::before {
  content: "–";
}

.page-home .home-updates__item summary::-webkit-details-marker {
  display: none;
}

.page-home .home-updates__body {
  padding: 0 18px 18px 50px;
}

.page-home .home-updates__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-muted);
}

.page-home .home-aside {
  background: linear-gradient(160deg, rgba(11, 30, 63, 0.96), rgba(10, 20, 40, 0.96));
  border: 1px solid rgba(197, 255, 61, 0.2);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  padding: 24px 22px 22px;
}

.page-home .home-aside h3 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: var(--home-green);
}

.page-home .home-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .home-aside__list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--home-text);
}

.page-home .home-aside__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--home-cyan);
  transform: rotate(45deg);
}

/* ========== 射门统计入口 ========== */
.page-home .home-shots {
  padding: 64px 0 72px;
  background: linear-gradient(180deg, #0A1428 0%, #0B1E3F 100%);
  background-image: radial-gradient(rgba(140, 229, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.page-home .home-shots__container {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-home .home-shots__content p {
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.7;
}

.page-home .home-shots__points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.page-home .home-shots__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--home-green);
  border-right: 2px solid var(--home-green);
  transform: rotate(45deg);
}

.page-home .home-shots .btn--primary {
  background: var(--home-green);
  color: #0A1428;
  font-weight: 700;
  padding: 12px 20px;
  border: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.page-home .home-shots__figure {
  margin: 0;
}

.page-home .home-shots__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(140, 229, 255, 0.2);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.page-home .home-shots__figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--home-muted);
  border-left: 2px solid var(--home-cyan);
  padding-left: 12px;
}

/* ========== 赛程与阵容 ========== */
.page-home .home-fixtures {
  padding: 60px 0;
  background: #08101F;
  border-top: 1px solid rgba(140, 229, 255, 0.12);
  border-bottom: 1px solid rgba(140, 229, 255, 0.12);
}

.page-home .home-fixtures__head {
  margin-bottom: 28px;
}

.page-home .home-fixtures__head p {
  color: var(--home-muted);
}

.page-home .home-fixtures__tracks {
  display: grid;
  gap: 20px;
}

.page-home .home-fixtures__track {
  background: rgba(11, 30, 63, 0.88);
  border: 1px solid rgba(140, 229, 255, 0.14);
  position: relative;
  padding: 24px 20px 20px;
}

.page-home .home-fixtures__track::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 60px;
  height: 3px;
  background: var(--home-green);
}

.page-home .home-fixtures__title {
  margin: 0 0 18px;
}

.page-home .home-fixtures__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 15px;
  color: #0A1428;
  background: var(--home-green);
  padding: 5px 12px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.page-home .home-fixtures__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .home-fixtures__li {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.page-home .home-fixtures__time {
  flex: 0 0 58px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--home-cyan);
  font-weight: 500;
}

.page-home .home-fixtures__li p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--home-text);
}

.page-home .home-fixtures__note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--home-muted);
  border: 1px solid rgba(197, 255, 61, 0.18);
  padding: 12px 14px;
  background: rgba(197, 255, 61, 0.04);
}

.page-home .home-fixtures__line {
  display: block;
  flex: 0 0 auto;
  width: 4px;
  height: 36px;
  background: linear-gradient(180deg, var(--home-green), var(--home-cyan));
}

/* ========== 控球率洞察 ========== */
.page-home .home-possession {
  padding: 64px 0 72px;
  background: #0A1428;
}

.page-home .home-possession__inner {
  max-width: 1100px;
}

.page-home .home-possession__head {
  margin-bottom: 28px;
}

.page-home .home-possession__head p {
  color: var(--home-muted);
}

.page-home .home-possession__figure {
  margin: 0 0 8px;
}

.page-home .home-possession__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(140, 229, 255, 0.2);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.page-home .home-possession__figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--home-muted);
  border-left: 2px solid var(--home-cyan);
  padding-left: 12px;
}

.page-home .home-possession__svg {
  display: none;
  width: 100%;
  height: auto;
  margin-top: 26px;
  border: 1px solid rgba(140, 229, 255, 0.1);
  background: rgba(11, 30, 63, 0.75);
  padding: 16px;
}

.page-home .home-possession__bullets {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.page-home .home-possession__bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--home-text);
}

.page-home .home-possession__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 2px;
  background: var(--home-green);
}

.page-home .home-possession__link {
  display: inline-block;
  margin-top: 22px;
  color: var(--home-cyan);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(140, 229, 255, 0.5);
  padding-bottom: 2px;
}

.page-home .home-possession__link:hover {
  color: var(--home-green);
  border-bottom-color: var(--home-green);
}

/* ========== 平板同步提示 ========== */
.page-home .home-sync {
  padding: 60px 0 72px;
  background: linear-gradient(140deg, #0B1E3F 0%, #0A1428 65%);
  border-top: 1px solid rgba(197, 255, 61, 0.14);
}

.page-home .home-sync__container {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-home .home-sync__figure {
  margin: 0;
}

.page-home .home-sync__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(197, 255, 61, 0.24);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.page-home .home-sync__figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--home-muted);
  border-left: 2px solid var(--home-green);
  padding-left: 12px;
}

.page-home .home-sync__content p {
  color: var(--home-muted);
  line-height: 1.7;
}

.page-home .home-sync__points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .home-sync__points li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--home-text);
}

.page-home .home-sync__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--home-green);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.page-home .home-sync__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(62, 214, 138, 0.08);
  border: 1px solid rgba(62, 214, 138, 0.4);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--home-text);
  margin-bottom: 22px;
}

.page-home .home-sync__status-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-aqua-green);
  box-shadow: 0 0 0 3px rgba(62, 214, 138, 0.18);
}

.page-home .home-sync .btn--ghost {
  background: transparent;
  color: var(--home-text);
  border: 1px solid rgba(234, 246, 255, 0.4);
  padding: 10px 18px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

/* ========== 底部路由 ========== */
.page-home .home-route {
  padding: 56px 0 64px;
  background: #0A1428;
  border-top: 1px solid rgba(140, 229, 255, 0.16);
}

.page-home .home-route h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--home-text);
}

.page-home .home-route p {
  color: var(--home-muted);
  max-width: 46em;
  line-height: 1.75;
  margin: 0 0 24px;
}

.page-home .home-route__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-route__links a {
  display: inline-block;
  background: rgba(11, 30, 63, 0.9);
  border: 1px solid rgba(140, 229, 255, 0.24);
  color: var(--home-text);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 16px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.page-home .home-route__links a:hover,
.page-home .home-route__links a:focus-visible {
  background: var(--home-green);
  color: #0A1428;
  border-color: var(--home-green);
}

/* ========== 媒体查询 ========== */
@media (min-width: 640px) {
  .page-home .home-hero__frame {
    padding: 36px 40px 30px;
  }

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

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

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

@media (min-width: 960px) {
  .page-home .home-updates {
    padding-top: 64px;
  }

  .page-home .home-updates .content-grid {
    grid-template-columns: minmax(0, 8fr) minmax(0, 3fr);
    gap: 40px;
  }

  .page-home .home-shots__container {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 48px;
  }

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

  .page-home .home-fixtures__tracks {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-home .home-sync__container {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: 56px;
  }

  .page-home .home-sync__figure {
    order: 0;
  }

  .page-home .home-possession__svg {
    display: block;
  }

  .page-home .home-possession__figure {
    margin-bottom: 0;
  }
}

@media (min-width: 1100px) {
  .page-home .home-hero {
    min-height: 88vh;
    padding: 80px 0 64px;
  }

  .page-home .home-hero__frame {
    margin-left: 0;
    max-width: 920px;
    padding: 42px 46px 34px;
  }

  .page-home .home-hero__stats {
    gap: 24px;
  }

  .page-home .home-index {
    padding-top: 80px;
    padding-bottom: 56px;
  }

  .page-home .home-index__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-home .home-index__card:nth-child(5) {
    grid-column: span 2;
  }

  .page-home .home-index__card:nth-child(4) {
    grid-column: span 1;
  }

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

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

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

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