.page-home {
  --home-gold: #D4AF37;
  --home-gold-light: #F5E7A3;
  --home-navy: #0A1F44;
  --home-green: #0F2A1D;
  --home-cyan: #00D4FF;
  --home-white: #FFFFFF;
  --home-slate: #7B8CA6;
  --home-line: rgba(212, 175, 55, 0.26);
  --home-panel: rgba(255, 255, 255, 0.055);
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--home-navy) 0%, var(--home-green) 100%);
  color: var(--home-white);
  font-family: var(--font-body);
}

/* ===== 品牌封面 ===== */
.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--home-line);
  overflow: hidden;
}

.page-home .home-hero__media {
  position: absolute;
  inset: 0;
}

.page-home .home-hero__media,
.page-home .home-hero__media img {
  width: 100%;
  height: 100%;
}

.page-home .home-hero__media img {
  object-fit: cover;
  display: block;
}

.page-home .home-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(10, 31, 68, 0.92) 0%, rgba(10, 31, 68, 0.58) 36%, rgba(15, 42, 29, 0.76) 64%, rgba(10, 31, 68, 0.94) 100%);
  pointer-events: none;
}

.page-home .home-hero__fx {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 22% 68%, rgba(0, 212, 255, 0.30) 0, transparent 22px),
    radial-gradient(circle at 80% 24%, rgba(212, 175, 55, 0.28) 0, transparent 30px),
    radial-gradient(circle at 62% 76%, rgba(0, 212, 255, 0.22) 0, transparent 18px),
    radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.20) 0, transparent 16px),
    radial-gradient(circle at 74% 58%, rgba(245, 231, 163, 0.22) 0, transparent 12px),
    radial-gradient(circle at 16% 42%, rgba(0, 212, 255, 0.18) 0, transparent 10px);
  animation: homeParticles 16s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes homeParticles {
  0% {
    opacity: 0.72;
    transform: translateX(0) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-14px) translateY(8px);
  }
  100% {
    opacity: 0.82;
    transform: translateX(10px) translateY(-6px);
  }
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: clamp(84px, 14vh, 120px);
  padding-bottom: clamp(48px, 8vh, 88px);
  text-align: left;
}

.page-home .home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(10, 31, 68, 0.72);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--home-gold-light);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.28);
}

.page-home .home-hero__eyebrow {
  color: var(--home-gold);
  letter-spacing: 0.14em;
  margin: 0;
}

.page-home .home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 8vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.04em;
  color: var(--home-white);
  margin: 0;
}

.page-home .home-hero__lead {
  font-size: clamp(1.02rem, 3vw, 1.5rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
  max-width: 560px;
  margin: 0;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.page-home .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.page-home .home-hero__meta .meta-pill {
  border: 1px solid var(--home-line);
  background: rgba(10, 31, 68, 0.58);
  color: var(--home-gold-light);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

@media (min-width: 1000px) {
  .page-home .home-hero__inner {
    align-items: center;
    text-align: center;
    gap: 22px;
  }

  .page-home .home-hero__lead {
    margin-inline: auto;
  }

  .page-home .home-hero__actions,
  .page-home .home-hero__meta {
    justify-content: center;
  }
}

/* ===== 认证声明 ===== */
.page-home .home-cert {
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(72px, 10vw, 120px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .home-cert__grid {
  display: grid;
  gap: 36px;
  align-items: start;
}

.page-home .home-cert__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-cert__main .eyebrow {
  color: var(--home-gold);
  letter-spacing: 0.14em;
}

.page-home .home-cert__main .section-title {
  margin-bottom: 20px;
}

.page-home .home-cert__prose p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-home .home-cert__prose p:last-child {
  margin-bottom: 0;
}

.page-home .home-cert__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-home .home-cert__side {
  border: 1px solid var(--home-line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.page-home .home-cert__media,
.page-home .home-cert__media img {
  width: 100%;
}

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

.page-home .home-cert__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(212, 175, 55, 0.22);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.page-home .home-cert__stat {
  background: rgba(10, 31, 68, 0.9);
  padding: 18px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .home-cert__num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  color: var(--home-gold);
}

.page-home .home-cert__label {
  font-size: 0.78rem;
  color: var(--home-slate);
  letter-spacing: 0.04em;
}

@media (min-width: 1024px) {
  .page-home .home-cert__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 60px;
  }

  .page-home .home-cert__side {
    position: relative;
  }
}

/* ===== 用户引导 ===== */
.page-home .home-guide {
  padding-top: clamp(72px, 9vw, 104px);
  padding-bottom: clamp(72px, 9vw, 104px);
  background: linear-gradient(180deg, rgba(10, 31, 68, 0.78) 0%, rgba(15, 42, 29, 0.5) 100%);
}

.page-home .home-guide .section-head {
  margin-bottom: 28px;
}

.page-home .home-guide .eyebrow {
  color: var(--home-gold);
  letter-spacing: 0.14em;
}

.page-home .home-guide__steps {
  display: grid;
  gap: 16px;
}

.page-home .home-guide__step {
  padding: 24px 22px;
  border: 1px solid var(--home-line);
  border-radius: 16px;
  background: var(--home-panel);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-home .home-guide__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.page-home .home-guide__index {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--home-gold);
  margin-bottom: 14px;
}

.page-home .home-guide__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--home-white);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.page-home .home-guide__desc {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
}

.page-home .home-guide__notice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 34px;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16) 0%, rgba(10, 31, 68, 0.64) 60%);
  padding: 22px;
}

.page-home .home-guide__notice-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.page-home .home-guide__notice-text strong {
  color: var(--home-gold-light);
}

@media (min-width: 700px) {
  .page-home .home-guide__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1000px) {
  .page-home .home-guide__notice {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .page-home .home-guide__notice-text {
    flex: 1;
  }
}

/* ===== 品牌服务索引 ===== */
.page-home .home-services {
  padding-top: clamp(72px, 10vw, 112px);
  padding-bottom: clamp(72px, 10vw, 112px);
}

.page-home .home-services .section-head {
  margin-bottom: 30px;
}

.page-home .home-services .eyebrow {
  color: var(--home-gold);
  letter-spacing: 0.14em;
}

.page-home .home-services__grid {
  display: grid;
  gap: 20px;
}

.page-home .home-services__item {
  display: grid;
  gap: 0;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.page-home .home-services__media,
.page-home .home-services__media img {
  width: 100%;
}

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

.page-home .home-services__body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.page-home .home-services__body .meta-pill {
  border: 1px solid var(--home-line);
  background: rgba(10, 31, 68, 0.5);
  color: var(--home-gold-light);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
}

.page-home .home-services__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
  color: var(--home-white);
}

.page-home .home-services__desc {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0 0 10px;
}

.page-home .home-services__link {
  color: var(--home-gold);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.page-home .home-services__link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-home .home-services__item--esports {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16) 0%, rgba(10, 31, 68, 0.5) 60%, rgba(15, 42, 29, 0.48) 100%);
}

.page-home .home-services__item--esports .home-services__body {
  position: relative;
  z-index: 1;
  padding-right: 80px;
}

.page-home .home-services__accent {
  position: absolute;
  right: 26px;
  bottom: 10px;
  font-family: var(--font-display);
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(212, 175, 55, 0.3);
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 700px) {
  .page-home .home-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1080px) {
  .page-home .home-services__grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .page-home .home-services__item--sports {
    grid-column: span 7;
  }

  .page-home .home-services__item--play {
    grid-column: span 5;
  }

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

  .page-home .home-services__item--sports,
  .page-home .home-services__item--play {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-services__item--play .home-services__media {
    order: 2;
  }
}

/* ===== 最新动态 ===== */
.page-home .home-news {
  padding-top: clamp(72px, 9vw, 104px);
  padding-bottom: clamp(72px, 9vw, 104px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .home-news__grid {
  display: grid;
  gap: 36px;
}

.page-home .home-news__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-news__head .eyebrow {
  color: var(--home-gold);
  letter-spacing: 0.14em;
}

.page-home .home-news__list {
  display: grid;
  gap: 18px;
}

.page-home .home-news__item {
  padding: 24px 22px;
  border: 1px solid var(--home-line);
  border-radius: 16px;
  background: var(--home-panel);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-home .home-news__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.page-home .home-news__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .home-news__meta .meta-pill {
  border: 1px solid rgba(212, 175, 55, 0.36);
  background: rgba(10, 31, 68, 0.58);
  color: var(--home-gold-light);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
}

.page-home .home-news__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--home-white);
  margin: 0;
  line-height: 1.4;
}

.page-home .home-news__desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

.page-home .home-news__link {
  color: var(--home-gold);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.page-home .home-news__link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 1024px) {
  .page-home .home-news__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 60px;
    align-items: center;
  }
}

/* ===== 底部导航 ===== */
.page-home .home-bottom {
  padding-top: clamp(72px, 9vw, 104px);
  padding-bottom: clamp(56px, 8vw, 88px);
  border-top: 1px solid var(--home-line);
  background: linear-gradient(180deg, rgba(10, 31, 68, 0.82) 0%, rgba(15, 42, 29, 0.98) 100%);
}

.page-home .home-bottom__inner {
  display: grid;
  gap: 34px;
}

.page-home .home-bottom__legacy {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  padding: 26px 24px;
}

.page-home .home-bottom__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--home-gold);
  margin: 0 0 12px;
}

.page-home .home-bottom__legacy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.page-home .home-bottom__cols {
  display: grid;
  gap: 30px;
}

.page-home .home-bottom__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

.page-home .home-bottom__link {
  display: inline-block;
  color: var(--home-gold-light);
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.page-home .home-bottom__link:hover {
  border-color: rgba(212, 175, 55, 0.58);
  background: rgba(212, 175, 55, 0.08);
}

.page-home .home-bottom__contact p {
  margin: 7px 0;
  color: var(--home-slate);
  line-height: 1.7;
  font-size: 0.95rem;
}

.page-home .home-bottom__icp {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  margin: 0;
}

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

@media (min-width: 980px) {
  .page-home .home-bottom__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 44px 72px;
    align-items: start;
  }

  .page-home .home-bottom__icp {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 8px;
  }
}
