.page-home {
  --home-border: #34488F;
  background: #0A0E27;
  color: #FFFFFF;
  overflow-x: clip;
}

/* ===== 面包屑 ===== */
.page-home .breadcrumb {
  padding: 18px 16px 0;
}
.page-home .breadcrumb-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: #B0B6D3;
}
.page-home .breadcrumb-list a {
  color: #00FF87;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.page-home .breadcrumb-list a:hover {
  border-bottom-color: #00FF87;
}

/* ===== 框景首屏：星空竞技场 ===== */
.page-home .hero-window {
  position: relative;
  padding: 18px 16px 64px;
}
.page-home .hero-window::before {
  content: "STADIUM / 01";
  position: absolute;
  top: 30px;
  right: 16px;
  z-index: 8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  color: #00FF87;
}
.page-home .hero-window__frame {
  position: relative;
  border: 3px solid #34488F;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, .38);
  background: #161A38;
  overflow: hidden;
  min-height: 540px;
}
.page-home .hero-window__ruler {
  position: absolute;
  z-index: 6;
  height: 5px;
  left: 0;
  right: 0;
  background: repeating-linear-gradient(90deg, #34488F 0 14px, transparent 14px 22px);
  opacity: .9;
}
.page-home .hero-window__ruler--top {
  top: 0;
}
.page-home .hero-window__ruler--bottom {
  bottom: 0;
}
.page-home .hero-window__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .hero-window__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(139, 126, 200, .35), transparent 42%),
    radial-gradient(circle at 16% 82%, rgba(0, 255, 135, .16), transparent 46%);
}
.page-home .hero-window__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .5;
}
.page-home .hero-window__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  min-height: 540px;
  padding: 80px 20px 88px;
  background: linear-gradient(180deg, rgba(10, 14, 39, .42) 0%, rgba(10, 14, 39, .18) 42%, rgba(10, 14, 39, .94) 100%);
}
.page-home .hero-window__eyebrow {
  align-self: flex-start;
  margin: 0;
  padding: 6px 12px;
  background: rgba(0, 255, 135, .12);
  border: 1px solid rgba(0, 255, 135, .5);
  color: #00FF87;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}
.page-home .hero-window__title {
  margin: 0;
  font-size: clamp(32px, 8.5vw, 64px);
  line-height: 1.12;
  letter-spacing: .02em;
  font-weight: 900;
  color: #FFFFFF;
  max-width: 920px;
}
.page-home .hero-window__desc {
  margin: 0;
  max-width: 720px;
  color: #B0B6D3;
  font-size: 16px;
  line-height: 1.75;
}
.page-home .hero-window__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.page-home .hero-window__ticks {
  position: absolute;
  left: 26px;
  bottom: 18px;
  z-index: 7;
  margin: 0;
  padding: 8px 14px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  background: rgba(10, 14, 39, .82);
  border: 1px solid #34488F;
  color: #B0B6D3;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}
.page-home .hero-window__ticks li::before {
  content: "◇";
  color: #00FF87;
  margin-right: 6px;
}
.page-home .hero-window__corner {
  position: absolute;
  z-index: 8;
  width: 26px;
  height: 26px;
  border-color: #00FF87;
  opacity: .9;
  pointer-events: none;
}
.page-home .hero-window__corner--tl {
  top: 16px;
  left: 16px;
  border-top: 3px solid;
  border-left: 3px solid;
}
.page-home .hero-window__corner--tr {
  top: 16px;
  right: 16px;
  border-top: 3px solid;
  border-right: 3px solid;
}
.page-home .hero-window__corner--bl {
  bottom: 16px;
  left: 16px;
  border-bottom: 3px solid;
  border-left: 3px solid;
}
.page-home .hero-window__corner--br {
  bottom: 16px;
  right: 16px;
  border-bottom: 3px solid;
  border-right: 3px solid;
}
@media (min-width: 900px) {
  .page-home .hero-window__copy {
    padding: 96px clamp(40px, 7vw, 96px) 108px;
    justify-content: center;
    min-height: 640px;
  }
  .page-home .hero-window__desc {
    font-size: 18px;
  }
  .page-home .hero-window__ticks {
    left: 42px;
  }
}

/* ===== 今日赛事精选 ===== */
.page-home .matches {
  padding: 72px 16px 96px;
}
.page-home .matches__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 840px;
}
.page-home .matches__header .section-desc {
  max-width: 640px;
}
.page-home .match-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 44px;
}
.page-home .match-card {
  position: relative;
  border: 2px solid #34488F;
  background: #161A38;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .32);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.page-home .match-card:hover {
  transform: translateY(-6px);
  border-color: #00FF87;
}
.page-home .match-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid #34488F;
}
.page-home .match-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0) 40%, rgba(10, 14, 39, .6));
}
.page-home .match-card__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.page-home .match-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(10, 14, 39, .75);
  border: 1px solid #34488F;
  border-radius: 50%;
  color: #B0B6D3;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: all .2s;
}
.page-home .match-card__fav:hover,
.page-home .match-card__fav.is-active {
  color: #00FF87;
  border-color: #00FF87;
}
.page-home .match-card__fav.is-active {
  background: rgba(0, 255, 135, .15);
}
.page-home .match-card__content {
  padding: 22px 20px 26px;
}
.page-home .match-card__meta {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: .14em;
  color: #B0B6D3;
  text-transform: uppercase;
}
.page-home .match-card__scoreline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.page-home .match-card__team {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-home .match-card__team--away {
  text-align: right;
}
.page-home .match-card__team-name {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: #FFFFFF;
}
.page-home .match-card__team-side {
  font-size: 12px;
  color: #B0B6D3;
  letter-spacing: .08em;
}
.page-home .match-card__team-score {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: #00FF87;
}
.page-home .match-card__team--away .match-card__team-score {
  color: #FFFFFF;
}
.page-home .match-card__vs {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #FF6B00;
  padding: 6px 8px;
  border: 1px solid #FF6B00;
}
.page-home .match-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.page-home .match-card__time {
  font-size: 13px;
  color: #B0B6D3;
}
.page-home .match-card__switch {
  border: 1px solid #34488F;
  background: transparent;
  color: #B0B6D3;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
}
.page-home .match-card__switch:hover {
  border-color: #00FF87;
  color: #00FF87;
}
.page-home .match-card__switch[aria-expanded="true"] {
  border-color: #00FF87;
  color: #00FF87;
  background: rgba(0, 255, 135, .1);
}
.page-home .match-card__detail {
  margin-top: 16px;
  border-top: 1px solid #4A4F6E;
  padding-top: 16px;
}
.page-home .match-card__detail[data-panel-body][hidden] {
  display: none;
}
.page-home .match-detail__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .match-detail__list div {
  border-left: 2px solid #00FF87;
  padding-left: 10px;
}
.page-home .match-detail__list dt {
  font-size: 12px;
  color: #B0B6D3;
  margin-bottom: 4px;
}
.page-home .match-detail__list dd {
  margin: 0;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 600;
}
.page-home .match-detail__list dd b {
  color: #00FF87;
}
.page-home .match-card__note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #B0B6D3;
}
@media (min-width: 1024px) {
  .page-home .match-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .page-home .match-grid .match-card:nth-child(2) {
    transform: translateY(22px);
  }
  .page-home .match-grid .match-card:nth-child(2):hover {
    transform: translateY(16px);
  }
}

/* ===== 我的关注：星轨收藏 ===== */
.page-home .star-orbit {
  position: relative;
  padding: 88px 16px;
  background: #161A38;
  border-top: 3px solid #34488F;
  border-bottom: 3px solid #34488F;
  overflow: hidden;
}
.page-home .star-orbit::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 126, 200, .30), transparent 70%);
}
.page-home .star-orbit__inner {
  position: relative;
  display: grid;
  gap: 44px;
  max-width: 1180px;
  margin: 0 auto;
}
.page-home .star-orbit__left {
  max-width: 640px;
}
.page-home .star-orbit__left > p {
  margin: 18px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #B0B6D3;
}
.page-home .star-orbit__list {
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.page-home .star-orbit__list li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(10, 14, 39, .55);
  border: 1px solid #34488F;
  color: #FFFFFF;
  font-size: 15px;
}
.page-home .star-orbit__list li::before {
  content: "★";
  color: #00FF87;
  flex: 0 0 auto;
}
.page-home .star-orbit__figure {
  position: relative;
  margin: 0;
  max-width: 620px;
  border: 2px solid #34488F;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .32);
}
.page-home .star-orbit__figure::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 255, 255, .35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: page-home-orbit-spin 30s linear infinite;
}
@keyframes page-home-orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.page-home .star-orbit__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.page-home .star-orbit__figure figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  background: rgba(10, 14, 39, .85);
  border: 1px solid #00FF87;
  color: #00FF87;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: .12em;
}
@media (min-width: 960px) {
  .page-home .star-orbit__inner {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
    align-items: center;
  }
  .page-home .star-orbit__figure {
    transform: translateY(-8px);
  }
}

/* ===== 阵容变动播报 ===== */
.page-home .lineup-alerts {
  position: relative;
  padding: 96px 16px;
}
.page-home .lineup-alerts::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-top: 52px solid #FF6B00;
  border-left: 52px solid transparent;
}
.page-home .lineup-alerts__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 900px;
}
.page-home .lineup-alerts__badge {
  align-self: flex-start;
  padding: 6px 12px;
  border: 1px solid #FF6B00;
  color: #FF6B00;
  font-size: 13px;
  letter-spacing: .08em;
}
.page-home .lineup-alerts__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.page-home .lineup-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.page-home .lineup-item {
  display: flex;
  gap: 16px;
  padding: 18px 16px;
  border: 1px solid #34488F;
  border-left: 5px solid #FF6B00;
  background: #161A38;
  transition: border-color .2s, transform .2s;
}
.page-home .lineup-item:hover {
  border-color: #FF6B00;
  transform: translateX(4px);
}
.page-home .lineup-item__num {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: #FF6B00;
  min-width: 34px;
}
.page-home .lineup-item__body {
  flex: 1;
  min-width: 0;
}
.page-home .lineup-item__body h3 {
  margin: 8px 0 6px;
  font-size: 18px;
  color: #FFFFFF;
}
.page-home .lineup-item__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #B0B6D3;
}
.page-home .lineup-item__time {
  font-size: 12px;
  color: #FF6B00;
  white-space: nowrap;
  align-self: flex-start;
  background: rgba(255, 107, 0, .1);
  padding: 4px 8px;
}
.page-home .lineup-alerts__note {
  margin-top: 30px;
  padding: 16px 18px;
  border: 2px dashed #34488F;
  color: #E4E6F2;
  background: rgba(22, 26, 56, .6);
  font-size: 15px;
  line-height: 1.7;
}
.page-home .lineup-alerts__note b {
  color: #00FF87;
}
.page-home .lineup-alerts__pic {
  position: relative;
  margin: 0;
  border: 2px solid #34488F;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .3);
}
.page-home .lineup-alerts__pic img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.page-home .lineup-alerts__pic figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 107, 0, .85);
  color: #0A0E27;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}
@media (min-width: 960px) {
  .page-home .lineup-alerts__grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: 48px;
  }
}

/* ===== 平台亮点 ===== */
.page-home .highlights {
  padding: 96px 16px;
  background: #161A38;
  border-top: 3px solid #34488F;
}
.page-home .highlights__header {
  max-width: 780px;
}
.page-home .highlights__grid {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}
.page-home .highlight-item {
  position: relative;
  padding: 28px 22px 34px;
  background: linear-gradient(135deg, rgba(30, 43, 92, .72), rgba(22, 26, 56, .95));
  border: 1px solid #34488F;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.page-home .highlight-item:hover {
  border-color: #00FF87;
  transform: translateY(-4px);
}
.page-home .highlight-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  background: #00FF87;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.page-home .highlight-item__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #00FF87;
  color: #00FF87;
  margin-bottom: 20px;
}
.page-home .highlight-item__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.page-home .highlight-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
}
.page-home .highlight-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #B0B6D3;
}
.page-home .highlights__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.page-home .highlights__stats .stat-label {
  display: block;
  font-size: 13px;
  color: #B0B6D3;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.page-home .highlights__stats .stat-num {
  display: block;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  line-height: 1.2;
}
.page-home .highlights__stats .stat-highlight {
  padding: 22px 16px;
  background: #0A0E27;
  border-top: 4px solid #00FF87;
  margin: 0;
}
.page-home .highlights__stats .stat-highlight--orange {
  border-top-color: #FF6B00;
}
@media (min-width: 640px) {
  .page-home .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1080px) {
  .page-home .highlights__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .highlight-item:nth-child(2),
  .page-home .highlight-item:nth-child(3) {
    transform: translateY(16px);
  }
}

/* ===== 最新动态 ===== */
.page-home .home-news {
  padding: 88px 16px 80px;
}
.page-home .home-news__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
}
.page-home .home-news__list {
  margin: 44px 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.page-home .home-news__list a {
  display: flex;
  gap: 18px;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
  border: 2px solid #34488F;
  background: #161A38;
  padding: 20px 18px;
  transition: border-color .2s, background .2s;
}
.page-home .home-news__list a:hover,
.page-home .home-news__list a:focus-visible {
  border-color: #00FF87;
  background: #1E2B5C;
}
.page-home .home-news__num {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: #00FF87;
  min-width: 56px;
}
.page-home .home-news__body {
  flex: 1;
  min-width: 0;
}
.page-home .home-news__tag {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #FF6B00;
}
.page-home .home-news__body h3 {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 4px;
  font-weight: 800;
}
.page-home .home-news__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #B0B6D3;
}
.page-home .home-news__cta {
  display: inline-block;
}
.page-home .home-news__trust {
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid #34488F;
  font-size: 14px;
  line-height: 1.7;
  color: #B0B6D3;
}
@media (min-width: 1024px) {
  .page-home .home-news__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .page-home .home-news__list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .page-home .home-news__body p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .35s, opacity .3s, margin .3s;
    margin-top: 0;
  }
  .page-home .home-news__list a:hover .home-news__body p,
  .page-home .home-news__list a:focus-visible .home-news__body p {
    max-height: 160px;
    opacity: 1;
    margin-top: 6px;
  }
}
