.page-home {
  --home-orange: #FF6B00;
  --home-cyan: #00E5FF;
  --home-green: #39FF14;
  --home-purple: #7B4BFF;
  --home-space: #0B1B3D;
  --home-ice: #F0F2F6;
  --home-navy: #1B3358;
  --home-line: #24406B;
  --home-card-shadow: 0 2px 16px rgba(11,27,61,.08);
  --home-radius-lg: 24px;
  --home-radius-md: 16px;
  --home-radius-sm: 8px;
}

.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}

.page-home .container {
  width: 100%;
  max-width: var(--container-w, 1280px);
  margin: 0 auto;
  padding: 0 20px;
}

.page-home .section {
  padding: 64px 0;
}

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

.page-home .section--dark {
  background: var(--home-space);
  color: var(--color-white, #F4F7FB);
  position: relative;
  overflow: hidden;
}

.page-home .section--dark::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(123,75,255,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.page-home .section-eyebrow {
  font-family: var(--font-data, monospace);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--home-orange);
  font-weight: 600;
  margin: 0 0 6px;
}

.page-home .section-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -.01em;
}

.page-home .section--dark .section-title {
  color: var(--color-white, #F4F7FB);
}

.page-home .section-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-gray, #7A8A9A);
  margin: 0;
  max-width: 640px;
}

.page-home .section--dark .section-desc {
  color: rgba(244,247,251,.7);
}

/* ==================== 实时数据滚动条 ==================== */
.page-home .home-ticker {
  background: var(--home-space);
  border-bottom: 2px solid var(--home-orange);
  padding: 0;
  position: relative;
  z-index: 10;
}

.page-home .ticker-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: var(--container-w, 1280px);
  margin: 0 auto;
  padding: 10px 20px;
  gap: 10px;
}

.page-home .ticker-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 12px;
  border-right: 1px solid var(--home-line);
  flex-shrink: 0;
}

.page-home .ticker-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--home-green);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-data, monospace);
}

.page-home .ticker-live .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-green);
  display: inline-block;
  animation: homePulse 1.2s infinite;
}

@keyframes homePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}

.page-home .ticker-time {
  color: rgba(244,247,251,.55);
  font-size: 12px;
  font-family: var(--font-data, monospace);
}

.page-home .ticker-scroll {
  flex: 1;
  overflow: hidden;
  min-width: 260px;
}

.page-home .ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: homeTickerScroll 38s linear infinite;
}

@keyframes homeTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.page-home .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(244,247,251,.75);
  font-size: 12px;
  font-family: var(--font-data, monospace);
}

.page-home .ticker-item b {
  color: var(--home-orange);
  font-weight: 700;
}

.page-home .ticker-item em {
  font-style: normal;
  font-weight: 700;
}

.page-home .ticker-item small {
  color: rgba(244,247,251,.45);
  font-size: 11px;
}

.page-home .ticker-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--home-cyan);
  font-size: 12px;
  font-weight: 600;
}

.page-home .ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--home-cyan);
  display: inline-block;
}

/* ==================== 框景首屏 ==================== */
.page-home .hero-frame {
  position: relative;
  background: var(--home-space);
  min-height: 520px;
  overflow: hidden;
  border-bottom: 3px solid var(--home-line);
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
}

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11,27,61,.95) 0%, rgba(11,27,61,.72) 45%, rgba(11,27,61,.88) 100%);
}

.page-home .speed-lines {
  position: absolute;
  inset: 0;
  opacity: .18;
  background: repeating-linear-gradient(115deg, transparent 0px, transparent 22px, rgba(0,229,255,.35) 23px, transparent 24px, transparent 46px);
  pointer-events: none;
  z-index: 1;
}

.page-home .hero-frame-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-w, 1280px);
  margin: 0 auto;
  padding: 56px 20px 48px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .hero-gridlines {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image:
    linear-gradient(rgba(0,229,255,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.2) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-home .hero-content {
  max-width: 560px;
  margin-bottom: 36px;
}

.page-home .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: var(--font-data, monospace);
  margin-bottom: 16px;
}

.page-home .hero-label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--home-orange);
}

.page-home .hero-title {
  font-size: 40px;
  font-weight: 900;
  color: var(--color-white, #F4F7FB);
  margin: 0 0 14px;
  line-height: 1.08;
  letter-spacing: -.02em;
  font-style: italic;
  text-transform: uppercase;
}

.page-home .hero-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(244,247,251,.78);
  margin: 0 0 28px;
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--home-radius-sm);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
  border: 0;
}

.page-home .btn-primary {
  background: var(--home-orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,0,.3);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.page-home .btn-ghost {
  background: transparent;
  color: var(--color-white, #F4F7FB);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}

.page-home .btn-light {
  background: var(--color-white, #F4F7FB);
  color: var(--home-space);
}

.page-home .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,0,.35);
}

.page-home .btn-ghost:hover {
  border-color: var(--home-cyan);
  color: var(--home-cyan);
  box-shadow: 0 4px 16px rgba(0,229,255,.15);
}

.page-home .hero-scoreboard {
  background: linear-gradient(135deg, rgba(27,51,88,.9) 0%, rgba(11,27,61,.95) 100%);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-lg);
  padding: 24px;
  max-width: 460px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  position: relative;
}

.page-home .hero-scoreboard::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--home-orange), var(--home-cyan), var(--home-purple));
  border-radius: 2px;
}

.page-home .scoreboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(244,247,251,.08);
  padding-bottom: 12px;
}

.page-home .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,45,45,.15);
  border: 1px solid rgba(255,45,45,.5);
  color: #ff4d4d;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 22px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: var(--font-data, monospace);
}

.page-home .live-badge .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4d4d;
  display: inline-block;
  animation: homePulse 1s infinite;
}

.page-home .scoreboard-league {
  color: rgba(244,247,251,.6);
  font-size: 12px;
  font-family: var(--font-data, monospace);
}

.page-home .scoreboard-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.page-home .score-team {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .score-team:last-child {
  text-align: right;
}

.page-home .score-team-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white, #F4F7FB);
  letter-spacing: -.01em;
}

.page-home .score-team-stat {
  font-size: 11px;
  color: rgba(244,247,251,.5);
}

.page-home .score-center {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.page-home .score-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--home-green);
  line-height: 1;
}

.page-home .score-colon {
  color: rgba(244,247,251,.5);
  font-size: 30px;
  font-weight: 400;
}

.page-home .scoreboard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(244,247,251,.08);
  padding-top: 12px;
  font-size: 12px;
  color: rgba(244,247,251,.55);
}

.page-home .scoreboard-refresh {
  color: var(--home-cyan);
  font-family: var(--font-data, monospace);
  font-size: 11px;
}

/* ==================== 周末赛程表 ==================== */
.page-home .schedule-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.page-home .schedule-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  background: var(--home-ice);
  border-radius: 999px;
  padding: 4px;
}

.page-home .schedule-tab {
  background: transparent;
  border: 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text, #16233F);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  font-family: var(--font-body, sans-serif);
}

.page-home .schedule-tab.is-active {
  background: var(--home-space);
  color: var(--color-white, #F4F7FB);
}

.page-home .schedule-note {
  font-size: 12px;
  color: var(--color-gray, #7A8A9A);
  font-family: var(--font-data, monospace);
}

.page-home .schedule-board {
  border-radius: var(--home-radius-md);
  overflow: hidden;
  box-shadow: var(--home-card-shadow);
  border: 1px solid rgba(11,27,61,.06);
}

.page-home .schedule-row {
  display: grid;
  grid-template-columns: 52px 1fr 120px 72px;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: #fff;
  border-bottom: 1px solid rgba(11,27,61,.05);
  font-size: 13px;
  transition: background .2s ease;
}

.page-home .schedule-row:last-child {
  border-bottom: 0;
}

.page-home .schedule-row:hover {
  background: rgba(255,107,0,.04);
}

.page-home .schedule-row--head {
  background: var(--home-space);
  color: rgba(244,247,251,.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
}

.page-home .schedule-league {
  font-weight: 800;
  color: var(--home-orange);
  font-size: 12px;
}

.page-home .schedule-match {
  font-weight: 500;
  color: var(--color-text, #16233F);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .schedule-match em {
  font-style: normal;
  font-weight: 700;
  color: var(--home-space);
  margin: 0 2px;
}

.page-home .schedule-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gray, #7A8A9A);
  border-radius: 999px;
  padding: 3px 10px;
  background: rgba(122,138,154,.1);
}

.page-home .schedule-status--live {
  background: rgba(255,45,45,.12);
  color: #ff3b3b;
}

.page-home .schedule-status--done {
  background: rgba(57,255,20,.1);
  color: #2dc414;
}

/* ==================== 直播频道 ==================== */
.page-home .channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.page-home .channel-card {
  position: relative;
  display: block;
  background: var(--home-navy);
  border-radius: var(--home-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-white, #F4F7FB);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  border: 1px solid var(--home-line);
}

.page-home .channel-card:hover {
  transform: translateY(-4px) rotate(-.4deg);
  box-shadow: 0 16px 44px rgba(0,0,0,.4);
  border-color: var(--home-cyan);
}

.page-home .channel-card--main {
  grid-row: span 2;
}

.page-home .channel-card--main .channel-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.page-home .channel-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--home-navy);
}

.page-home .channel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

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

.page-home .channel-card-body {
  padding: 18px 18px 16px;
}

.page-home .channel-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--color-white, #F4F7FB);
  line-height: 1.4;
}

.page-home .channel-card-body p {
  font-size: 12px;
  color: rgba(244,247,251,.6);
  margin: 0 0 10px;
  line-height: 1.5;
}

.page-home .channel-delay {
  font-size: 11px;
  color: var(--home-cyan);
}

.page-home .channel-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11,27,61,.8);
  border: 1px solid var(--home-cyan);
  color: var(--home-cyan);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--font-data, monospace);
}

.page-home .channel-community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--home-navy) 0%, var(--home-space) 100%);
  border-radius: var(--home-radius-lg);
  padding: 24px;
  border: 1px solid var(--home-line);
}

.page-home .community-img {
  border-radius: var(--home-radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.page-home .community-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .community-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white, #F4F7FB);
  margin: 0 0 10px;
  line-height: 1.3;
}

.page-home .community-text p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(244,247,251,.7);
  margin: 0 0 20px;
}

/* ==================== 战报速递 ==================== */
.page-home .report-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

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

.page-home .report-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--home-radius-sm);
  border: 1px solid rgba(11,27,61,.06);
  padding: 14px 16px;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.page-home .report-item:hover {
  box-shadow: var(--home-card-shadow);
  border-color: rgba(255,107,0,.25);
}

.page-home .report-league {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--home-space);
  color: var(--home-orange);
  font-family: var(--font-data, monospace);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--home-radius-sm);
  padding: 4px 8px;
  flex-shrink: 0;
}

.page-home .report-body {
  flex: 1;
  min-width: 0;
}

.page-home .report-match {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text, #16233F);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.page-home .report-match em {
  font-style: normal;
  font-weight: 800;
  font-family: var(--font-data, monospace);
  color: var(--home-space);
}

.page-home .report-time {
  font-size: 11px;
  color: var(--color-gray, #7A8A9A);
  margin-top: 2px;
  display: block;
}

.page-home .report-status {
  font-family: var(--font-data, monospace);
  font-size: 13px;
  font-weight: 800;
  color: var(--home-space);
  background: rgba(11,27,61,.06);
  border-radius: 999px;
  padding: 3px 10px;
  flex-shrink: 0;
}

.page-home .report-visual-card {
  position: relative;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  box-shadow: var(--home-card-shadow);
}

.page-home .report-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .report-visual-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(11,27,61,.85));
  padding: 32px 16px 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--color-white, #F4F7FB);
  font-size: 12px;
}

.page-home .report-visual-overlay .data-text--lg {
  color: var(--home-green);
  font-size: 28px;
  font-weight: 800;
}

.page-home .report-visual-note {
  font-size: 13px;
  color: var(--color-gray, #7A8A9A);
  line-height: 1.7;
  margin: 14px 4px 0;
}

/* ==================== 账户升级入口 ==================== */
.page-home .upgrade-section {
  background: linear-gradient(135deg, rgba(255,107,0,.06) 0%, rgba(123,75,255,.08) 100%);
  border-radius: 0;
}

.page-home .upgrade-banner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  background: linear-gradient(135deg, var(--home-space) 0%, #16284d 100%);
  border-radius: var(--home-radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--home-line);
}

.page-home .upgrade-banner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,107,0,.25) 0%, transparent 70%);
  border-radius: 50%;
}

.page-home .upgrade-banner-left {
  position: relative;
  z-index: 1;
}

.page-home .upgrade-banner-left .section-eyebrow {
  color: var(--home-cyan);
}

.page-home .upgrade-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white, #F4F7FB);
  margin: 0 0 12px;
  line-height: 1.2;
}

.page-home .upgrade-banner-left p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(244,247,251,.72);
  margin: 0 0 20px;
  max-width: 520px;
}

.page-home .upgrade-banner-left strong {
  color: var(--home-orange);
  font-weight: 700;
}

.page-home .upgrade-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .upgrade-actions .btn-ghost {
  color: var(--color-white, #F4F7FB);
}

.page-home .upgrade-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--home-radius-md);
  padding: 20px;
  position: relative;
  z-index: 1;
}

.page-home .upgrade-level {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .upgrade-level-label {
  font-size: 12px;
  color: rgba(244,247,251,.55);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.page-home .upgrade-level-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--home-orange);
  font-family: var(--font-data, monospace);
  line-height: 1.1;
}

.page-home .upgrade-level-progress {
  font-size: 12px;
  color: rgba(244,247,251,.65);
  text-decoration: none;
}

.page-home .upgrade-tip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(244,247,251,.55);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  width: 100%;
}

.page-home .upgrade-tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--home-cyan);
  color: var(--home-space);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  font-family: var(--font-data, monospace);
}

/* ==================== 数据口径说明 ==================== */
.page-home .data-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.page-home .data-note-card {
  background: #fff;
  border-radius: var(--home-radius-md);
  padding: 24px 20px 20px;
  border: 1px solid rgba(11,27,61,.06);
  box-shadow: var(--home-card-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.page-home .data-note-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11,27,61,.1);
}

.page-home .data-note-icon {
  display: inline-block;
  font-size: 22px;
  color: var(--home-orange);
  margin-bottom: 14px;
  line-height: 1;
}

.page-home .data-note-card:nth-child(2) .data-note-icon {
  color: var(--home-cyan);
}

.page-home .data-note-card:nth-child(3) .data-note-icon {
  color: var(--home-purple);
}

.page-home .data-note-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-text, #16233F);
}

.page-home .data-note-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-gray, #7A8A9A);
  margin: 0;
}

.page-home .data-notes-footer {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-gray, #7A8A9A);
  background: rgba(11,27,61,.03);
  border-radius: var(--home-radius-md);
  padding: 20px 24px;
}

.page-home .data-notes-footer p {
  margin: 0;
  max-width: 760px;
  margin: 0 auto;
}

/* ==================== 站内导航卡片 ==================== */
.page-home .home-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.page-home .home-link-card {
  display: block;
  background: #fff;
  border-radius: var(--home-radius-md);
  padding: 24px 20px 20px;
  border: 1px solid rgba(11,27,61,.06);
  text-decoration: none;
  transition: background .25s ease, transform .25s ease, color .25s ease, box-shadow .25s ease;
}

.page-home .home-link-card:hover {
  background: var(--home-space);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11,27,61,.22);
}

.page-home .home-link-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--home-cyan);
  margin-bottom: 14px;
  transition: color .25s ease;
  font-family: var(--font-data, monospace);
}

.page-home .home-link-card:nth-child(2) .home-link-num {
  color: var(--home-orange);
}

.page-home .home-link-card:nth-child(3) .home-link-num {
  color: var(--home-purple);
}

.page-home .home-link-card:nth-child(4) .home-link-num {
  color: #2dc414;
}

.page-home .home-link-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text, #16233F);
  margin: 0 0 8px;
  transition: color .25s ease;
}

.page-home .home-link-card p {
  font-size: 12px;
  color: var(--color-gray, #7A8A9A);
  line-height: 1.6;
  margin: 0;
  transition: color .25s ease;
}

.page-home .home-link-card:hover h3 {
  color: var(--color-white, #F4F7FB);
}

.page-home .home-link-card:hover p {
  color: rgba(244,247,251,.6);
}

.page-home .home-link-card:hover .home-link-num {
  color: var(--home-green);
}

/* ==================== 数据文本工具类 ==================== */
.page-home .data-text {
  font-family: var(--font-data, monospace);
  letter-spacing: .02em;
}

.page-home .data-text--green {
  color: var(--home-green);
  font-weight: 700;
}

/* ==================== 响应式 ==================== */
@media (max-width: 1024px) {
  .page-home .channel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .channel-card--main {
    grid-row: span 1;
  }

  .page-home .channel-card--main .channel-card-img {
    aspect-ratio: 16/9;
  }

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

  .page-home .data-note-card:last-child {
    grid-column: span 2;
  }

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

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

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

@media (max-width: 768px) {
  .page-home .channel-grid {
    grid-template-columns: 1fr;
  }

  .page-home .channel-community {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .page-home .hero-title {
    font-size: 32px;
  }

  .page-home .hero-scoreboard {
    max-width: 100%;
  }

  .page-home .schedule-row {
    grid-template-columns: 42px 1fr;
    gap: 4px 10px;
    padding: 12px 14px;
  }

  .page-home .schedule-row .schedule-status {
    grid-column: 2;
    justify-self: start;
  }

  .page-home .schedule-row--head .schedule-status {
    display: none;
  }

  .page-home .schedule-row--head .schedule-match {
    display: none;
  }

  .page-home .schedule-row--head {
    grid-template-columns: 42px 1fr;
  }

  .page-home .schedule-board {
    overflow: hidden;
  }

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

  .page-home .data-note-card:last-child {
    grid-column: auto;
  }

  .page-home .ticker-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .page-home .ticker-head {
    border-right: 0;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }

  .page-home .ticker-scroll {
    width: 100%;
    min-width: 0;
  }

  .page-home .ticker-meta {
    width: 100%;
    justify-content: flex-end;
  }

  .page-home .hero-frame-inner {
    padding: 40px 20px;
  }

  .page-home .hero-actions .btn {
    flex: 1;
    min-width: 140px;
  }

  .page-home .upgrade-banner {
    padding: 24px 20px;
  }

  .page-home .section {
    padding: 48px 0;
  }

  .page-home .section--tight {
    padding: 32px 0;
  }

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

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

  .page-home .section-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .page-home .hero-title {
    font-size: 27px;
  }

  .page-home .hero-scoreboard {
    padding: 18px;
  }

  .page-home .score-num {
    font-size: 32px;
  }

  .page-home .schedule-tabs {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--home-radius-sm);
    flex-wrap: nowrap;
  }

  .page-home .schedule-tab {
    white-space: nowrap;
    font-size: 12px;
    padding: 7px 12px;
  }

  .page-home .schedule-note {
    font-size: 11px;
  }

  .page-home .report-item {
    flex-wrap: wrap;
    padding: 12px 14px;
  }

  .page-home .report-status {
    margin-left: auto;
  }

  .page-home .btn {
    padding: 11px 16px;
    font-size: 13px;
  }

  .page-home .upgrade-actions {
    flex-direction: column;
  }

  .page-home .upgrade-actions .btn {
    width: 100%;
  }

  .page-home .scoreboard-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
