.page-home {
  overflow-x: clip;
}

/* 面包屑 */
.page-home .breadcrumbs {
  max-width: var(--container);
  margin-inline: auto;
  padding: 24px 32px 0;
}
.page-home .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--c-muted);
}
.page-home .breadcrumbs li + li::before {
  content: "·";
  margin-inline: 10px 12px;
  color: var(--c-muted);
  opacity: 0.5;
}
.page-home .breadcrumbs a {
  color: var(--c-muted);
  text-decoration: none;
}
.page-home .breadcrumbs a:hover {
  color: var(--c-volcano);
}

/* 首屏杂志封面 */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 77, 28, 0.28) 0%, rgba(255, 77, 28, 0) 46%),
    linear-gradient(135deg, var(--c-navy) 0%, var(--c-steel) 100%);
  padding: 48px 0 72px;
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -6%;
  width: 64%;
  height: 100%;
  background: linear-gradient(168deg, rgba(255, 77, 28, 0.9) 0%, rgba(230, 62, 0, 0.12) 100%);
  clip-path: polygon(38% 0, 100% 0, 86% 100%, 0 100%);
  pointer-events: none;
}
.page-home .hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}
.page-home .hero-copy {
  max-width: 640px;
}
.page-home .hero-overline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.page-home .hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 7vw, 4.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--white);
}
.page-home .hero-lead-wrap {
  border-left: 4px solid var(--c-volcano);
  padding-left: 20px;
  max-width: 46ch;
}
.page-home .hero-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
}
.page-home .hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.page-home .hero-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}
.page-home .hero-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.page-home .hero-media {
  position: relative;
  max-width: 600px;
}
.page-home .hero-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-steel);
  box-shadow: var(--shadow-float);
  aspect-ratio: 4 / 5;
  max-height: 680px;
}
.page-home .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .hero-index {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(11, 27, 51, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  backdrop-filter: blur(6px);
}
.page-home .hero-index-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.page-home .hero-index-link {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 0;
}
.page-home .hero-index-link b {
  color: var(--c-volcano);
  font-weight: 900;
  font-size: 0.8rem;
  min-width: 1.6em;
}
.page-home .hero-index-link:hover {
  color: var(--white);
}

@media (min-width: 980px) {
  .page-home .hero-shell {
    grid-template-columns: 7fr 5fr;
    align-items: center;
    gap: 56px;
  }
  .page-home .hero-media-frame {
    transform: rotate(1.5deg);
  }
  .page-home .hero-index {
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-width: 224px;
  }
}

/* 赛事首页导航说明 */
.page-home .nav-guide {
  background: var(--c-frost);
}
.page-home .guide-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: center;
}
.page-home .mock-browser {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--c-soft);
}
.page-home .mock-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--c-navy);
  padding: 12px 16px;
}
.page-home .mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b57;
  display: inline-block;
}
.page-home .mock-dot:nth-child(2) {
  background: var(--c-gold);
}
.page-home .mock-dot:nth-child(3) {
  background: var(--c-green);
}
.page-home .mock-address {
  margin-inline-start: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  padding: 3px 16px;
  border-radius: 999px;
}
.page-home .mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-soft);
  gap: 14px;
}
.page-home .mock-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--c-text);
}
.page-home .mock-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-volcano), var(--c-volcano-deep));
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.page-home .mock-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--c-muted);
  white-space: nowrap;
}
.page-home .mock-links .mock-cta {
  background: var(--c-volcano);
  color: var(--white);
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  white-space: nowrap;
  margin-left: 4px;
}
.page-home .mock-body {
  padding: 26px 20px 30px;
  display: grid;
  gap: 16px;
}
.page-home .mock-caption {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--c-muted);
  letter-spacing: 0.06em;
}
.page-home .mock-entries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-home .mock-entry {
  background: var(--c-frost);
  border: 1px dashed transparent;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 800;
  color: var(--c-text);
  font-size: 0.9rem;
}
.page-home .mock-entry--active {
  background: #fff1ea;
  border-color: var(--c-volcano);
  color: var(--c-volcano-deep);
}
@media (min-width: 720px) {
  .page-home .mock-entries {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.page-home .guide-points {
  display: grid;
  gap: 18px;
}
.page-home .guide-point {
  background: var(--white);
  border-radius: 22px;
  padding: 22px 26px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--c-volcano);
}
.page-home .guide-point-num {
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--c-muted);
}
.page-home .guide-point h3 {
  margin: 8px 0 8px;
  font-size: 1.25rem;
  color: var(--c-text);
}
.page-home .guide-point p {
  margin: 0;
  color: var(--c-muted);
  font-size: 0.95rem;
}
@media (min-width: 960px) {
  .page-home .guide-visual {
    grid-template-columns: 5fr 4fr;
    gap: 44px;
  }
}
.page-home .guide-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.page-home .route-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--c-soft);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  color: var(--c-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.2s ease-out, transform 0.2s ease-out;
}
.page-home .route-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
}
.page-home .route-chip:hover {
  border-color: var(--c-volcano);
  transform: translateY(-2px);
}

/* 横向主题带 */
.page-home .theme-band {
  background: var(--white);
  overflow: hidden;
}
.page-home .theme-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 28px 28px 48px;
  -webkit-overflow-scrolling: touch;
  max-width: 1280px;
  margin-inline: auto;
}
.page-home .theme-card {
  scroll-snap-align: center;
  flex: 0 0 min(86vw, 380px);
  display: flex;
  flex-direction: column;
  background: var(--c-frost);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.page-home .theme-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
}
.page-home .theme-card-top {
  position: relative;
}
.page-home .theme-card-top img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.page-home .theme-pin {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
}
.page-home .theme-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}
.page-home .theme-card-kicker {
  color: var(--c-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.page-home .theme-card-body h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.15;
  color: var(--c-text);
}
.page-home .theme-card-lead {
  margin: 0;
  color: var(--c-muted);
}
.page-home .theme-card-list {
  list-style: none;
  margin: 18px 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-home .theme-card-list li {
  position: relative;
  padding-left: 20px;
  color: var(--c-text);
  font-size: 0.92rem;
}
.page-home .theme-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-radius: 2px;
  background: var(--c-volcano);
}
.page-home .mini-radar {
  width: 100%;
  height: auto;
  margin: 0 0 20px;
  background: #fff8f3;
  border-radius: 16px;
}
.page-home .theme-btn {
  margin-top: auto;
  align-self: flex-start;
}
.page-home .player-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.page-home .player-stat {
  background: var(--white);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
}
.page-home .player-stat strong {
  display: block;
  color: var(--c-volcano);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}
.page-home .player-stat span {
  color: var(--c-muted);
  font-size: 0.82rem;
}
.page-home .theme-card--device {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-steel) 100%);
  color: #eef4fb;
}
.page-home .theme-card--device .theme-card-kicker {
  color: var(--c-gold);
}
.page-home .theme-card--device .theme-card-body h3 {
  color: var(--white);
}
.page-home .theme-card--device .theme-card-lead {
  color: #b9cade;
}
.page-home .theme-card--device .theme-card-list li {
  color: #e6eef7;
}
.page-home .device-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 14px;
}
.page-home .device-chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.84rem;
}
.page-home .device-note {
  margin: 0 0 18px;
  color: #b9cade;
  font-size: 0.9rem;
}
.page-home .theme-card--device .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}
@media (min-width: 960px) {
  .page-home .theme-rail {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    overflow-x: visible;
    padding: 36px 32px 56px;
  }
  .page-home .theme-card {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* 每日两次更新 */
.page-home .rhythm-section {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-steel) 100%);
  color: var(--white);
}
.page-home .rhythm-section .section-title {
  color: var(--white);
}
.page-home .rhythm-section .section-lead {
  color: #b9cade;
}
.page-home .rhythm-wrap {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
  margin-top: 36px;
}
.page-home .rhythm-svg-line {
  display: block;
  width: 200px;
  height: auto;
  margin-inline: auto;
  margin-bottom: 24px;
}
.page-home .rhythm-timeline {
  position: relative;
  display: grid;
  gap: 40px;
}
.page-home .rhythm-timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 8px;
  background: linear-gradient(to bottom, var(--c-volcano), var(--c-gold), #2c4c77);
}
.page-home .rhythm-block {
  position: relative;
  padding-left: 48px;
}
.page-home .rhythm-dot-pin {
  position: absolute;
  left: 3px;
  top: 4px;
  width: 26px;
  height: 26px;
  background: var(--c-volcano);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 77, 28, 0.2);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.page-home .rhythm-block--evening .rhythm-dot-pin {
  background: var(--c-gold);
  box-shadow: 0 0 0 5px rgba(255, 194, 71, 0.2);
}
.page-home .rhythm-block:hover .rhythm-dot-pin,
.page-home .rhythm-block:focus-within .rhythm-dot-pin {
  transform: scale(1.12);
  box-shadow: 0 0 0 7px rgba(255, 77, 28, 0.3);
}
.page-home .rhythm-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 22px 24px;
}
.page-home .rhythm-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.2rem;
}
.page-home .rhythm-card p {
  margin: 0 0 14px;
  color: #b9cade;
  font-size: 0.95rem;
  line-height: 1.7;
}
.page-home .rhythm-trust {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 18px 22px;
}
.page-home .rhythm-trust p {
  margin: 0;
  color: #b9cade;
}
@media (min-width: 720px) {
  .page-home .rhythm-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-home .rhythm-block {
    width: 50%;
    padding-left: 0;
  }
  .page-home .rhythm-block--morning {
    padding-right: 42px;
    padding-left: 0;
    text-align: right;
  }
  .page-home .rhythm-block--evening {
    margin-left: 50%;
    padding-left: 42px;
  }
  .page-home .rhythm-block--morning .rhythm-dot-pin {
    left: auto;
    right: -15px;
  }
  .page-home .rhythm-block--evening .rhythm-dot-pin {
    left: -15px;
  }
}

/* 延伸阅读 */
.page-home .explore-section {
  background: var(--c-frost);
}
.page-home .explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
.page-home .explore-card {
  display: flex;
  gap: 18px;
  background: var(--white);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--c-text);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.page-home .explore-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
}
.page-home .explore-num {
  color: var(--c-volcano);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.2;
}
.page-home .explore-card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}
.page-home .explore-card p {
  margin: 0;
  color: var(--c-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.page-home .trust-banner {
  margin-top: 48px;
  background: linear-gradient(120deg, var(--c-navy), var(--c-steel));
  color: var(--white);
  border-radius: 28px;
  padding: 28px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.page-home .trust-banner p {
  margin: 0;
  color: #b9cade;
  max-width: 700px;
}
@media (min-width: 780px) {
  .page-home .explore-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .explore-card {
    grid-column: span 2;
  }
  .page-home .explore-card--wide {
    grid-column: 1 / -1;
  }
  .page-home .trust-banner {
    flex-direction: row;
    justify-content: space-between;
  }
}
