.page-home {
  --ph-shadow: 0 12px 40px rgba(10, 30, 60, 0.10);
  --ph-line: rgba(30, 58, 138, 0.08);
  --ph-grid-size: 36px;
  --ph-transition: 300ms ease-in-out;
  background: var(--ll-white);
}

/* ===== 页面引导区 ===== */
.page-home .home-intro {
  padding: 32px 24px 44px;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(255, 106, 0, 0.07), transparent 32%),
    linear-gradient(to right, var(--ph-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ph-line) 1px, transparent 1px);
  background-size:
    auto,
    var(--ph-grid-size) var(--ph-grid-size),
    var(--ph-grid-size) var(--ph-grid-size);
  border-bottom: 1px solid var(--ll-line);
}
.page-home .intro-shell {
  max-width: 1200px;
  margin: 0 auto;
}
.page-home .intro-flex {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 28px;
}
.page-home .intro-kicker {
  display: inline-block;
  font-family: var(--ll-font-head);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--ll-orange);
  border: 1px solid rgba(255, 106, 0, 0.35);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.page-home .intro-copy h1 {
  margin: 0;
  font-family: var(--ll-font-head);
  font-size: 32px;
  line-height: 1.15;
  color: var(--ll-deep-blue);
  letter-spacing: 0.02em;
}
.page-home .intro-lead {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ll-muted);
  max-width: 46ch;
}
.page-home .intro-stats {
  display: flex;
  gap: 16px;
}
.page-home .stat-item {
  flex: 1;
  min-width: 110px;
  background: var(--ll-white);
  border: 1px solid var(--ll-line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--ph-shadow);
}
.page-home .stat-num {
  display: block;
  font-family: var(--ll-font-data);
  font-size: 28px;
  font-weight: 700;
  color: var(--ll-deep-blue);
  line-height: 1.2;
}
.page-home .stat-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--ll-muted);
}

/* ===== 拼贴首屏 ===== */
.page-home .home-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 56px;
  display: grid;
  gap: 24px;
}
.page-home .focus-card {
  display: flex;
  flex-direction: column;
  background: var(--ll-white);
  border: 1px solid var(--ll-line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--ph-shadow);
  transition: transform var(--ph-transition), box-shadow var(--ph-transition);
}
.page-home .focus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(10, 30, 60, 0.14);
}
.page-home .focus-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--ll-deep-blue);
}
.page-home .focus-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .focus-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 60, 0) 55%, rgba(10, 30, 60, 0.55) 100%);
  pointer-events: none;
}
.page-home .focus-corner {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  font-family: var(--ll-font-data);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--ll-white);
  background: rgba(10, 30, 60, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 5px 12px;
}
.page-home .focus-coord {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.8);
}
.page-home .focus-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0;
}
.page-home .vertical-note {
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--ll-muted);
  text-transform: uppercase;
}
.page-home .focus-body {
  flex: 1;
  padding: 14px 20px 24px;
}
.page-home .match-category {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--ll-orange);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.page-home .match-title {
  margin: 0 0 16px;
  font-family: var(--ll-font-head);
  font-size: 24px;
  line-height: 1.25;
  color: var(--ll-deep-blue);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.page-home .match-title b {
  color: var(--ll-orange);
  font-size: 18px;
  font-family: var(--ll-font-data);
}
.page-home .match-time-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.page-home .time-digit {
  font-family: var(--ll-font-data);
  font-size: 30px;
  font-weight: 700;
  color: var(--ll-deep-blue);
}
.page-home .time-note {
  font-size: 13px;
  color: var(--ll-muted);
}
.page-home .match-points {
  margin: 0 0 20px;
  padding: 12px 0 0;
  list-style: none;
  border-top: 1px dashed var(--ll-line);
  display: grid;
  gap: 6px;
}
.page-home .match-points li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: var(--ll-text);
  line-height: 1.6;
}
.page-home .match-points li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--ll-orange);
  font-weight: 700;
}

/* ===== 首屏侧栏 ===== */
.page-home .hero-side {
  display: grid;
  gap: 24px;
  align-content: start;
}
.page-home .panel {
  background: var(--ll-white);
  border: 1px solid var(--ll-line);
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(10, 30, 60, 0.06);
  padding: 18px;
}
.page-home .panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.page-home .panel-chap {
  font-family: var(--ll-font-data);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ll-orange);
  text-transform: uppercase;
  border: 1px solid rgba(255, 106, 0, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
}
.page-home .panel-title {
  margin: 0;
  font-family: var(--ll-font-head);
  font-size: 17px;
  color: var(--ll-deep-blue);
}

/* ===== 今日赛程 ===== */
.page-home .schedule-panel {
  padding: 0 0 14px;
}
.page-home .schedule-media {
  height: 148px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: var(--ll-deep-blue);
}
.page-home .schedule-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .schedule-panel .panel-head {
  padding: 16px 18px 0;
  margin-bottom: 4px;
}
.page-home .schedule-list {
  padding: 0 18px;
}
.page-home .schedule-item {
  border-bottom: 1px solid var(--ll-line);
}
.page-home .schedule-item:last-child {
  border-bottom: none;
}
.page-home .schedule-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  transition: opacity 200ms ease;
  position: relative;
}
.page-home .schedule-item summary::-webkit-details-marker {
  display: none;
}
.page-home .schedule-item summary:hover {
  opacity: 0.72;
}
.page-home .schedule-item summary::after {
  content: "+";
  margin-left: 8px;
  font-family: var(--ll-font-data);
  font-size: 16px;
  color: var(--ll-orange);
  flex-shrink: 0;
}
.page-home .schedule-item[open] summary::after {
  content: "−";
}
.page-home .sport-tag {
  font-family: var(--ll-font-data);
  font-size: 11px;
  color: var(--ll-deep-blue);
  background: var(--ll-bg-light);
  border: 1px solid var(--ll-line);
  border-radius: 6px;
  padding: 2px 6px;
  flex-shrink: 0;
}
.page-home .match-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.page-home .teams {
  font-size: 14px;
  font-weight: 600;
  color: var(--ll-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-home .match-info .time {
  font-family: var(--ll-font-data);
  font-size: 12px;
  color: var(--ll-muted);
}
.page-home .status-live,
.page-home .status-todo {
  margin-left: auto;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
.page-home .status-live {
  color: var(--ll-white);
  background: var(--ll-success);
}
.page-home .status-todo {
  color: var(--ll-muted);
  background: var(--ll-bg-light);
}
.page-home .schedule-detail {
  padding: 0 0 14px;
  border-top: 1px dashed var(--ll-line);
}
.page-home .score-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 12px;
}
.page-home .score-team {
  font-size: 13px;
  color: var(--ll-text);
}
.page-home .score-num {
  font-family: var(--ll-font-data);
  font-size: 22px;
  font-weight: 700;
  color: var(--ll-deep-blue);
}
.page-home .score-sep {
  font-family: var(--ll-font-data);
  font-size: 16px;
  color: var(--ll-orange);
}
.page-home .schedule-detail p {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--ll-muted);
  line-height: 1.6;
}
.page-home .panel-more {
  display: inline-block;
  margin: 4px 18px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ll-orange);
  text-decoration: none;
  padding: 10px 0 0;
  border-top: 1px dashed var(--ll-line);
}
.page-home .panel-more:hover {
  text-decoration: underline;
}

/* ===== 最新公告 ===== */
.page-home .notice-panel .panel-head {
  margin-bottom: 4px;
}
.page-home .notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .notice-item + .notice-item {
  border-top: 1px dashed var(--ll-line);
}
.page-home .notice-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ll-deep-blue);
  transition: color 200ms ease;
}
.page-home .notice-item summary::-webkit-details-marker {
  display: none;
}
.page-home .notice-item summary::after {
  content: "＋";
  margin-left: auto;
  font-size: 12px;
  color: var(--ll-orange);
  flex-shrink: 0;
}
.page-home .notice-item[open] summary::after {
  content: "－";
}
.page-home .notice-item summary:hover {
  color: var(--ll-orange);
}
.page-home .notice-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ll-orange);
  flex-shrink: 0;
}
.page-home .notice-item[open] summary .notice-dot {
  background: var(--ll-success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}
.page-home .notice-body {
  padding: 0 0 14px 16px;
  font-size: 13px;
  color: var(--ll-muted);
  line-height: 1.7;
}
.page-home .notice-body p {
  margin: 0 0 6px;
}
.page-home .notice-body a {
  color: var(--ll-orange);
  font-weight: 600;
  text-decoration: none;
}
.page-home .notice-body a:hover {
  text-decoration: underline;
}

/* ===== 平台服务速览 ===== */
.page-home .home-platform {
  position: relative;
  background: var(--ll-deep-blue);
  padding: 56px 24px;
  overflow: hidden;
}
.page-home .home-platform::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: var(--ph-grid-size) var(--ph-grid-size);
  pointer-events: none;
}
.page-home .section-heading,
.page-home .platform-grid,
.page-home .platform-awards {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.page-home .section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.page-home .heading-index {
  font-family: var(--ll-font-data);
  font-size: 13px;
  color: var(--ll-orange);
  border: 1px solid rgba(255, 106, 0, 0.4);
  padding: 4px 8px;
  border-radius: 6px;
}
.page-home .section-heading h2 {
  margin: 0;
  font-family: var(--ll-font-head);
  font-size: 26px;
}
.page-home .heading-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-left: auto;
  letter-spacing: 0.06em;
}
.page-home .home-platform .section-heading h2 {
  color: var(--ll-white);
}
.page-home .platform-grid {
  display: grid;
  gap: 20px;
}
.page-home .platform-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform var(--ph-transition), background-color var(--ph-transition);
}
.page-home .platform-card:hover {
  transform: translateY(-4px) scale(1.01);
  background: rgba(255, 255, 255, 0.1);
}
.page-home .card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.page-home .card-index {
  font-family: var(--ll-font-data);
  font-size: 18px;
  font-weight: 700;
  color: var(--ll-orange);
}
.page-home .card-flag {
  font-family: var(--ll-font-head);
  font-size: 18px;
  color: var(--ll-white);
}
.page-home .card-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.page-home .card-spec span {
  font-size: 12px;
  color: var(--ll-light-orange);
  background: rgba(255, 106, 0, 0.14);
  border-radius: 6px;
  padding: 3px 8px;
}
.page-home .platform-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
}
.page-home .text-link {
  color: var(--ll-orange);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}
.page-home .text-link:hover {
  text-decoration: underline;
}
.page-home .platform-card--basketball {
  position: relative;
}
.page-home .card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 20px;
  overflow: hidden;
}
.page-home .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  display: block;
}
.page-home .platform-card--basketball > *:not(.card-media) {
  position: relative;
  z-index: 1;
}
.page-home .platform-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.page-home .award-tag {
  font-size: 13px;
  color: var(--ll-light-orange);
  border: 1px solid rgba(255, 183, 77, 0.35);
  background: rgba(255, 106, 0, 0.08);
  border-radius: 999px;
  padding: 8px 16px;
  letter-spacing: 0.05em;
}

/* ===== 旧版入口 ===== */
.page-home .home-legacy {
  padding: 56px 24px 64px;
  background: var(--ll-bg-light);
}
.page-home .legacy-box {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border: 2px dashed var(--ll-blue);
  border-radius: 24px;
  background: var(--ll-white);
  padding: 24px;
  display: grid;
  gap: 20px;
}
.page-home .legacy-media {
  border-radius: 16px;
  overflow: hidden;
  order: -1;
}
.page-home .legacy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .section-heading--legacy h2 {
  color: var(--ll-deep-blue);
}
.page-home .section-heading--legacy .heading-note {
  color: var(--ll-muted);
}
.page-home .legacy-copy p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ll-text);
  max-width: 58ch;
}
.page-home .legacy-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.page-home .legacy-axes {
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(30, 58, 138, 0.28);
  pointer-events: none;
}
.page-home .legacy-corner-note {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--ll-font-data);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ll-muted);
  opacity: 0.7;
}

/* ===== 响应式 ===== */
@media (min-width: 720px) {
  .page-home .intro-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .page-home .intro-stats {
    flex: 0 0 auto;
  }
  .page-home .stat-item {
    min-width: 140px;
  }
  .page-home .focus-media {
    height: 280px;
  }
  .page-home .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .legacy-box {
    grid-template-columns: 280px 1fr;
    align-items: center;
  }
  .page-home .legacy-media {
    order: 0;
  }
  .page-home .legacy-copy {
    padding-left: 8px;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    align-items: start;
  }
  .page-home .focus-media {
    height: 320px;
  }
  .page-home .focus-meta {
    padding-top: 24px;
  }
  .page-home .focus-body {
    padding: 16px 24px 28px;
  }
  .page-home .match-title {
    font-size: 28px;
  }
  .page-home .hero-side {
    row-gap: 24px;
  }
  .page-home .schedule-media {
    height: 160px;
  }
  .page-home .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .intro-copy h1 {
    font-size: 44px;
  }
  .page-home .intro-lead {
    font-size: 17px;
  }
  .page-home .legacy-box {
    padding: 32px 40px;
  }
}
