.page-home {
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;
}

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

.page-home a:focus-visible,
.page-home button:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

/* ---------- 面包屑 ---------- */
.page-home .crumbs {
  padding-block: 14px 4px;
}

.page-home .crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted-2);
}

/* ---------- 首屏 ---------- */
.page-home .ph-hero {
  position: relative;
  isolation: isolate;
  padding: 24px 0 44px;
}

.page-home .ph-hero::before {
  content: "";
  position: absolute;
  top: -18%;
  right: -22%;
  width: min(720px, 108vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 46%, rgba(134, 194, 50, 0.22), transparent 62%),
    repeating-conic-gradient(from 8deg at 50% 50%,
      rgba(217, 255, 63, 0.10) 0deg 2.6deg,
      rgba(217, 255, 63, 0) 2.6deg 8.4deg);
  pointer-events: none;
  z-index: -1;
}

.page-home .ph-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}

.page-home .ph-hero__copy h1 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 6.6vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.page-home .ph-hero__lede {
  margin: 0 0 20px;
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

.page-home .ph-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .ph-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 26px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.page-home .ph-hero__stats > div {
  padding: 12px 14px;
  background: rgba(11, 27, 43, 0.82);
}

.page-home .ph-hero__stats dt {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted-2);
}

.page-home .ph-hero__stats dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  color: var(--glaze);
}

.page-home .ph-hero__stats dd span {
  margin-left: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--kiwi);
}

.page-home .ph-hero__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  background: var(--teal);
}

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

.page-home .ph-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg,
    rgba(11, 27, 43, 0.68) 0%,
    rgba(11, 27, 43, 0.14) 48%,
    rgba(134, 194, 50, 0.24) 100%);
  pointer-events: none;
}

/* ---------- 区块标题 ---------- */
.page-home .ph-sechead {
  max-width: 62ch;
  margin-bottom: 22px;
}

.page-home .ph-sechead h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3.6vw, 32px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}

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

/* ---------- 联赛对照 ---------- */
.page-home .ph-ring {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 16%, rgba(18, 58, 52, 0.95), transparent 58%),
    linear-gradient(180deg, rgba(11, 27, 43, 1), rgba(18, 58, 52, 0.5));
}

.page-home .league-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.page-home .league-switch__label {
  margin-right: 2px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted-2);
}

.page-home .chip--league {
  padding: 6px 12px;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(11, 27, 43, 0.7);
  color: var(--muted);
  cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.page-home .chip--league:hover {
  border-color: var(--neon);
  color: var(--glaze);
}

.page-home .chip--league[aria-pressed="true"] {
  border-color: var(--neon);
  background: var(--neon);
  color: #0B1B2B;
  font-weight: 700;
}

.page-home .ph-ring__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.page-home .ph-ring__plate {
  position: relative;
  width: min(264px, 74vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(
    var(--kiwi) 0deg 45deg,
    var(--electric) 45deg 90deg,
    var(--wine) 90deg 135deg,
    var(--orange) 135deg 180deg,
    var(--indigo) 180deg 225deg,
    var(--neon) 225deg 270deg,
    var(--bark) 270deg 315deg,
    var(--teal) 315deg 360deg
  );
  box-shadow: 0 0 0 1px var(--line-strong), 0 16px 44px rgba(0, 0, 0, 0.5);
}

.page-home .ph-ring__plate::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg,
      rgba(11, 27, 43, 0.88) 0deg 4.2deg,
      rgba(11, 27, 43, 0) 4.2deg 8.6deg),
    radial-gradient(circle, rgba(11, 27, 43, 0.96) 50%, rgba(11, 27, 43, 0.62) 66%, rgba(11, 27, 43, 0) 73%);
}

.page-home .ph-ring__core {
  position: absolute;
  inset: 27%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(11, 27, 43, 0.95);
  z-index: 1;
}

.page-home .ph-ring__num {
  font-family: var(--font-mono);
  font-size: clamp(32px, 8vw, 46px);
  font-weight: 700;
  line-height: 1;
  color: var(--neon);
}

.page-home .ph-ring__cap {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted-2);
}

.page-home .ph-ring__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-home .ph-lgcard {
  padding: 14px 15px 15px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--kiwi);
  background: rgba(11, 27, 43, 0.78);
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.page-home .ph-lgcard:hover,
.page-home .ph-lgcard:focus-within {
  transform: translateY(-2px);
  border-color: var(--neon);
  border-left-color: var(--neon);
  background: rgba(18, 58, 52, 0.86);
}

.page-home .ph-lgcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.page-home .ph-lgcard__head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.page-home .ph-lgcard__meta {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--kiwi);
}

.page-home .ph-lgcard__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .ph-ring__shot {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--indigo);
}

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

/* ---------- 订阅与战报 ---------- */
.page-home .ph-duo {
  padding: 46px 0;
  background: var(--ink);
}

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

.page-home .ph-duo__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-home .ph-duo__card--sub {
  background: linear-gradient(158deg, rgba(46, 35, 89, 0.94), rgba(11, 27, 43, 0.97));
}

.page-home .ph-duo__card--feed {
  background: linear-gradient(158deg, rgba(18, 58, 52, 0.94), rgba(11, 27, 43, 0.97));
}

.page-home .ph-duo__card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
}

.page-home .ph-duo__card > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

.page-home .ph-duo__shot {
  margin: 0 0 4px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line-strong);
}

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

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

.page-home .ph-duo__list li {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .ph-duo__list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--kiwi);
}

.page-home .ph-duo__k {
  display: inline-block;
  margin-right: 6px;
  padding: 1px 8px;
  font-size: 11px;
  letter-spacing: 0.04em;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--neon);
}

.page-home .ph-duo__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.page-home .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(11, 27, 43, 0.72);
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-home .status-badge:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.page-home .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 0 3px rgba(53, 208, 255, 0.18);
}

.page-home .status-badge[data-state="pending"] .status-dot {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.2);
  animation: ph-pulse 3s ease-in-out infinite;
}

.page-home .status-badge[data-state="active"] .status-dot {
  background: var(--electric);
  box-shadow: 0 0 0 3px rgba(53, 208, 255, 0.18);
  animation: none;
}

@keyframes ph-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ---------- 赛程 ---------- */
.page-home .ph-slate {
  position: relative;
  padding: 46px 0 54px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 58, 52, 0.45), rgba(11, 27, 43, 1) 64%);
}

.page-home .ph-slate__list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

.page-home .ph-slate__row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  grid-template-areas:
    "time .page-home tag"
    "time form form";
  gap: 8px 12px;
  align-items: center;
  padding: 14px 15px;
  background: rgba(11, 27, 43, 0.9);
  transition: background var(--dur) var(--ease);
}

.page-home .ph-slate__row:hover {
  background: rgba(18, 58, 52, 0.88);
}

.page-home .ph-slate__time {
  grid-area: time;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--neon);
}

.page-home .ph-slate__body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.page-home .ph-slate__body strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.page-home .ph-slate__sub {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted-2);
}

.page-home .ph-slate__form {
  grid-area: form;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-home .ph-slate__form i {
  padding: 3px 7px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 12px;
  border: 1px solid var(--line);
  background: rgba(46, 35, 89, 0.42);
  color: var(--muted);
}

.page-home .ph-slate__row .tag {
  grid-area: tag;
  justify-self: end;
}

.page-home .ph-pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid var(--neon);
  background: rgba(217, 255, 63, 0.1);
  color: var(--neon);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-home .ph-pin:hover {
  background: var(--neon);
  color: #0B1B2B;
}

.page-home .ph-pin__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: ph-pulse 3s ease-in-out infinite;
}

/* ---------- 旧版入口 ---------- */
.page-home .ph-legacy {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 10%, rgba(110, 31, 60, 0.6), transparent 56%),
    linear-gradient(180deg, rgba(11, 27, 43, 1), rgba(110, 31, 60, 0.36));
}

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

.page-home .ph-legacy__shot {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  background: var(--wine);
}

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

.page-home .ph-legacy__body h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3.6vw, 30px);
  line-height: 1.25;
  font-weight: 800;
}

.page-home .ph-legacy__body > p {
  margin: 0 0 18px;
  max-width: 44ch;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

.page-home .ph-legacy__list {
  display: grid;
  gap: 1px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

.page-home .ph-legacy__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  background: rgba(11, 27, 43, 0.88);
  transition: background var(--dur) var(--ease);
}

.page-home .ph-legacy__list li:hover {
  background: rgba(110, 31, 60, 0.52);
}

.page-home .ph-legacy__ver {
  min-width: 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--neon);
}

.page-home .ph-legacy__name {
  flex: 1;
  font-size: 13px;
  color: var(--text);
}

/* ---------- 区间回溯 ---------- */
.page-home .ph-recall {
  padding: 42px 0;
  background: var(--ink);
}

.page-home .ph-recall__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.page-home .ph-recall__item {
  padding: 20px 18px;
  background: rgba(11, 27, 43, 0.92);
}

.page-home .ph-recall__item h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--neon);
}

.page-home .ph-recall__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .ph-recall__bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 40px;
  margin-top: 14px;
}

.page-home .ph-recall__bars span {
  flex: 1;
  border: 1px solid rgba(134, 194, 50, 0.4);
  background: linear-gradient(180deg, var(--kiwi), rgba(134, 194, 50, 0.2));
}

.page-home .ph-recall__bars span:nth-child(1) { height: 42%; }
.page-home .ph-recall__bars span:nth-child(2) { height: 70%; }
.page-home .ph-recall__bars span:nth-child(3) { height: 100%; }

/* ---------- 反馈与协助 ---------- */
.page-home .ph-assist {
  padding: 44px 0 60px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 27, 43, 1), rgba(46, 35, 89, 0.62));
}

.page-home .ph-assist__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-home .ph-assist__main h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3.6vw, 30px);
  line-height: 1.25;
  font-weight: 800;
}

.page-home .ph-assist__main p {
  margin: 0 0 12px;
  max-width: 46ch;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

.page-home .ph-assist__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.page-home .ph-assist__side {
  padding: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(11, 27, 43, 0.74);
  box-shadow: var(--shadow);
}

.page-home .ph-assist__side h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-home .ph-assist__side ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .ph-assist__side a {
  display: block;
  padding: 9px 11px;
  font-size: 13px;
  line-height: 1.6;
  text-decoration: none;
  border: 1px solid var(--line);
  color: var(--text);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.page-home .ph-assist__side a:hover {
  border-color: var(--neon);
  background: rgba(217, 255, 63, 0.06);
  color: var(--neon);
}

/* ---------- 响应式 ---------- */
@media (min-width: 560px) {
  .page-home .ph-ring__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 760px) {
  .page-home .ph-slate__row {
    grid-template-columns: 88px minmax(0, 1.35fr) minmax(0, 1fr) 100px;
    grid-template-areas: "time .page-home form tag";
    padding: 16px 18px;
  }

  .page-home .ph-slate__time {
    font-size: 22px;
  }

  .page-home .ph-recall__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-home .ph-hero {
    padding: 34px 0 56px;
  }

  .page-home .ph-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 38px;
  }

  .page-home .ph-ring__grid {
    grid-template-columns: minmax(200px, 264px) minmax(0, 1fr);
    align-items: start;
    gap: 30px;
  }

  .page-home .ph-duo__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

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

  .page-home .ph-assist__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 30px;
  }
}

@media (min-width: 1100px) {
  .page-home .ph-ring__grid {
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr) minmax(150px, 210px);
  }

  .page-home .ph-ring__shot {
    transform: translateY(28px);
  }
}

@media (min-width: 1180px) {
  .page-home .ph-pin {
    position: fixed;
    top: 46%;
    right: 22px;
    z-index: 30;
    margin: 0;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
  }
}
<<<END>>>
