.page-home {
  background-color: var(--c-deep);
  color: var(--c-white);
  position: relative;
}

/* 全屏背景 */
.page-home .home-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-home .home-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.32;
}
.page-home .home-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(217, 166, 46, 0.16) 100%);
  clip-path: polygon(68% 0, 100% 0, 100% 100%, 22% 100%);
}

/* 顶部主题声明 */
.page-home .home-context {
  position: relative;
  z-index: 1;
  padding-top: 72px;
}
.page-home .home-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(247, 250, 252, 0.6);
  letter-spacing: 0.12em;
}
.page-home .home-title {
  margin: 48px 0 0;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--c-white);
}
.page-home .home-lead {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(247, 250, 252, 0.82);
}

/* Bento 信息面板 */
.page-home .home-bento {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 56px;
}
.page-home .home-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 30px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}
.page-home .home-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.page-home .home-card__index {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--c-main);
  letter-spacing: 0.06em;
}
.page-home .home-card__index--light {
  color: rgba(247, 250, 252, 0.55);
}
.page-home .home-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.page-home .home-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: inherit;
}
.page-home .home-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
  text-decoration: none;
  font-weight: 700;
  color: var(--c-main);
}
.page-home .home-card__link--light {
  color: var(--c-gold);
}

/* 赛程卡 */
.page-home .home-card--schedule {
  background: var(--c-white);
  color: var(--c-deep);
  min-height: 420px;
}
.page-home .home-schedule__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .home-schedule__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 31, 60, 0.1);
}
.page-home .home-schedule__day {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-main);
  white-space: nowrap;
}
.page-home .home-schedule__match {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.page-home .home-schedule__round {
  font-size: 12px;
  color: var(--c-stone);
  white-space: nowrap;
}

/* 冠军焦点卡 */
.page-home .home-card--champion {
  background:
    radial-gradient(ellipse at 50% 22%, rgba(217, 166, 46, 0.2), transparent 58%),
    var(--c-deep);
  color: var(--c-white);
  border: 1px solid rgba(217, 166, 46, 0.3);
  min-height: 520px;
}
.page-home .home-champion__cap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.page-home .home-champion__media {
  width: 200px;
  height: 200px;
  margin: 14px auto 6px;
  overflow: hidden;
  border-radius: 50% 50% 16px 50%;
  border: 1px solid rgba(217, 166, 46, 0.24);
}
.page-home .home-champion__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .home-champion__stats {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(247, 250, 252, 0.12);
}
.page-home .home-stat {
  flex: 1;
  text-align: center;
}
.page-home .home-stat__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 32px;
  line-height: 1;
  color: var(--c-gold);
}
.page-home .home-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(247, 250, 252, 0.6);
}

/* 安卓卡片 */
.page-home .home-card--android {
  background: var(--c-white);
  color: var(--c-deep);
  min-height: 420px;
}
.page-home .home-android__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-main);
}
.page-home .home-android__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 价格卡 */
.page-home .home-card--price {
  background:
    linear-gradient(120deg, rgba(217, 166, 46, 0.12) 0%, transparent 40%),
    var(--c-deep);
  color: var(--c-white);
  border: 1px solid rgba(217, 166, 46, 0.38);
  min-height: 320px;
}
.page-home .home-price__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.page-home .home-price__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.page-home .home-price__lead .home-card__title {
  font-size: 26px;
}
.page-home .home-price__plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-home .home-price__plan {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  background: rgba(247, 250, 252, 0.07);
  border: 1px solid rgba(247, 250, 252, 0.12);
  transition: transform var(--transition), border-color var(--transition);
}
.page-home .home-price__plan:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 166, 46, 0.7);
}
.page-home .home-price__plan--hot {
  border-color: var(--c-gold);
  background: rgba(217, 166, 46, 0.12);
}
.page-home .home-price__plan-name {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-gold);
}
.page-home .home-price__plan-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.page-home .home-price__plan-price {
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 800;
  color: var(--c-white);
}
.page-home .home-price__plan-period {
  font-size: 13px;
  color: rgba(247, 250, 252, 0.6);
}
.page-home .home-price__plan-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-home .home-price__plan-features li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: rgba(247, 250, 252, 0.86);
}
.page-home .home-price__plan-features li::before {
  content: "/";
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-weight: 700;
}

/* 反馈卡 */
.page-home .home-card--feedback {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
  color: var(--c-deep);
  min-height: 300px;
}
.page-home .home-card--feedback .tag {
  background: rgba(255, 255, 255, 0.4);
  color: var(--c-deep);
}
.page-home .home-card--feedback .home-card__link,
.page-home .home-card--feedback .home-card__index {
  color: var(--c-deep);
}
.page-home .home-feedback__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-home .home-feedback__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
}
.page-home .home-feedback__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 8px;
  height: 3px;
  background: var(--c-deep);
  transform: skewX(-20deg);
}

/* 赛果数据动态 */
.page-home .home-results {
  position: relative;
  z-index: 1;
  margin-top: 84px;
  padding: 76px 0 60px;
  background: var(--c-white);
  color: var(--c-deep);
}
.page-home .home-results__head h2 {
  margin: 0 0 8px;
  font-size: 30px;
}
.page-home .home-results__head p {
  margin: 0;
  font-size: 14px;
  color: var(--c-stone);
}
.page-home .home-results__banner {
  margin-top: 40px;
  overflow: hidden;
}
.page-home .home-results__banner img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.page-home .home-results__marquee {
  overflow-x: auto;
  scrollbar-width: none;
  padding: 28px 0 12px;
  -ms-overflow-style: none;
}
.page-home .home-results__marquee::-webkit-scrollbar {
  display: none;
}
.page-home .home-results__track {
  display: flex;
  width: max-content;
  animation: leyu-home-results-marquee 42s linear infinite;
}
.page-home .home-results__track:hover {
  animation-play-state: paused;
}
.page-home .home-results__group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}
.page-home .home-result-card {
  width: 280px;
  flex: 0 0 280px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(10, 31, 60, 0.12);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(10, 31, 60, 0.06);
}
.page-home .home-result-card__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-terra);
  background: rgba(193, 105, 79, 0.1);
  border-radius: 999px;
}
.page-home .home-result-card__match {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 10px;
}
.page-home .home-result-card__team {
  flex: 1;
  font-size: 15px;
  font-weight: 800;
  color: var(--c-deep);
}
.page-home .home-result-card__team:last-child {
  text-align: right;
}
.page-home .home-result-card__score {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-main);
  white-space: nowrap;
}
.page-home .home-result-card__meta {
  font-size: 12px;
  color: var(--c-stone);
}
.page-home .home-results__foot {
  padding-top: 16px;
  text-align: right;
}
.page-home .home-results .btn--ghost {
  color: var(--c-deep);
  border-color: var(--c-main);
}

/* 页尾反馈说明 */
.page-home .home-feedback-note {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 96px;
}
.page-home .home-feedback-note__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 44px;
  background: rgba(217, 166, 46, 0.1);
  border: 1px solid rgba(217, 166, 46, 0.4);
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
}
.page-home .home-feedback-note__text h2 {
  margin: 14px 0 10px;
  font-size: 26px;
}
.page-home .home-feedback-note__text p {
  max-width: 760px;
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(247, 250, 252, 0.82);
}
.page-home .home-feedback-note__faq {
  margin-left: auto;
  margin-top: -8px;
}

/* 右下角反馈入口 */
.page-home .home-feedback-chip {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 52px;
  width: 52px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--c-gold);
  color: var(--c-deep);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(10, 31, 60, 0.35);
  transition: width 0.45s ease-out, box-shadow 0.45s ease-out;
}
.page-home .home-feedback-chip__badge {
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}
.page-home .home-feedback-chip__text {
  padding-right: 18px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.page-home .home-feedback-chip:hover,
.page-home .home-feedback-chip:focus-visible {
  width: 236px;
  box-shadow: 0 12px 32px rgba(10, 31, 60, 0.4);
}
.page-home .home-feedback-chip:hover .home-feedback-chip__text,
.page-home .home-feedback-chip:focus-visible .home-feedback-chip__text {
  opacity: 1;
}

/* 滚动动画 */
@keyframes leyu-home-results-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* 平板及以上 */
@media (min-width: 600px) {
  .page-home .home-price__plans {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-results__banner img {
    height: 220px;
  }
  .page-home .home-feedback-note__card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* 桌面 Bento 网格 */
@media (min-width: 900px) {
  .page-home .home-context {
    padding-top: 96px;
  }
  .page-home .home-bento {
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas:
      "schedule schedule schedule schedule champion champion champion champion android android android android"
      "price price price price price price price price feedback feedback feedback feedback";
  }
  .page-home .home-card--schedule {
    grid-area: schedule;
  }
  .page-home .home-card--champion {
    grid-area: champion;
  }
  .page-home .home-card--android {
    grid-area: android;
  }
  .page-home .home-card--price {
    grid-area: price;
  }
  .page-home .home-card--feedback {
    grid-area: feedback;
  }
  .page-home .home-price__grid {
    grid-template-columns: 5fr 7fr;
  }
  .page-home .home-results__banner img {
    height: 260px;
  }
}

/* 减少动效 */
@media (prefers-reduced-motion: reduce) {
  .page-home .home-results__track {
    display: block;
    width: 100%;
    animation: none;
  }
  .page-home .home-results__group {
    flex-wrap: wrap;
  }
  .page-home .home-results__clone {
    display: none;
  }
  .page-home .home-feedback-chip {
    width: 236px;
  }
  .page-home .home-feedback-chip__text {
    opacity: 1;
  }
}
