/* ===== 博鱼体育首页专属样式 ===== */
.page-home {
  --home-hero-blue: #01415F;
  --home-panel-glass: rgba(245,239,224,0.08);
  --home-slash: rgba(240,90,40,0.16);
  --home-card-layer: rgba(29,29,27,0.05);
}

.page-home .home-hero {
  position: relative;
  background: linear-gradient(132deg, var(--sport-blue) 0%, #01283E 58%, var(--ink-major) 100%);
  color: var(--paper-base);
  padding: 40px 0 64px;
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -120px;
  width: 340px;
  height: 520px;
  background: var(--home-slash);
  transform: rotate(16deg);
  z-index: 0;
  pointer-events: none;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 56px;
  background: linear-gradient(100deg, var(--accent-orange) 0%, var(--gold) 100%);
  opacity: 0.9;
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
  z-index: 2;
  pointer-events: none;
}

.page-home .home-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  z-index: 0;
  max-width: none;
}

.page-home .home-hero__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.page-home .home-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .home-hero__eyebrow {
  margin: 0;
  font-family: var(--font-index);
  font-size: 0.8rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-home .home-hero__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.01em;
  max-width: 16em;
}

.page-home .home-hero__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245,239,224,0.86);
  max-width: 58ch;
}

.page-home .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-home .home-hero__preview {
  margin-top: 4px;
}

.page-home .home-hero__preview-label {
  margin: 0 0 12px;
  font-family: var(--font-index);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.7);
}

.page-home .home-chapters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.page-home .preview-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(245,239,224,0.28);
  background: var(--home-panel-glass);
  color: var(--paper-base);
  border-radius: 2px;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.page-home .preview-card:hover,
.page-home .preview-card:focus-visible {
  transform: translateX(6px);
  border-color: var(--gold);
  background: rgba(201,160,99,0.14);
  color: var(--paper-base);
}

.page-home .preview-card__index {
  grid-row: 1 / 3;
  font-family: var(--font-index);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

.page-home .preview-card__title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-home .preview-card__desc {
  font-size: 0.82rem;
  color: rgba(245,239,224,0.72);
}

.page-home .home-brand,
.page-home .home-form,
.page-home .home-access,
.page-home .home-vip,
.page-home .home-live {
  padding: 64px 0;
}

.page-home .home-brand {
  position: relative;
  overflow: hidden;
}

.page-home .home-brand::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  background: var(--gold);
  opacity: 0.08;
  transform: rotate(18deg);
  pointer-events: none;
}

.page-home .home-brand__grid {
  display: grid;
  gap: 28px;
  margin-top: 36px;
}

.page-home .home-brand__story {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.page-home .home-brand__story p {
  margin: 0 0 14px;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--paper-base);
}

.page-home .home-brand__milestones {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-brand__milestones li {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(216,207,192,0.35);
}

.page-home .home-brand__milestones b {
  font-family: var(--font-index);
  font-size: 1.05rem;
  color: var(--gold);
}

.page-home .home-brand__milestones span {
  font-size: 0.88rem;
  color: rgba(245,239,224,0.82);
}

.page-home .home-brand__seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.page-home .home-brand__seal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 300px;
  min-height: 280px;
  padding: 28px 20px;
  text-align: center;
  border: 2px solid rgba(201,160,99,0.7);
  outline: 1px solid rgba(201,160,99,0.25);
  outline-offset: 8px;
}

.page-home .home-brand__seal-year {
  font-family: var(--font-display);
  font-size: 4.6rem;
  font-weight: 200;
  color: var(--gold);
  line-height: 1;
}

.page-home .home-brand__seal-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--paper-base);
}

.page-home .home-brand__seal-note {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: rgba(245,239,224,0.65);
}

.page-home .home-form {
  background: var(--paper-alt);
}

.page-home .home-form__dashboard {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.page-home .home-form__stats {
  gap: 16px;
}

.page-home .home-form__stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 16px;
  text-align: center;
  border-left: 4px solid var(--accent-orange);
}

.page-home .home-form__stat-num {
  font-family: var(--font-index);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--sport-blue);
  line-height: 1.2;
}

.page-home .home-form__stat-label {
  font-size: 0.85rem;
  color: var(--ink-minor);
  margin-top: 6px;
}

.page-home .home-form__visual {
  margin: 0;
}

.page-home .home-form__visual img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.page-home .home-form__brief {
  padding: 24px;
  border-left: 6px solid var(--gold);
  background: var(--paper-base);
}

.page-home .home-form__brief h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-major);
}

.page-home .home-form__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.page-home .home-form__list li {
  font-size: 0.9rem;
  color: var(--ink-major);
  padding-left: 20px;
  position: relative;
}

.page-home .home-form__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 10px;
  height: 2px;
  background: var(--accent-orange);
  transform: skewX(-24deg);
}

.page-home .home-form__brief p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 18px;
  color: var(--ink-minor);
}

.page-home .home-access {
  position: relative;
  overflow: hidden;
}

.page-home .home-access::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 16px);
  pointer-events: none;
}

.page-home .home-access .container {
  position: relative;
  z-index: 1;
}

.page-home .home-access__grid {
  display: grid;
  gap: 28px;
  margin-top: 36px;
}

.page-home .home-access__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .home-access__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page-home .home-access__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(245,239,224,0.06);
  border: 1px solid rgba(245,239,224,0.14);
  border-left: 4px solid var(--accent-orange);
}

.page-home .home-access__step-num {
  flex: 0 0 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-index);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-major);
  background: var(--gold);
  border-radius: 2px;
  transform: skewX(-8deg);
}

.page-home .home-access__list b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.02rem;
  color: var(--paper-base);
  margin-bottom: 4px;
}

.page-home .home-access__list p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(245,239,224,0.78);
}

.page-home .home-access__visual {
  margin: 0;
}

.page-home .home-access__visual img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 10px 10px 0 rgba(29,29,27,0.25);
}

.page-home .home-vip {
  background: var(--paper-base);
}

.page-home .home-vip__grid {
  display: grid;
  gap: 28px;
  margin-top: 36px;
  align-items: center;
}

.page-home .home-vip__feed {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
}

.page-home .home-vip__feed img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.page-home .home-vip__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .home-vip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .home-vip__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-right: 4px solid var(--gold);
}

.page-home .home-vip__tag {
  flex: 0 0 auto;
  min-width: 46px;
  padding: 5px 8px;
  text-align: center;
  font-family: var(--font-index);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-major);
  background: var(--gold);
}

.page-home .home-vip__list p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-major);
  line-height: 1.55;
}

.page-home .home-vip__note {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--ink-minor);
  max-width: 52ch;
}

.page-home .home-live {
  position: relative;
  overflow: hidden;
}

.page-home .home-live::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--gold) 60%, transparent 100%);
  pointer-events: none;
}

.page-home .home-live__cards {
  margin-top: 36px;
  gap: 16px;
}

.page-home .home-live__card {
  position: relative;
  padding: 26px 22px;
  overflow: hidden;
}

.page-home .home-live__card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 100px;
  height: 100px;
  background: var(--accent-orange);
  opacity: 0.12;
  transform: rotate(16deg);
}

.page-home .home-live__card h3 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--paper-base);
}

.page-home .home-live__card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245,239,224,0.78);
}

.page-home .home-live__card-num {
  display: inline-block;
  font-family: var(--font-index);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.page-home .home-live__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.page-home .home-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  align-items: center;
  padding: 26px 0 44px;
  font-size: 0.82rem;
  color: var(--ink-minor);
}

.page-home .home-trust a {
  color: var(--ink-minor);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-home .home-trust a:hover {
  color: var(--sport-blue);
}

@media (min-width: 640px) {
  .page-home .home-chapters {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-form__dashboard {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-form__stats {
    grid-column: 1 / -1;
  }

  .page-home .home-form__brief {
    align-self: start;
  }

  .page-home .home-access__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-home .home-vip__grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .page-home .home-live__cta {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 76px 0 108px;
  }

  .page-home .home-hero__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .page-home .home-hero__copy {
    flex: 1 1 56%;
  }

  .page-home .home-hero__preview {
    flex: 1 1 44%;
    margin-top: 8px;
  }

  .page-home .home-chapters {
    grid-template-columns: 1fr;
  }

  .page-home .home-brand,
  .page-home .home-form,
  .page-home .home-access,
  .page-home .home-vip,
  .page-home .home-live {
    padding: 88px 0;
  }

  .page-home .home-brand__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .home-form__dashboard {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .page-home .home-form__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-home .home-form__visual {
    grid-column: 1;
  }

  .page-home .home-form__brief {
    grid-column: 2;
    align-self: stretch;
  }

  .page-home .home-access__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
  }

  .page-home .home-vip__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }

  .page-home .home-vip__feed {
    padding: 24px;
  }

  .page-home .home-live__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
