/* ===== 页面专属：首页 (page-home) ===== */
.page-home {
  --home-hero-title-size: clamp(3.6rem, 12vw, 8rem);
  --home-hero-gold-start: #F5C518;
  --home-hero-gold-end: #E6B800;
  --home-card-radius: 1rem;
  --home-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --home-section-spacing: 6rem;
  background: var(--deep-blue, #0B1F3A);
  color: var(--light-text, #F0F0F0);
}

/* ---- 首屏海报 ---- */
.page-home .home-hero {
  position: relative;
  padding: 2rem 0 3rem;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #0A0E18 0%, #0B1F3A 60%, #0D2A4A 100%);
}

.page-home .home-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.page-home .home-hero__title-block {
  flex: 1 1 55%;
}

.page-home .home-hero__title {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: var(--heading-weight, 800);
  font-size: var(--home-hero-title-size);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--home-hero-gold-start), var(--home-hero-gold-end));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 1rem;
  word-break: break-word;
}

.page-home .home-hero__subtitle {
  font-family: var(--font-body, 'Open Sans', sans-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(240, 240, 240, 0.8);
  margin: 0 0 2rem;
  max-width: 34ch;
  line-height: 1.5;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-home .home-hero__visual {
  flex: 1 1 40%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-home .home-hero__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--home-card-radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}

.page-home .home-hero__shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 80%;
  border: 2px solid var(--transparent-gold, rgba(245,197,24,0.3));
  border-radius: 50% 30% 40% 20%;
  transform: rotate(15deg);
  z-index: 0;
  pointer-events: none;
}

/* ---- 通用区头 ---- */
.page-home .section-label {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold, #F5C518);
  margin-bottom: 0.5rem;
  display: inline-block;
  border-left: 3px solid var(--flame-red, #E63946);
  padding-left: 0.75rem;
}

.page-home .section-title {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: var(--heading-weight, 800);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  color: var(--light-text, #F0F0F0);
}

.page-home .section-desc {
  font-family: var(--font-body, 'Open Sans', sans-serif);
  font-size: 1.05rem;
  color: rgba(240, 240, 240, 0.7);
  margin: 0 0 2.5rem;
  max-width: 50ch;
}

/* ---- 赛事日历 ---- */
.page-home .home-calendar {
  padding: var(--home-section-spacing) 0;
  background: rgba(10, 14, 24, 0.6);
}

.page-home .home-calendar__title {
  color: var(--gold, #F5C518);
}

.page-home .home-calendar__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold, #F5C518) transparent;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.page-home .home-calendar__scroll::-webkit-scrollbar {
  height: 4px;
}
.page-home .home-calendar__scroll::-webkit-scrollbar-thumb {
  background: var(--gold, #F5C518);
  border-radius: 4px;
}

.page-home .home-calendar__track {
  display: flex;
  gap: 1.25rem;
  min-width: max-content;
  padding: 0.25rem;
}

.page-home .home-calendar__card {
  width: 240px;
  flex-shrink: 0;
  padding: 1.5rem;
  background: var(--card-bg, rgba(255,255,255,0.05));
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: var(--home-card-radius);
  transition: transform var(--home-transition), border-color var(--home-transition);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.page-home .home-calendar__card:hover {
  transform: translateY(-4px);
  border-color: var(--gold, #F5C518);
}

.page-home .home-calendar__date {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold, #F5C518);
  letter-spacing: 0.04em;
}

.page-home .home-calendar__match {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.25;
}

.page-home .home-calendar__summary {
  font-size: 0.9rem;
  color: rgba(240, 240, 240, 0.7);
  margin: 0;
  flex: 1;
}

.page-home .home-calendar__nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ---- 精选战报 ---- */
.page-home .home-reports {
  padding: var(--home-section-spacing) 0;
  background: var(--deep-blue, #0B1F3A);
}

.page-home .home-reports__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.page-home .home-reports__filter .btn--ghost.is-active {
  background: var(--gold, #F5C518);
  color: var(--dark-text, #1A1A1A);
  border-color: var(--gold, #F5C518);
}

.page-home .home-reports__grid {
  gap: 1.5rem;
}

.page-home .home-reports__card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg, rgba(255,255,255,0.05));
  border: 1px solid rgba(245, 197, 24, 0.1);
  border-radius: var(--home-card-radius);
  overflow: hidden;
  transition: transform var(--home-transition), box-shadow var(--home-transition);
}

.page-home .home-reports__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

.page-home .home-reports__card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.page-home .home-reports__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-home .home-reports__card:hover .home-reports__card-img img {
  transform: scale(1.03);
}

.page-home .home-reports__card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.page-home .home-reports__card-title {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.3;
}

.page-home .home-reports__card-summary {
  font-size: 0.95rem;
  color: rgba(240, 240, 240, 0.7);
  margin: 0;
  flex: 1;
}

.page-home .home-reports__more {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---- 会员回放 ---- */
.page-home .home-replay {
  padding: var(--home-section-spacing) 0;
  background: rgba(10, 14, 24, 0.7);
  position: relative;
}

.page-home .home-replay__title {
  color: var(--gold, #F5C518);
}

.page-home .home-replay__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.page-home .home-replay__visual {
  position: relative;
  border-radius: var(--home-card-radius);
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0,0,0,0.5);
}

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

.page-home .home-replay__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--flame-red, #E63946);
  color: #fff;
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
}

.page-home .home-replay__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-home .home-replay__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--card-bg, rgba(255,255,255,0.05));
  border: 1px solid rgba(245, 197, 24, 0.1);
  border-radius: var(--home-card-radius);
  transition: background var(--home-transition);
}

.page-home .home-replay__item:hover {
  background: rgba(245, 197, 24, 0.08);
}

.page-home .home-replay__item-number {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold, #F5C518);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}

.page-home .home-replay__item-title {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}

.page-home .home-replay__item-desc {
  font-size: 0.92rem;
  color: rgba(240, 240, 240, 0.7);
  margin: 0;
}

.page-home .home-replay__item em {
  color: var(--gold, #F5C518);
  font-style: italic;
}

.page-home .home-replay__cta {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* card--highlight 高亮卡片 */
.page-home .card--highlight {
  border-color: var(--gold, #F5C518);
  background: rgba(245, 197, 24, 0.08);
}

/* ---- 为何选择米乐M6 ---- */
.page-home .home-why {
  padding: var(--home-section-spacing) 0;
  background: var(--deep-blue, #0B1F3A);
}

.page-home .home-why__title {
  color: var(--light-text, #F0F0F0);
}

.page-home .home-why__grid {
  gap: 1.5rem;
}

.page-home .home-why__card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--card-bg, rgba(255,255,255,0.05));
  border: 1px solid rgba(245, 197, 24, 0.12);
  border-radius: var(--home-card-radius);
  transition: transform var(--home-transition), border-color var(--home-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.page-home .home-why__card:hover {
  transform: translateY(-6px);
  border-color: var(--gold, #F5C518);
}

.page-home .home-why__card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(245, 197, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.page-home .home-why__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-why__card-title {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
}

.page-home .home-why__card-desc {
  font-size: 0.95rem;
  color: rgba(240, 240, 240, 0.7);
  margin: 0;
  flex: 1;
}

.page-home .home-why__card-desc em {
  color: var(--gold, #F5C518);
  font-style: italic;
}

.page-home .home-why__action {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 3rem;
}

/* ---- 信任声明 ---- */
.page-home .home-trust {
  padding: 3rem 0 4rem;
  background: rgba(10, 14, 24, 0.8);
  border-top: 1px solid rgba(245, 197, 24, 0.12);
  text-align: center;
}

.page-home .home-trust__text {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--gold, #F5C518);
  max-width: 50ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.page-home .home-trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  justify-content: center;
}

.page-home .home-trust__links a {
  font-family: var(--font-body, 'Open Sans', sans-serif);
  font-size: 0.95rem;
  color: rgba(240, 240, 240, 0.7);
  text-decoration: none;
  transition: color var(--home-transition);
  position: relative;
}

.page-home .home-trust__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold, #F5C518);
  transition: width var(--home-transition);
}

.page-home .home-trust__links a:hover {
  color: var(--gold, #F5C518);
}

.page-home .home-trust__links a:hover::after {
  width: 100%;
}

/* ===== 响应式 ===== */
/* 窄屏（默认移动优先） */
@media (max-width: 767px) {
  .page-home .home-hero {
    padding: 1.5rem 0 2.5rem;
    min-height: auto;
  }

  .page-home .home-hero__title {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .page-home .home-hero__visual {
    order: -1;
  }

  .page-home .home-hero__img {
    max-height: 280px;
    object-position: center 30%;
  }

  .page-home .home-hero__shape {
    display: none;
  }

  .page-home .section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

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

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

  .page-home .home-calendar__track {
    gap: 1rem;
  }

  .page-home .home-calendar__card {
    width: 200px;
    padding: 1.1rem;
  }

  .page-home .home-replay__content {
    gap: 1.5rem;
  }

  .page-home .home-replay__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .page-home .home-replay__item-number {
    font-size: 1.3rem;
  }

  .page-home .home-trust__links {
    gap: 0.75rem 1.5rem;
  }

  .page-home .home-hero__actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* 宽屏（768px 及以上） */
@media (min-width: 768px) {
  .page-home .home-hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .page-home .home-hero__title-block {
    padding: 2rem 0;
  }

  .page-home .home-hero__visual {
    justify-content: flex-end;
  }

  .page-home .home-hero__img {
    max-width: 520px;
    border-radius: 1.5rem;
  }

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

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

  .page-home .home-replay__content {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-home .home-replay__visual {
    flex: 1 1 45%;
    max-width: 600px;
  }

  .page-home .home-replay__list {
    flex: 1 1 50%;
  }

  .page-home .home-calendar__track {
    gap: 1.5rem;
  }

  .page-home .home-calendar__card {
    width: 260px;
  }

  .page-home .home-hero__actions .btn {
    min-width: 160px;
  }
}

/* 大桌面（1200px 以上） */
@media (min-width: 1200px) {
  .page-home .home-hero__img {
    max-width: 640px;
  }

  .page-home .home-hero__title {
    font-size: 8rem;
  }

  .page-home .home-reports__grid {
    gap: 2rem;
  }
}

```
