.page-home {
  --page-gap: 24px;
  --page-frame-pad: 24px;
  --page-card-line: rgba(200, 255, 0, 0.4);
  --page-scan-line: rgba(0, 229, 255, 0.25);
  --page-lime-glow: rgba(200, 255, 0, 0.12);
  --page-blue-glow: rgba(0, 229, 255, 0.1);
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(200, 255, 0, 0.08), transparent 26%),
    radial-gradient(circle at 10% 45%, rgba(0, 229, 255, 0.06), transparent 30%),
    var(--deep-navy);
}

.page-home .container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad-x);
}

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

.page-home .section-head {
  position: relative;
  margin-bottom: 28px;
  padding-left: 20px;
}

.page-home .section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 6px;
  background: var(--fluo-green);
  transform: skewX(-18deg);
  opacity: 0.9;
}

.page-home .section-kicker {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric-blue);
}

.page-home .section-title {
  margin: 0;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--white);
}

.page-home .section-sub {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted-slate);
  max-width: 620px;
}

/* ---------- 首屏框景 ---------- */
.page-home .hero-section {
  padding-top: 32px;
}

.page-home .hero-frame-wrap {
  position: relative;
}

.page-home .hero-frame {
  position: relative;
  padding: var(--page-frame-pad);
  border: 1px solid var(--page-card-line);
  background:
    linear-gradient(160deg, rgba(0, 229, 255, 0.05), transparent 40%),
    linear-gradient(320deg, rgba(200, 255, 0, 0.06), transparent 45%),
    rgba(5, 10, 21, 0.72);
  overflow: hidden;
}

.page-home .hero-frame::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--electric-blue) 20%, var(--fluo-green) 50%, var(--electric-blue) 80%, transparent 100%);
  opacity: 0.5;
  animation: page-hero-scan 7s ease-in-out infinite;
  z-index: 2;
}

.page-home .hero-frame::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 0;
  height: 0;
  border-bottom: 26px solid var(--ink-black);
  border-left: 26px solid transparent;
  z-index: 1;
}

.page-home .hero-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0, 229, 255, 0.08);
  border-left: 3px solid var(--electric-blue);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--white);
  line-height: 1.5;
}

.page-home .hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fluo-green);
  box-shadow: 0 0 10px var(--fluo-green);
  flex: 0 0 auto;
}

.page-home .hero-status-sep {
  color: var(--electric-blue);
  font-weight: 700;
}

.page-home .hero-status-trust {
  color: var(--white);
}

.page-home .hero-status-fact {
  color: var(--muted-slate);
}

.page-home .breadcrumb {
  margin-top: 18px;
}

.page-home .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--muted-slate);
}

.page-home .breadcrumb a {
  color: var(--electric-blue);
  text-decoration: none;
}

.page-home .breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--muted-slate);
}

.page-home .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.page-home .hero-copy {
  position: relative;
  z-index: 2;
}

.page-home .hero-kicker {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--fluo-green);
}

.page-home .hero-title {
  margin: 0;
  font-size: clamp(28px, 6vw, 54px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
}

.page-home .hero-lead {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted-slate);
  max-width: 600px;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-home .hero-visual-figure {
  margin: 0;
  position: relative;
  z-index: 2;
}

.page-home .hero-visual {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.75) contrast(1.05);
  border: 1px solid rgba(0, 229, 255, 0.35);
  background: var(--ink-black);
}

.page-home .hero-window-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
  border-top: 1px solid rgba(200, 255, 0, 0.2);
  padding-top: 24px;
}

.page-home .hud-block {
  padding: 18px 16px;
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.05), transparent 60%),
              linear-gradient(35deg, rgba(200, 255, 0, 0.04), transparent 50%),
              var(--ink-black);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .hud-title {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-home .hud-title-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted-slate);
}

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

.page-home .hud-day {
  flex: 1 1 40%;
  min-width: 100px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid transparent;
  padding: 10px 12px;
}

.page-home .hud-day-name {
  display: block;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 6px;
}

.page-home .hud-day-status {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-slate);
}

.page-home .hud-day-status.is-finished {
  color: var(--muted-slate);
}

.page-home .hud-day-status.is-live {
  color: var(--fluo-green);
  border-bottom: 2px solid var(--fluo-green);
  padding-bottom: 2px;
}

.page-home .hud-day-status.is-next {
  color: var(--electric-blue);
}

.page-home .shot-scale {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .shot-scale-item {
  min-height: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: skewX(-6deg);
}

.page-home .shot-scale-item::before {
  content: ""; 
}

.page-home .shot-scale-1 { background: rgba(200, 255, 0, 0.12); }
.page-home .shot-scale-2 { background: rgba(200, 255, 0, 0.2); }
.page-home .shot-scale-3 { background: rgba(200, 255, 0, 0.28); }
.page-home .shot-scale-4 { background: rgba(200, 255, 0, 0.36); }
.page-home .shot-scale-5 { background: rgba(200, 255, 0, 0.44); }
.page-home .shot-scale-6 { background: rgba(200, 255, 0, 0.56); }
.page-home .shot-scale-7 { background: rgba(200, 255, 0, 0.68); }
.page-home .shot-scale-8 { background: rgba(200, 255, 0, 0.8); }
.page-home .shot-scale-9 { background: rgba(200, 255, 0, 0.9); color: var(--ink-black); }
.page-home .shot-scale-10 { background: var(--fluo-green); color: var(--ink-black); font-weight: 700; }

.page-home .hud-shots-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted-slate);
}

/* ---------- 同屏对比 ---------- */
.page-home .split-section {
  padding-top: 40px;
}

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

.page-home .split-media {
  order: 2;
}

.page-home .split-media .media {
  position: relative;
  border: 1px solid rgba(0, 229, 255, 0.3);
  background: var(--ink-black);
  overflow: hidden;
}

.page-home .split-copy {
  order: 1;
}

.page-home .split-points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page-home .split-points li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--electric-blue);
}

.page-home .split-point-index {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fluo-green);
  font-weight: 700;
}

.page-home .split-points p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--white);
}

.page-home .split-link {
  margin-top: 6px;
}

/* ---------- 多联赛切换 ---------- */
.page-home .league-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(200, 255, 0, 0.04), transparent 38%),
    linear-gradient(315deg, rgba(0, 229, 255, 0.04), transparent 40%),
    var(--ink-black);
  padding: 72px 0;
}

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

.page-home .league-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.page-home .league-card {
  scroll-snap-align: start;
  position: relative;
  padding: 20px 18px;
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.06), transparent 55%),
              linear-gradient(35deg, rgba(200, 255, 0, 0.05), transparent 45%),
              var(--deep-navy);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 2px solid var(--fluo-green);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .league-card:hover,
.page-home .league-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--electric-blue);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 229, 255, 0.15);
}

.page-home .league-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.page-home .team-pos-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fluo-green);
  background: rgba(200, 255, 0, 0.1);
  border: 1px solid rgba(200, 255, 0, 0.3);
  padding: 4px 8px;
  white-space: nowrap;
}

.page-home .league-card-body {
  display: flex;
  flex-direction: column;
}

.page-home .league-card .stat {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.page-home .league-card .stat-label {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted-slate);
}

.page-home .league-card-bar {
  margin-top: 18px;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0;
  transform: skewX(-18deg);
  overflow: hidden;
}

.page-home .league-card-bar .data-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--fluo-green), var(--electric-blue));
  transform: skewX(18deg);
  transform-origin: left center;
}

/* ---------- 订阅范围 ---------- */
.page-home .coverage-section {
  padding: 72px 0;
}

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

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

.page-home .coverage-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--fluo-green);
  transition: background 0.2s ease;
}

.page-home .coverage-list li:hover {
  background: rgba(200, 255, 0, 0.06);
}

.page-home .coverage-block {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  padding: 8px 6px;
  position: relative;
}

.page-home .block-premier { background: rgba(200, 255, 0, 0.4); color: var(--ink-black); }
.page-home .block-liga { background: rgba(0, 229, 255, 0.3); color: var(--ink-black); }
.page-home .block-bundesliga { background: rgba(179, 136, 255, 0.3); color: var(--ink-black); }
.page-home .block-seriea { background: rgba(255, 179, 0, 0.3); color: var(--ink-black); }
.page-home .block-ligue1 { background: rgba(200, 255, 0, 0.18); color: var(--white); }
.page-home .block-acl { background: rgba(0, 229, 255, 0.18); color: var(--white); }

.page-home .coverage-desc {
  font-size: 14px;
  color: var(--muted-slate);
  line-height: 1.6;
}

.page-home .coverage-link {
  margin-top: 8px;
}

.page-home .coverage-media .media {
  position: relative;
  border: 1px solid rgba(200, 255, 0, 0.28);
  background: var(--ink-black);
  overflow: hidden;
}

/* ---------- 常用入口清单 ---------- */
.page-home .entry-section {
  background:
    linear-gradient(180deg, rgba(0, 229, 255, 0.03), transparent 20%),
    linear-gradient(0deg, rgba(200, 255, 0, 0.03), transparent 18%),
    var(--deep-navy);
  padding: 72px 0;
}

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

.page-home .entry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .entry-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.page-home .entry-item:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.4);
}

.page-home .entry-item-live {
  border-left: 4px solid var(--fluo-green);
  background: rgba(200, 255, 0, 0.04);
}

.page-home .entry-link {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  text-decoration: none;
  color: var(--white);
}

.page-home .entry-index {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--electric-blue);
}

.page-home .entry-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-home .entry-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
}

.page-home .entry-arrow {
  color: var(--muted-slate);
  font-size: 18px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.page-home .entry-link:hover .entry-arrow {
  transform: translateX(4px);
  color: var(--fluo-green);
}

/* ---------- 华人小屏入口卡片 ---------- */
.page-home .mini-entry-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.08), transparent 55%),
              linear-gradient(235deg, rgba(200, 255, 0, 0.08), transparent 40%),
              var(--ink-black);
  border: 1px solid rgba(200, 255, 0, 0.32);
  padding: 24px 20px;
  overflow: hidden;
}

.page-home .mini-entry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-blue), var(--fluo-green), transparent);
  opacity: 0.6;
}

.page-home .mini-entry-copy {
  position: relative;
  z-index: 2;
}

.page-home .mini-entry-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
}

.page-home .mini-entry-desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted-slate);
}

.page-home .mini-entry-media {
  margin: 20px 0 0;
  max-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

.page-home .mini-entry-media .media-content {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.7) contrast(1.05);
}

/* ---------- 右下角浮动入口 ---------- */
.page-home .fixed-mini-entry {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99;
  width: 220px;
  border-radius: 50px;
  background: transparent;
}

.page-home .fixed-mini-btn {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  padding: 10px 18px 10px 12px;
  cursor: pointer;
  list-style: none;
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.15), rgba(0, 229, 255, 0.1)), var(--deep-navy);
  border: 1px solid rgba(200, 255, 0, 0.6);
  color: var(--white);
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 12px rgba(200, 255, 0, 0.15);
  transition: transform 0.2s ease, border-color 0.2s ease;
  font-family: var(--font-sans);
}

.page-home .fixed-mini-btn:hover {
  transform: translateY(-2px);
  border-color: var(--electric-blue);
}

.page-home .fixed-mini-btn::-webkit-details-marker {
  display: none;
}

.page-home .fixed-mini-btn::marker {
  content: "";
}

.page-home .fixed-mini-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fluo-green);
}

.page-home .fixed-mini-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: nowrap;
}

.page-home .fixed-mini-pulse {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fluo-green);
  transform: translate(-50%, -50%);
  animation: page-mini-pulse 2.4s ease-out infinite;
  pointer-events: none;
  opacity: 0.5;
}

.page-home .fixed-mini-menu {
  margin-top: 8px;
  display: grid;
  gap: 4px;
  padding: 8px;
  background: rgba(5, 10, 21, 0.96);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.page-home .fixed-mini-link {
  display: block;
  padding: 10px 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  border-left: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-home .fixed-mini-link:hover {
  background: rgba(200, 255, 0, 0.08);
  border-left-color: var(--fluo-green);
}

/* ---------- 通用按钮强化 ---------- */
.page-home .btn-primary {
  background: var(--fluo-green);
  color: var(--ink-black);
  border: 1px solid var(--fluo-green);
}

.page-home .btn-ghost {
  background: transparent;
  color: var(--electric-blue);
  border: 1px solid var(--electric-blue);
}

.page-home .btn-ghost:hover {
  background: rgba(0, 229, 255, 0.08);
}

/* ---------- 动画 ---------- */
@keyframes page-hero-scan {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@keyframes page-mini-pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(200, 255, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 255, 0, 0); }
}

/* ---------- 媒体查询：平板与桌面 ---------- */
@media (min-width: 700px) {
  .page-home .hero-window-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .shot-scale-item {
    min-height: 64px;
  }

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

  .page-home .mini-entry-card {
    grid-template-columns: 1fr 180px;
    align-items: center;
    gap: 20px;
  }

  .page-home .mini-entry-media {
    margin: 0;
  }

  .page-home .fixed-mini-entry {
    right: 24px;
    bottom: 24px;
  }
}

@media (min-width: 960px) {
  .page-home .section {
    padding: 88px 0;
  }

  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 40px;
  }

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

  .page-home .hero-lead {
    font-size: 16px;
  }

  .page-home .hero-visual {
    max-height: 440px;
    object-fit: cover;
  }

  .page-home .split-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
  }

  .page-home .split-media {
    order: 1;
  }

  .page-home .split-copy {
    order: 2;
  }

  .page-home .coverage-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 56px;
    align-items: center;
  }

  .page-home .entry-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
  }

  .page-home .entry-link {
    grid-template-columns: 48px 1fr auto auto;
  }

  .page-home .league-scroll {
    grid-auto-columns: minmax(280px, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-frame::before {
    animation: none;
    opacity: 0.35;
  }

  .page-home .fixed-mini-pulse {
    animation: none;
  }

  .page-home .fixed-mini-btn {
    transition: none;
  }

  .page-home .league-card {
    transition: none;
  }
}
