.page-home {
  --home-angle: 7deg;
  --home-radius: 22px 6px 22px 22px;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: #fff;
}

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

.page-home .container {
  padding-left: 20px;
  padding-right: 20px;
}

.page-home__section {
  padding: 52px 0;
}

.page-home__section-head {
  margin-bottom: 28px;
}

.page-home__section-head .section-kicker {
  margin-bottom: 6px;
}

/* 首屏章节预览 */
.page-home__preview {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 48px 0 64px;
  background: linear-gradient(140deg, var(--c-deep) 0%, #061126 55%, var(--c-deep) 100%);
  color: #fff;
}

.page-home__preview-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-home__preview-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,17,38,.78) 0%, rgba(10,30,63,.58) 46%, rgba(10,30,63,.92) 100%);
}

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

.page-home__preview::before {
  content: "";
  position: absolute;
  top: -14%;
  right: -12%;
  width: 46%;
  height: 130%;
  background: rgba(0,229,160,.08);
  transform: rotate(15deg);
  z-index: -1;
  pointer-events: none;
}

.page-home__preview::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-neon) 0%, var(--c-orange) 100%);
  z-index: 1;
}

.page-home__preview-inner {
  position: relative;
  z-index: 2;
}

.page-home__preview-head {
  max-width: 860px;
}

.page-home__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(245,247,250,.66);
  margin-bottom: 14px;
}

.page-home__crumb-sep {
  color: var(--c-neon);
}

.page-home__title {
  font-family: var(--font-head);
  font-size: clamp(30px, 7vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #fff;
  text-wrap: balance;
}

.page-home__lead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(245,247,250,.82);
  max-width: 720px;
  margin: 0;
}

.page-home__quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}

.page-home__quicknav a {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background .22s ease, border-color .22s ease, color .22s ease;
}

.page-home__quicknav a:hover,
.page-home__quicknav a:focus,
.page-home__quicknav a.is-active {
  background: var(--c-neon);
  border-color: var(--c-neon);
  color: var(--c-deep);
}

/* Bento 卡片 */
.page-home .bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.page-home .bento-item {
  grid-column: span 12;
}

.page-home__bento-wrap {
  padding: 26px;
}

.page-home__bento-page-home__bento-feature {
  border-radius: var(--home-radius);
  background: linear-gradient(135deg, rgba(0,229,160,.16) 0%, rgba(255,107,53,.05) 100%), rgba(16,45,94,.78);
  border: 1px solid rgba(0,229,160,.32);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  transition: transform .26s ease, box-shadow .26s ease;
}

.page-home__bento-page-home__bento-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0,0,0,.36);
}

.page-home__bento-card {
  padding: 24px;
  border-radius: var(--home-radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  transition: transform .26s ease, border-color .26s ease, background .26s ease;
}

.page-home__bento-card:hover,
.page-home__bento-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0,229,160,.52);
  background: rgba(255,255,255,.09);
}

.page-home__bento-card--orange {
  border-top: 3px solid var(--c-orange);
}

.page-home__bento-card--neon {
  border-top: 3px solid var(--c-neon);
}

.page-home__bento-heading {
  margin: 12px 0 8px;
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}

.page-home__bento-heading a {
  color: #fff;
  text-decoration: none;
}

.page-home__bento-heading a:hover,
.page-home__bento-heading a:focus {
  color: var(--c-neon);
}

.page-home__bento-text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,247,250,.76);
}

.page-home__bento-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 20px;
}

.page-home__bento-stat {
  min-width: 72px;
  padding: 10px 14px;
  background: rgba(6,17,38,.5);
  border-radius: 12px;
  text-align: center;
}

.page-home__bento-stat .stat-value {
  display: block;
  font-family: var(--font-data);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-neon);
  line-height: 1.1;
}

.page-home__bento-stat .stat-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(245,247,250,.7);
}

.page-home__bento-more {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-neon);
}

/* 第28轮更新公告 */
.page-home__round {
  background: var(--c-mist);
}

.page-home__round-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}

.page-home__round-copy .section-title {
  margin-bottom: 14px;
}

.page-home__round-copy > p {
  line-height: 1.85;
  color: var(--c-gray);
  margin: 0 0 18px;
}

.page-home__round-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home__round-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.7;
}

.page-home__round-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  background: var(--c-neon);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
}

.page-home__round-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.page-home__stat-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(10,30,63,.06);
}

.page-home__stat-card .stat-value {
  display: block;
  font-family: var(--font-data);
  font-size: 32px;
  font-weight: 800;
  color: var(--c-deep);
  line-height: 1.1;
}

.page-home__stat-card .stat-value::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--c-neon), var(--c-orange));
  border-radius: 4px;
}

.page-home__stat-card .stat-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--c-gray);
}

/* 重点场次 */
.page-home__matches {
  background: #fff;
}

.page-home__matches-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.page-home__match-list {
  display: grid;
}

.page-home__match {
  border-bottom: 1px solid var(--c-line);
}

.page-home__match:first-child {
  border-top: 1px solid var(--c-line);
}

.page-home__match summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  padding: 18px 4px;
  cursor: pointer;
  list-style: none;
}

.page-home__match summary::-webkit-details-marker {
  display: none;
}

.page-home__match .tag {
  grid-column: 1 / -1;
  justify-self: start;
}

.page-home__match strong {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--c-deep);
}

.page-home__match-time {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-orange);
  white-space: nowrap;
}

.page-home__match-detail {
  padding: 4px 4px 22px;
  animation: pageHomeFadeIn .3s ease;
}

.page-home__possession {
  margin-top: 12px;
}

.page-home__possession-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-deep);
  margin-bottom: 8px;
}

.page-home__possession-track {
  height: 8px;
  background: var(--c-line);
  border-radius: 999px;
  overflow: hidden;
}

.page-home__possession-track > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--c-neon), var(--c-orange));
  border-radius: inherit;
}

.page-home__match-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-gray);
}

.page-home__match-visual {
  margin: 0;
  border-radius: 22px 6px 22px 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(10,30,63,.14);
}

.page-home__match-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

/* 会员中心 */
.page-home__member {
  background: var(--c-mist);
}

.page-home__member-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.page-home__member-group {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 22px;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .26s ease, box-shadow .26s ease;
}

.page-home__member-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(10,30,63,.08);
}

.page-home__member-num {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-neon);
  background: rgba(0,229,160,.12);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.page-home__member-group h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-deep);
  margin: 0 0 10px;
}

.page-home__member-group p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-gray);
}

/* 客户端服务 */
.page-home__app {
  background: var(--c-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-home__app::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0,229,160,.2), transparent 70%);
  pointer-events: none;
}

.page-home__app::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,107,53,.16), transparent 70%);
  pointer-events: none;
}

.page-home__app-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.page-home__app-content .section-title {
  color: #fff;
}

.page-home__app-content > p {
  color: rgba(245,247,250,.78);
  line-height: 1.85;
}

.page-home__app-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home__app-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,247,250,.9);
}

.page-home__app-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 18px;
  height: 18px;
  background: var(--c-neon);
  clip-path: polygon(0 0, 60% 0, 100% 100%, 0 55%);
}

.page-home__app-visual {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  max-width: 420px;
  box-shadow: 0 26px 50px rgba(0,0,0,.3);
}

.page-home__app-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* 最新动态 */
.page-home__news {
  background: #fff;
}

.page-home__news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-home__news-item {
  display: block;
  padding: 24px;
  background: var(--c-mist);
  border: 1px solid var(--c-line);
  border-radius: 20px;
  text-decoration: none;
  color: var(--c-ink);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.page-home__news-item:hover,
.page-home__news-item:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0,229,160,.5);
  box-shadow: 0 16px 32px rgba(10,30,63,.08);
}

.page-home__news-item .tag {
  margin-bottom: 12px;
}

.page-home__news-item h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-deep);
  margin: 0 0 8px;
}

.page-home__news-item p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-gray);
}

.page-home__news-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-neon);
}

/* 海南装饰带 */
.page-home__hainan {
  line-height: 0;
}

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

/* 轻量动画 */
@keyframes pageHomeFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 平板与桌面 */
@media (min-width: 720px) {
  .page-home__section {
    padding: 72px 0;
  }

  .page-home__preview {
    padding: 72px 0 92px;
  }

  .page-home__round-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .page-home__matches-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    align-items: start;
  }

  .page-home__app-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  }
}

@media (min-width: 1080px) {
  .page-home .bento-item--span8 {
    grid-column: span 8;
  }

  .page-home .bento-item {
    grid-column: span 4;
  }

  .page-home .bento-item--span12 {
    grid-column: span 12;
  }

  .page-home__bento-stats {
    gap: 12px;
  }

  .page-home__bento-stat {
    min-width: 82px;
    flex: 1;
  }

  .page-home__round-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    align-items: center;
  }

  .page-home__round-cards {
    gap: 16px;
  }

  .page-home__stat-card .stat-value {
    font-size: 38px;
  }
}
