.page-home{
  --home-gutter: clamp(16px, 4vw, 56px);
  --home-line: 1px solid var(--c-border);
  overflow-x: clip;
  color: var(--c-text);
}
.page-home h2,
.page-home h3{
  font-family: var(--font-display);
  letter-spacing: .01em;
}
.page-home .section-label{
  margin-bottom: 12px;
}

/* ========== 首屏 · 框景数据总览 ========== */
.page-home .home-hero{
  padding-top: 20px;
}
.page-home .home-hero__frame{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-border);
  padding: var(--home-gutter);
  background:
    radial-gradient(circle at 82% 18%, rgba(255,122,26,.14), transparent 52%),
    linear-gradient(135deg, rgba(14,36,64,.9), rgba(7,25,46,.5));
}
.page-home .home-hero__frame::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--c-lime) 0 2px, transparent 2px 10px);
  opacity: .55;
  pointer-events: none;
}
.page-home .home-hero__frame::after{
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-lime));
  opacity: .8;
}
.page-home .home-hero__corner{
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
  z-index: 3;
}
.page-home .home-hero__corner--tl{
  top: 10px; left: 10px;
  border-top: 2px solid var(--c-lime);
  border-left: 2px solid var(--c-lime);
}
.page-home .home-hero__corner--tr{
  top: 10px; right: 10px;
  border-top: 2px solid var(--c-accent);
  border-right: 2px solid var(--c-accent);
}
.page-home .home-hero__corner--bl{
  bottom: 10px; left: 10px;
  border-bottom: 2px solid var(--c-accent);
  border-left: 2px solid var(--c-accent);
}
.page-home .home-hero__corner--br{
  bottom: 10px; right: 10px;
  border-bottom: 2px solid var(--c-lime);
  border-right: 2px solid var(--c-lime);
}
.page-home .home-hero__rail{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--c-border);
}
.page-home .home-hero__rail-version{
  font-family: var(--font-mono);
  font-size: var(--fs-13);
  color: var(--c-accent);
  background: var(--c-deep);
  border: 1px solid var(--c-border);
  padding: 6px 10px;
  white-space: nowrap;
}
.page-home .home-hero__rail-line{
  width: 28px;
  height: 1px;
  background: var(--c-border);
}
.page-home .home-hero__rail-sync{
  font-size: var(--fs-13);
  color: var(--c-text-2);
  white-space: nowrap;
}
.page-home .home-context{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-13);
  color: var(--c-text-2);
  margin-bottom: 16px;
}
.page-home .home-context__item--current{
  color: var(--c-accent);
  font-family: var(--font-mono);
}
.page-home .home-context__sep{
  opacity: .5;
}
.page-home .home-hero__title{
  margin: 4px 0 18px;
  font-size: clamp(2.75rem, 7.4vw, 4.5rem);
  line-height: .96;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
  transform: rotate(var(--home-skew, -3deg));
  transform-origin: left center;
}
.page-home .home-hero__title-line{
  display: block;
}
.page-home .home-hero__title-num{
  font-family: var(--font-mono);
  color: var(--c-accent);
  font-weight: 700;
}
.page-home .home-hero__desc{
  font-size: var(--fs-15);
  line-height: 1.7;
  color: var(--c-text-2);
  max-width: 58ch;
  margin: 0 0 24px;
}
.page-home .home-hero__stats{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.page-home .home-hero__stat{
  background: rgba(3,16,31,.55);
  border: 1px solid var(--c-border);
  padding: 12px 14px;
  min-width: 0;
}
.page-home .home-hero__stat-num{
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-24);
  font-weight: 700;
  color: var(--c-lime);
  line-height: 1.1;
}
.page-home .home-hero__stat-label{
  display: block;
  font-size: var(--fs-12);
  color: var(--c-text-2);
  margin-top: 4px;
  letter-spacing: .04em;
}
.page-home .home-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-hero__media{
  position: relative;
  overflow: hidden;
  height: 220px;
  margin-top: 20px;
  border: 1px solid var(--c-border);
  background: var(--c-deep);
}
.page-home .home-hero__img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}

@media (min-width: 768px){
  .page-home .home-hero__stats{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px){
  .page-home .home-hero{
    padding-top: 44px;
  }
  .page-home .home-hero__frame{
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) minmax(0, .82fr);
    gap: 32px;
    min-height: 640px;
    padding: 40px 44px 44px 0;
  }
  .page-home .home-hero__rail{
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-bottom: 0;
    border-right: 1px solid var(--c-border);
    margin: 0;
    padding: 16px 12px 16px 0;
    gap: 18px;
  }
  .page-home .home-hero__rail-line{
    width: 1px;
    height: 40px;
  }
  .page-home .home-hero__content{
    padding-top: 12px;
  }
  .page-home .home-hero__desc{
    font-size: var(--fs-16);
  }
  .page-home .home-hero__media{
    height: auto;
    min-height: 0;
    margin-top: 0;
    align-self: stretch;
  }
  .page-home .home-hero__img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

/* ========== 今日战报专栏 ========== */
.page-home .home-reports{
  padding: 52px 0 24px;
}
.page-home .home-reports__wrap{
  max-width: 1060px;
}
.page-home .home-reports__header{
  margin-bottom: 26px;
}
.page-home .home-reports__header .btn{
  margin-top: 16px;
}
.page-home .home-reports__title{
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.05;
}
.page-home .home-reports__intro{
  margin: 0;
  color: var(--c-text-2);
  font-size: var(--fs-15);
  line-height: 1.65;
  max-width: 62ch;
}
.page-home .home-reports__body{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.page-home .home-reports__media{
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-deep);
}
.page-home .home-reports__img{
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.page-home .home-reports__list{
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
  position: relative;
  border-left: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-home .home-reports__item{
  position: relative;
}
.page-home .home-reports__item::before{
  content: "";
  position: absolute;
  left: -26px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-base);
  border: 2px solid var(--c-lime);
  box-shadow: 0 0 0 4px rgba(185,255,61,.14);
}
.page-home .home-reports__link{
  display: block;
  position: relative;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-bottom-width: 2px;
  padding: 14px 16px 12px;
  text-decoration: none;
  color: var(--c-text);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.page-home .home-reports__link::before{
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), transparent 88%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.page-home .home-reports__link:hover,
.page-home .home-reports__link:focus-visible{
  transform: translateY(-3px);
  border-color: #3A5F84;
  box-shadow: var(--shadow-1);
}
.page-home .home-reports__link:hover::before,
.page-home .home-reports__link:focus-visible::before{
  transform: scaleX(1);
}
.page-home .home-reports__cat{
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  color: var(--c-lime);
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.page-home .home-reports__headline{
  display: block;
  font-size: var(--fs-16);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}
.page-home .home-reports__meta{
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-home .home-reports__stat{
  font-size: var(--fs-13);
  color: var(--c-text-2);
}

@media (min-width: 880px){
  .page-home .home-reports__body{
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 26px;
    align-items: stretch;
  }
  .page-home .home-reports__media{
    height: auto;
  }
  .page-home .home-reports__img{
    height: 100%;
    min-height: 260px;
  }
}

/* ========== 球队资料库检索 ========== */
.page-home .home-database{
  padding: 24px 0 72px;
}
.page-home .home-database__panel{
  position: relative;
  background: linear-gradient(160deg, var(--c-card), rgba(3,16,31,.85));
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-accent);
}
.page-home .home-database__media{
  overflow: hidden;
  height: 280px;
  background: var(--c-deep);
  border-bottom: 1px solid var(--c-border);
}
.page-home .home-database__img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .home-database__content{
  padding: 26px 22px 30px;
}
.page-home .home-database__title{
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  line-height: 1.05;
}
.page-home .home-database__lead{
  margin: 0 0 20px;
  color: var(--c-text-2);
  font-size: var(--fs-15);
  line-height: 1.65;
}
.page-home .home-database__search{
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-base);
  border: 1px solid var(--c-border);
  padding: 14px 16px;
  cursor: text;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.page-home .home-database__search:hover{
  border-color: #3A5F84;
}
.page-home .home-database__search:focus{
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(255,122,26,.16);
  outline: none;
}
.page-home .home-database__search:focus-visible{
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}
.page-home .home-database__search-icon{
  width: 14px;
  height: 14px;
  border: 2px solid var(--c-lime);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}
.page-home .home-database__search-icon::after{
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 2px;
  background: var(--c-lime);
  transform: rotate(45deg);
}
.page-home .home-database__search-text{
  color: var(--c-text-2);
  font-size: var(--fs-15);
  flex: 1;
  min-width: 0;
}
.page-home .home-database__search-key{
  font-family: var(--font-mono);
  font-size: var(--fs-13);
  color: var(--c-border);
}
.page-home .home-database__dropdown{
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--c-deep);
  border: 1px solid var(--c-border);
  border-top: 0;
}
.page-home .home-database__dropdown a{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  color: var(--c-text);
  text-decoration: none;
  border-top: 1px solid rgba(42,75,107,.5);
  font-size: var(--fs-14);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.page-home .home-database__dropdown a:hover,
.page-home .home-database__dropdown a:focus-visible{
  background: var(--c-tag);
  color: var(--c-lime);
}
.page-home .home-database__dropdown-label{
  font-size: var(--fs-12);
  color: var(--c-text-2);
  font-family: var(--font-mono);
}
.page-home .home-database__suggest{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 16px 0 20px;
}
.page-home .home-database__suggest-label{
  font-size: var(--fs-13);
  color: var(--c-text-2);
  margin-right: 2px;
}
.page-home .home-database__chip{
  font-size: var(--fs-13);
  color: var(--c-text);
  text-decoration: none;
  background: var(--c-tag);
  border: 1px solid var(--c-border);
  padding: 6px 10px;
  transition: border-color .2s, color .2s;
}
.page-home .home-database__chip:hover,
.page-home .home-database__chip:focus-visible{
  border-color: var(--c-lime);
  color: var(--c-lime);
  outline: none;
}
.page-home .home-database__facts{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.page-home .home-database__fact{
  background: rgba(7,25,46,.7);
  border: 1px solid var(--c-border);
  padding: 14px 12px;
  text-align: center;
}
.page-home .home-database__fact-num{
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-24);
  font-weight: 700;
  color: var(--c-lime);
  line-height: 1.1;
}
.page-home .home-database__fact-label{
  display: block;
  font-size: var(--fs-12);
  color: var(--c-text-2);
  margin-top: 6px;
}
.page-home .home-database__note{
  font-size: var(--fs-13);
  color: var(--c-text-2);
  line-height: 1.6;
  margin: 0 0 20px;
}
.page-home .home-database__content .btn{
  margin-top: 4px;
}

@media (min-width: 480px){
  .page-home .home-database__facts{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 960px){
  .page-home .home-database__panel{
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    max-width: 1120px;
    margin-left: auto;
  }
  .page-home .home-database__media{
    height: 100%;
    min-height: 560px;
    border-bottom: 0;
    border-right: 1px solid var(--c-border);
  }
  .page-home .home-database__content{
    padding: 44px 40px;
  }
}

/* ========== 专家解读集合 ========== */
.page-home .home-expert{
  position: relative;
  z-index: 2;
  padding: 40px 0 48px;
}
.page-home .home-expert__header{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.page-home .home-expert__title{
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  line-height: 1.05;
}
.page-home .home-expert__scroller{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-accent) var(--c-border);
}
.page-home .home-expert__scroller:focus-visible{
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}
.page-home .home-expert__card{
  flex: 0 0 82vw;
  max-width: 300px;
  scroll-snap-align: start;
  background: linear-gradient(145deg, var(--c-card), var(--c-base));
  border: 1px solid var(--c-border);
  border-bottom: 3px solid var(--c-border);
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.page-home .home-expert__card:hover,
.page-home .home-expert__card:focus-within{
  transform: translateY(-4px);
  border-color: #3A5F84;
  border-bottom-color: var(--c-accent);
  box-shadow: var(--shadow-1);
}
.page-home .home-expert__badge{
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  color: var(--c-lime);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.page-home .home-expert__card-title{
  margin: 0;
  font-size: var(--fs-20);
  line-height: 1.2;
}
.page-home .home-expert__card-text{
  margin: 0;
  font-size: var(--fs-14);
  color: var(--c-text-2);
  line-height: 1.6;
  flex-grow: 1;
}
.page-home .home-expert__card-meta{
  font-size: var(--fs-12);
  color: var(--c-text-2);
  border-top: 1px solid var(--c-border);
  padding-top: 10px;
  font-family: var(--font-mono);
}
.page-home .home-expert__dots{
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}
.page-home .home-expert__dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  transition: width .3s var(--ease), background .3s var(--ease), border-radius .3s var(--ease);
}
.page-home .home-expert__dot--current{
  width: 24px;
  border-radius: 5px;
  background: var(--c-accent);
}

@media (min-width: 768px){
  .page-home .home-expert__card{
    flex-basis: 300px;
  }
}

@media (min-width: 960px){
  .page-home .home-expert{
    margin-top: -56px;
    padding-top: 92px;
  }
  .page-home .home-expert__scroller{
    margin-right: -48px;
    padding-right: 48px;
  }
}

/* ========== 关注列表导航2026 ========== */
.page-home .home-watchlist{
  padding: 16px 0 72px;
}
.page-home .home-watchlist__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.page-home .home-watchlist__title{
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.08;
}
.page-home .home-watchlist__lead{
  margin: 0;
  color: var(--c-text-2);
  font-size: var(--fs-15);
  line-height: 1.7;
}
.page-home .home-watchlist__steps{
  list-style: none;
  margin: 26px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-home .home-watchlist__step{
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 2px solid var(--c-border);
  padding-left: 20px;
}
.page-home .home-watchlist__step::before{
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  transform: rotate(45deg);
}
.page-home .home-watchlist__step-num{
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  color: var(--c-lime);
  padding-top: 5px;
}
.page-home .home-watchlist__step-title{
  margin: 0 0 6px;
  font-size: var(--fs-18);
}
.page-home .home-watchlist__step p{
  margin: 0;
  font-size: var(--fs-14);
  color: var(--c-text-2);
  line-height: 1.6;
}
.page-home .home-watchlist__content .btn{
  margin-top: 4px;
}
.page-home .home-watchlist__panel{
  background: var(--c-deep);
  border: 1px solid var(--c-border);
  padding: 12px;
}
.page-home .home-watchlist__media{
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.page-home .home-watchlist__img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .home-watchlist__teams{
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .home-watchlist__team{
  display: inline-block;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: var(--fs-13);
  color: var(--c-text);
  background: var(--c-tag);
  border: 1px solid var(--c-border);
  text-decoration: none;
  transition: border-color .2s, color .2s, transform .2s var(--ease);
}
.page-home .home-watchlist__team:hover,
.page-home .home-watchlist__team:focus-visible{
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
  outline: none;
}

@media (min-width: 960px){
  .page-home .home-watchlist__grid{
    grid-template-columns: .95fr 1.05fr;
    gap: 56px;
    align-items: center;
  }
  .page-home .home-watchlist__content{
    padding-left: 8px;
  }
  .page-home .home-watchlist__panel{
    padding: 16px;
  }
}

/* ========== 关于乐鱼 ========== */
.page-home .home-about{
  padding: 56px 0 72px;
  border-top: 1px solid var(--c-border);
  background: linear-gradient(180deg, transparent, rgba(3,16,31,.5));
}
.page-home .home-about__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.page-home .home-about__title{
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  line-height: 1.08;
}
.page-home .home-about__lead{
  margin: 0;
  font-size: var(--fs-15);
  color: var(--c-text-2);
  line-height: 1.7;
}
.page-home .home-about__principles{
  list-style: none;
  margin: 24px 0 20px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-home .home-about__principles li{
  background: var(--c-card);
  border: 1px solid var(--c-border);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-home .home-about__principle-icon{
  width: 10px;
  height: 10px;
  background: var(--c-accent);
  transform: rotate(45deg);
  display: block;
}
.page-home .home-about__principles li:nth-child(1) .home-about__principle-icon{
  background: var(--c-lime);
}
.page-home .home-about__principles li:nth-child(2) .home-about__principle-icon{
  background: var(--c-accent);
}
.page-home .home-about__principles li:nth-child(3) .home-about__principle-icon{
  background: var(--c-red);
}
.page-home .home-about__principle-title{
  margin: 0 0 6px;
  font-size: var(--fs-18);
}
.page-home .home-about__principle-title + p{
  margin: 0;
  font-size: var(--fs-14);
  color: var(--c-text-2);
  line-height: 1.6;
}
.page-home .home-about__badges{
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .home-about__badges li{
  font-size: var(--fs-13);
  color: var(--c-lime);
  background: rgba(185,255,61,.06);
  border: 1px solid rgba(185,255,61,.35);
  padding: 8px 12px;
  font-family: var(--font-mono);
}
.page-home .home-about__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 768px){
  .page-home .home-about__principles{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px){
  .page-home .home-about__grid{
    grid-template-columns: .78fr 1.22fr;
    gap: 48px;
  }
  .page-home .home-about__intro{
    padding-top: 8px;
  }
}

.page-home {
  --home-skew: var(--home-line);
}
