/* ===== 首页专属样式 ===== */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 108px;
  color: var(--c-white);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 107, 107, 0.32), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(57, 255, 20, 0.14), transparent 20%),
    linear-gradient(130deg, var(--c-deep), var(--c-blue), #00B4D8, var(--c-blue), var(--c-deep));
  background-size: auto, auto, 300% 300%;
  animation: homeHeroGradient 18s ease infinite;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62px;
  background: var(--c-aqua);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
  pointer-events: none;
}
.page-home .home-hero__deco {
  position: absolute;
  right: -140px;
  top: 24px;
  width: 380px;
  height: 380px;
  border: 44px solid rgba(57, 255, 20, 0.14);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
}
.page-home .home-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
}
.page-home .home-hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
}
.page-home .home-hero__desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 56ch;
  margin: 0 0 32px;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.page-home .home-hero__btn-primary {
  background: var(--c-coral);
  border-color: var(--c-coral);
  color: var(--c-white);
}
.page-home .home-hero__btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--c-white);
}
.page-home .home-hero__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin: 38px 0 0;
  padding: 0;
}
.page-home .home-hero__quick-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}
.page-home .home-hero__quick-item dt {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.page-home .home-hero__quick-item dd {
  font-family: var(--font-mono);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--c-lime);
  margin: 0;
  line-height: 1;
}
.page-home .home-hero__visual {
  position: relative;
}
.page-home .home-hero__img-frame {
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  border-radius: 0;
  box-shadow: var(--shadow-2);
}
.page-home .home-hero__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .home-hero__score {
  position: absolute;
  right: 12px;
  bottom: -18px;
  background: var(--c-coral);
  color: var(--c-white);
  padding: 16px 20px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  box-shadow: var(--shadow-2);
  z-index: 3;
}
.page-home .home-hero__score-num {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.page-home .home-hero__score-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 6px;
  font-weight: 600;
}
.page-home .home-features {
  padding: 84px 0 92px;
}
.page-home .home-features__grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.page-home .feature-card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.page-home .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}
.page-home .feature-card__num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-blue);
  display: block;
  line-height: 1;
  margin-bottom: 18px;
}
.page-home .feature-card__title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  margin: 0 0 10px;
}
.page-home .feature-card__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4a5568;
  margin: 0 0 18px;
}
.page-home .feature-card .card__link {
  margin-top: auto;
}
.page-home .home-events {
  padding: 84px 0 92px;
  background: var(--c-paper);
}
.page-home .home-events__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 40px;
}
.page-home .home-events__eyebrow {
  color: var(--c-coral);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 8px;
}
.page-home .home-events__title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 0 0 8px;
}
.page-home .home-events__desc {
  color: #4a5568;
  margin: 0;
  max-width: 52ch;
  line-height: 1.6;
}
.page-home .home-events__grid {
  display: grid;
  gap: 24px;
}
.page-home .event-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.page-home .event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}
.page-home .event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .event-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.page-home .event-card__league {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.page-home .event-card__name {
  font-family: var(--font-title);
  font-size: 1.35rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-home .event-card__score {
  font-family: var(--font-mono);
  color: var(--c-coral);
  font-size: 1.5em;
  font-weight: 800;
}
.page-home .event-card__meta {
  color: #718096;
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-home .event-card__btn {
  align-self: flex-start;
  margin-top: auto;
}
.page-home .home-data {
  padding: 84px 0 92px;
  background: var(--c-white);
}
.page-home .home-data__panel {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 36px 28px;
}
.page-home .home-data__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.page-home .home-data__chart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.page-home .home-data__link {
  margin: 24px 0 0;
  text-align: center;
}
.page-home .home-data__link a {
  color: var(--c-blue);
  font-weight: 600;
  text-underline-offset: 4px;
}
.page-home .section-head {
  margin-bottom: 40px;
}
.page-home .home-mobile {
  padding: 84px 0 92px;
  background: var(--c-aqua);
}
.page-home .home-mobile__inner {
  display: grid;
  gap: 36px;
  align-items: center;
}
.page-home .home-mobile__eyebrow {
  color: var(--c-coral);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 10px;
}
.page-home .home-mobile__title {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0 0 16px;
  line-height: 1.15;
}
.page-home .home-mobile__desc {
  color: #334155;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 50ch;
}
.page-home .home-mobile__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.page-home .home-mobile__list li {
  position: relative;
  padding-left: 26px;
  color: #334155;
  line-height: 1.6;
}
.page-home .home-mobile__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--c-lime);
  border-radius: 2px;
  transform: rotate(45deg);
}
.page-home .home-mobile__visual {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}
.page-home .home-mobile__img-frame {
  aspect-ratio: 3 / 4;
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
  box-shadow: var(--shadow-2);
}
.page-home .home-mobile__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .home-mobile__badge {
  position: absolute;
  top: 22px;
  right: 6px;
  background: var(--c-lime);
  color: var(--c-deep);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 8px 12px;
  letter-spacing: 0.08em;
  animation: homeBadgePulse 2s ease infinite;
  box-shadow: var(--shadow-1);
}
.page-home .home-trust {
  padding: 84px 0 92px;
  background: var(--c-deep);
  color: var(--c-white);
}
.page-home .home-trust__inner {
  display: grid;
  gap: 32px;
  align-items: center;
}
.page-home .home-trust__eyebrow {
  color: var(--c-coral);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 10px;
}
.page-home .home-trust__title {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin: 0 0 16px;
  line-height: 1.15;
}
.page-home .home-trust__desc {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 46ch;
}
.page-home .home-trust__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-trust__btn-primary {
  background: var(--c-lime);
  border-color: var(--c-lime);
  color: var(--c-deep);
  font-weight: 700;
}
.page-home .home-trust__btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--c-white);
}
.page-home .home-trust__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.page-home .home-trust__item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.page-home .home-trust__item:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(57, 255, 20, 0.45);
}
.page-home .home-trust__item strong {
  font-size: 1.12rem;
  font-family: var(--font-title);
}
.page-home .home-trust__item span:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}
.page-home .home-trust__icon {
  width: 26px;
  height: 4px;
  background: var(--c-lime);
  display: block;
  margin-bottom: 4px;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .page-home .home-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }
  .page-home .home-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .page-home .home-events__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .page-home .event-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
  }
  .page-home .event-card--featured .event-card__body {
    padding: 28px 30px;
  }
  .page-home .home-data__panel {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 48px 52px;
  }
  .page-home .home-mobile__inner {
    grid-template-columns: 1fr 0.85fr;
    gap: 56px;
  }
  .page-home .home-trust__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
}

@media (min-width: 1024px) {
  .page-home .event-card--featured .event-card__body {
    padding: 36px 40px;
  }
  .page-home .event-card--featured .event-card__name {
    font-size: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero,
  .page-home .home-mobile__badge {
    animation: none;
  }
}

@keyframes homeHeroGradient {
  0%, 100% { background-position: 0 0, 0 0, 0% 50%; }
  50% { background-position: 0 0, 0 0, 100% 50%; }
}

@keyframes homeBadgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(1.06); }
}
