.page-home {
  --page-green: #00FF87;
  --page-blue: #00E5FF;
  --page-orange: #FF5E00;
  --page-bg-deep: #0D0F14;
  --page-bg-card: #14181F;
  --page-bg-soft: #1C222B;
  --page-text-main: #E8EAF0;
  --page-text-sub: #93A0B5;
  --page-border: #2E3845;
  --page-radius: 12px;
  background: var(--page-bg-deep);
  color: var(--page-text-main);
  font-family: 'Noto Sans SC', 'Microsoft YaHei', system-ui, sans-serif;
  overflow-x: hidden;
}

.page-home .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.page-home .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.page-home .section-tag__line {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--page-green);
  transform: skewX(-24deg);
}

.page-home .section-tag__text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--page-text-sub);
  text-transform: uppercase;
}

.page-home .section-tag--light .section-tag__line {
  background: var(--page-blue);
}

.page-home .section-tag--light .section-tag__text {
  color: var(--page-text-sub);
}

.page-home .hero {
  position: relative;
  min-height: 640px;
  padding: 72px 0 88px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.page-home .hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.page-home .hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, rgba(13,15,20,0.92) 28%, rgba(13,15,20,0.55) 70%, rgba(13,15,20,0.28) 100%);
}

.page-home .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.7) contrast(1.1);
}

.page-home .hero__shape {
  position: absolute;
  z-index: -2;
  clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
}

.page-home .hero__shape--green {
  width: 520px;
  height: 360px;
  top: -80px;
  right: 2%;
  background: linear-gradient(135deg, rgba(0,255,135,0.22), rgba(0,255,135,0.02));
}

.page-home .hero__shape--blue {
  width: 380px;
  height: 280px;
  bottom: -60px;
  left: 48%;
  background: linear-gradient(135deg, rgba(0,229,255,0.16), rgba(0,229,255,0.01));
  clip-path: polygon(8% 0, 100% 12%, 92% 100%, 0 88%);
}

.page-home .hero__line {
  position: absolute;
  top: 42%;
  left: 0;
  width: 100%;
  height: 240px;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.page-home .hero__content {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.page-home .hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--page-green);
  padding: 6px 14px;
  border: 1px solid rgba(0,255,135,0.35);
  border-radius: 2px;
  background: rgba(0,255,135,0.06);
  letter-spacing: 0.12em;
  width: fit-content;
}

.page-home .hero__title {
  margin: 0 0 16px;
  font-family: var(--font-headline);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--page-text-main);
  text-shadow: 4px 4px 0 rgba(0,255,135,0.2);
  transform: skewX(-4deg);
  transform-origin: left center;
}

.page-home .hero__lead {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--page-text-sub);
  max-width: 520px;
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  transition: all var(--transition-fast);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.page-home .btn--primary {
  background: var(--page-green);
  color: #0A3B24;
  border: 1px solid var(--page-green);
  box-shadow: 0 0 0 0 rgba(0,255,135,0.25);
}

.page-home .btn--primary:hover {
  box-shadow: 0 0 0 4px rgba(0,255,135,0.25);
  transform: translateY(-2px);
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--page-blue);
  border: 1px solid var(--page-blue);
}

.page-home .btn--ghost:hover {
  background: rgba(0,229,255,0.08);
  transform: translateY(-2px);
}

.page-home .hero__card {
  position: relative;
  background: rgba(20,24,31,0.88);
  border: 1px solid var(--page-border);
  border-radius: var(--page-radius);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
}

.page-home .hero__card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 28%;
  height: 3px;
  background: var(--page-green);
}

.page-home .hero__card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.page-home .hero__card-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--page-text-main);
}

.page-home .hero__card-date {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--page-border);
}

.page-home .hero__card-day {
  font-size: 18px;
  font-weight: 700;
  color: var(--page-text-sub);
}

.page-home .hero__card-num {
  font-family: var(--font-headline);
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  color: var(--page-text-main);
  font-variant-numeric: tabular-nums;
}

.page-home .hero__matches {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .hero__match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--page-border);
}

.page-home .hero__match:last-child {
  border-bottom: none;
}

.page-home .hero__match-team {
  font-size: 14px;
  font-weight: 500;
  color: var(--page-text-main);
  flex: 1;
}

.page-home .hero__match-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--page-green);
  background: rgba(0,255,135,0.08);
  padding: 4px 10px;
  border-radius: 2px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.page-home .hero__card-link {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--page-blue);
  text-decoration: none;
  text-align: center;
  padding: 10px 0;
  border: 1px solid rgba(0,229,255,0.35);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.page-home .hero__card-link:hover {
  background: rgba(0,229,255,0.08);
}

.page-home .board {
  padding: 72px 0;
  position: relative;
}

.page-home .board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--page-border) 20%, var(--page-border) 80%, transparent);
}

.page-home .board__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: start;
}

.page-home .board__title {
  margin: 0 0 12px;
  font-family: var(--font-headline);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--page-text-main);
}

.page-home .board__desc {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--page-text-sub);
  max-width: 640px;
}

.page-home .schedule-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.page-home .schedule-toolbar__btn {
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--page-text-sub);
  background: var(--page-bg-card);
  border: 1px solid var(--page-border);
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.page-home .schedule-toolbar__btn:hover {
  border-color: var(--page-green);
  color: var(--page-green);
}

.page-home .schedule-toolbar__btn.is-active {
  background: rgba(0,255,135,0.1);
  color: var(--page-green);
  border-color: var(--page-green);
}

.page-home .schedule-toolbar__note {
  font-size: 12px;
  color: var(--page-text-sub);
  margin-left: 6px;
}

.page-home .table-shell {
  overflow-x: auto;
  border-radius: var(--page-radius);
  border: 1px solid var(--page-border);
  background: var(--page-bg-card);
}

.page-home .match-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 15px;
}

.page-home .match-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--page-text-sub);
  background: var(--page-bg-soft);
  border-bottom: 1px solid var(--page-border);
  letter-spacing: 0.04em;
}

.page-home .match-table td {
  padding: 16px;
  border-bottom: 1px solid var(--page-border);
  color: var(--page-text-main);
}

.page-home .match-table tr:last-child td {
  border-bottom: none;
}

.page-home .match-row {
  transition: background var(--transition-fast);
}

.page-home .match-row:hover {
  background: rgba(0,255,135,0.08);
}

.page-home .match-row__date {
  font-weight: 700;
  color: var(--page-text-sub);
  white-space: nowrap;
}

.page-home .match-row__team {
  font-weight: 600;
}

.page-home .match-row__score {
  font-family: var(--font-headline);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--page-text-main);
  letter-spacing: 0.04em;
}

.page-home .match-row__status {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--page-text-sub);
  background: var(--page-bg-soft);
  border-radius: 2px;
}

.page-home .match-row__status--live {
  color: var(--page-green);
  background: rgba(0,255,135,0.1);
}

.page-home .board__footnote {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--page-text-sub);
}

.page-home .board__footnote a {
  color: var(--page-green);
  text-decoration: none;
  font-weight: 600;
}

.page-home .board__footnote a:hover {
  text-decoration: underline;
}

.page-home .chart-card {
  border-radius: var(--page-radius);
  overflow: hidden;
  border: 1px solid var(--page-border);
  margin-bottom: 24px;
  position: relative;
}

.page-home .chart-card__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-home .chart-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(13,15,20,0.65));
  pointer-events: none;
}

.page-home .side-note {
  background: var(--page-bg-card);
  border: 1px solid var(--page-border);
  border-left: 3px solid var(--page-blue);
  border-radius: var(--page-radius);
  padding: 22px;
}

.page-home .side-note__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--page-text-main);
}

.page-home .side-note__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--page-text-sub);
}

.page-home .side-note__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--page-blue);
  text-decoration: none;
}

.page-home .side-note__link:hover {
  text-decoration: underline;
}

.page-home .tool {
  position: relative;
  padding: 76px 0;
  background: var(--page-bg-card);
  overflow: hidden;
}

.page-home .tool::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0,229,255,0.12), transparent 70%);
}

.page-home .tool__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-home .tool__title {
  margin: 0 0 14px;
  font-family: var(--font-headline);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--page-text-main);
}

.page-home .tool__desc {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--page-text-sub);
  max-width: 520px;
}

.page-home .tool__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.page-home .tool__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--page-border);
}

.page-home .tool__item-num {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 900;
  color: var(--page-green);
  opacity: 0.75;
  width: 40px;
  flex-shrink: 0;
}

.page-home .tool__item-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--page-text-main);
}

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

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

.page-home .tool__demo-card {
  background: var(--page-bg-deep);
  border: 1px solid var(--page-border);
  border-radius: var(--page-radius);
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  transform: rotate(1deg);
}

.page-home .tool__demo-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--page-border);
}

.page-home .tool__demo-team {
  font-size: 15px;
  font-weight: 700;
  color: var(--page-text-main);
}

.page-home .tool__demo-vs {
  font-size: 12px;
  color: var(--page-text-sub);
  padding: 4px 12px;
  border: 1px solid var(--page-border);
  border-radius: 20px;
}

.page-home .tool__demo-chart {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.page-home .tool__demo-bar {
  display: block;
  height: 12px;
  border-radius: 2px;
}

.page-home .tool__demo-bar--home {
  background: linear-gradient(90deg, var(--page-green), rgba(0,255,135,0.45));
}

.page-home .tool__demo-bar--away {
  background: linear-gradient(90deg, var(--page-blue), rgba(0,229,255,0.4));
}

.page-home .tool__demo-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--page-text-sub);
  font-variant-numeric: tabular-nums;
  padding-top: 14px;
  border-top: 1px solid var(--page-border);
}

.page-home .updates {
  padding: 72px 0;
  background: var(--page-bg-deep);
}

.page-home .updates__grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 56px;
  align-items: start;
}

.page-home .updates__title {
  margin: 0 0 12px;
  font-family: var(--font-headline);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.14;
  color: var(--page-text-main);
}

.page-home .updates__desc {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--page-text-sub);
  max-width: 620px;
}

.page-home .updates__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.page-home .update-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--page-border);
  transition: background var(--transition-fast);
}

.page-home .update-item:hover {
  background: rgba(0,229,255,0.04);
}

.page-home .update-item__mark {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--page-orange);
  border: 1px solid rgba(255,94,0,0.45);
  padding: 3px 10px;
  border-radius: 2px;
  height: fit-content;
  margin-top: 3px;
}

.page-home .update-item__title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--page-text-main);
}

.page-home .update-item__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--page-text-sub);
}

.page-home .updates__more {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--page-green);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,255,135,0.35);
  padding-bottom: 3px;
  transition: all var(--transition-fast);
}

.page-home .updates__more:hover {
  color: var(--page-text-main);
  border-color: var(--page-text-main);
}

.page-home .updates__media {
  position: sticky;
  top: 120px;
}

.page-home .updates__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--page-radius);
  border: 1px solid var(--page-border);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .updates__note {
  margin-top: 18px;
  background: var(--page-bg-card);
  border: 1px solid var(--page-border);
  border-right: 3px solid var(--page-green);
  border-radius: var(--page-radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-home .updates__note-num {
  font-family: var(--font-headline);
  font-size: 42px;
  font-weight: 900;
  color: var(--page-green);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.page-home .updates__note-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--page-text-sub);
}

.page-home .memory {
  position: relative;
  padding: 80px 0;
  background: var(--page-bg-card);
  overflow: hidden;
}

.page-home .memory::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0,255,135,0.1), transparent 70%);
}

.page-home .memory__layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.page-home .memory__title {
  margin: 0 0 16px;
  font-family: var(--font-headline);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--page-text-main);
}

.page-home .memory__desc {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--page-text-sub);
}

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

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

.page-home .memory__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--page-radius);
  border: 1px solid var(--page-border);
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.page-home .memory__compare {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(13,15,20,0.88);
  backdrop-filter: blur(4px);
  border: 1px solid var(--page-border);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  gap: 24px;
}

.page-home .memory__compare-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .memory__compare-team {
  font-size: 13px;
  font-weight: 600;
  color: var(--page-text-sub);
}

.page-home .memory__compare-val {
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 900;
  color: var(--page-green);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  .page-home .hero {
    padding: 56px 0 64px;
    min-height: auto;
  }

  .page-home .hero__content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-home .hero__title {
    font-size: clamp(48px, 10vw, 72px);
  }

  .page-home .hero__card {
    max-width: 560px;
  }

  .page-home .board__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-home .tool__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-home .updates__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-home .updates__media {
    position: static;
  }

  .page-home .memory__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .page-home .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-home .hero__title {
    font-size: 42px;
    text-shadow: 3px 3px 0 rgba(0,255,135,0.2);
  }

  .page-home .hero__lead {
    font-size: 15px;
  }

  .page-home .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .page-home .hero__card-num {
    font-size: 52px;
  }

  .page-home .hero__match-team {
    font-size: 13px;
  }

  .page-home .hero__match-time {
    font-size: 12px;
    padding: 3px 8px;
  }

  .page-home .board__title {
    font-size: 28px;
  }

  .page-home .schedule-toolbar {
    gap: 8px;
  }

  .page-home .schedule-toolbar__btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .page-home .match-table th,
  .page-home .match-table td {
    padding: 12px 12px;
    font-size: 13px;
  }

  .page-home .tool__title {
    font-size: 26px;
  }

  .page-home .tool__demo-card {
    padding: 18px;
  }

  .page-home .tool__demo-meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .page-home .updates__title {
    font-size: 26px;
  }

  .page-home .update-item {
    flex-direction: column;
    gap: 8px;
  }

  .page-home .update-item__mark {
    width: fit-content;
  }

  .page-home .memory__title {
    font-size: 26px;
  }

  .page-home .memory__compare {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 0;
    border-radius: 0 0 var(--page-radius) var(--page-radius);
    border-top: none;
    gap: 12px;
    padding: 14px 16px;
  }

  .page-home .memory__compare-val {
    font-size: 20px;
  }
}
