.page-home {
  --lead-dim: #8a8a94;
  --glow-gold: rgba(255, 140, 0, 0.35);
  --scrim: rgba(10, 10, 15, 0.42);
  --scrim-strong: rgba(10, 10, 15, 0.72);
  --card-gradient: linear-gradient(135deg, rgba(26, 26, 36, 0.92), rgba(10, 10, 15, 0.85));
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .breadcrumb {
  border-bottom: 1px solid var(--line);
  padding: 14px 0 12px;
  font-size: 0.85rem;
}

.page-home .breadcrumb a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s;
}

.page-home .breadcrumb a:hover {
  color: var(--gold);
}

.page-home .breadcrumb__sep {
  color: var(--text-muted);
}

.page-home .home-hero {
  position: relative;
  min-height: clamp(680px, 92vh, 900px);
  display: flex;
  align-items: center;
  padding: 88px 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 82% 18%, rgba(255, 140, 0, 0.14) 0%, transparent 56%),
    radial-gradient(ellipse at 8% 86%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
    var(--bg-deep);
}

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

.page-home .home-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  filter: saturate(0.6) contrast(1.08);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 132px;
  left: -70px;
  width: 430px;
  height: 12px;
  background: var(--gold);
  transform: rotate(-7deg);
  filter: drop-shadow(0 0 14px var(--glow-gold));
  z-index: 1;
  opacity: 0.9;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  background: rgba(0, 191, 255, 0.08);
  border: 1px solid rgba(0, 191, 255, 0.32);
  transform: rotate(17deg);
  z-index: 1;
}

.page-home .home-hero__slant {
  position: absolute;
  top: 0;
  right: 0;
  width: 26vw;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 140, 0, 0.06), transparent 62%);
  transform: skewX(-8deg);
  transform-origin: top right;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-hero__backdrop {
  position: absolute;
  right: -6%;
  bottom: 10%;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 140, 0, 0.22);
  white-space: nowrap;
  transform: rotate(-4deg);
  pointer-events: none;
  letter-spacing: -0.02em;
  user-select: none;
}

.page-home .home-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  width: 100%;
}

.page-home .home-hero__left {
  max-width: 680px;
}

.page-home .home-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 18px 0 0;
  display: block;
}

.page-home .home-hero__brand {
  display: block;
  font-size: clamp(3.6rem, 12vw, 8rem);
  color: var(--text-main);
  text-shadow: 0 0 46px var(--glow-gold);
  position: relative;
}

.page-home .home-hero__sub {
  display: inline-block;
  margin-top: 8px;
  padding-left: 12px;
  border-left: 5px solid var(--gold);
  font-size: clamp(1.08rem, 2.6vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  transform: skewX(-6deg);
}

.page-home .home-hero__lead {
  margin-top: 22px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 58ch;
}

.page-home .home-hero__lead--dim {
  color: var(--lead-dim);
  font-size: 0.938rem;
  margin-top: 10px;
}

.page-home .home-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-home .home-hero__tags .tag {
  border-color: rgba(255, 140, 0, 0.3);
  background: rgba(255, 140, 0, 0.06);
  color: var(--gold-light);
}

.page-home .home-hero__side {
  border: 1px solid var(--line);
  background: rgba(26, 26, 36, 0.78);
  backdrop-filter: blur(12px);
  padding: 26px 24px 22px;
  max-width: 440px;
}

.page-home .home-hero__toc {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.938rem;
}

.page-home .home-hero__toc a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  color: var(--text-main);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s, padding-left 0.3s var(--ease);
}

.page-home .home-hero__toc li:last-child a {
  border-bottom: 0;
}

.page-home .home-hero__toc a:hover,
.page-home .home-hero__toc a.is-active {
  color: var(--gold);
  background: rgba(255, 140, 0, 0.07);
  padding-left: 20px;
}

.page-home .home-hero__toc-num {
  color: var(--gold);
  font-size: 0.75rem;
  border: 1px solid rgba(255, 140, 0, 0.35);
  border-radius: 4px;
  padding: 2px 7px;
  line-height: 1.4;
}

.page-home .home-hero__legend {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.page-home .home-hero__tip {
  margin-top: 14px;
  margin-bottom: 0;
}

.page-home .home-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 11px 0;
}

.page-home .home-ticker__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: page-home-ticker 30s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.page-home .home-ticker__track span::before {
  content: "◆";
  color: var(--gold);
  margin-right: 10px;
}

@keyframes page-home-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

.page-home .home-schedule::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 140, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 140, 0, 0.045) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  pointer-events: none;
}

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

.page-home .home-schedule__head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .home-schedule__head .meta-text {
  margin: 0;
}

.page-home .home-schedule__list {
  display: grid;
  gap: 12px;
}

.page-home .schedule-card {
  background: var(--card-gradient);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.page-home .schedule-card:hover {
  border-color: rgba(255, 140, 0, 0.32);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
}

.page-home .schedule-card[open] {
  border-color: rgba(255, 140, 0, 0.45);
}

.page-home .schedule-card__head {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 16px 20px;
  cursor: pointer;
}

.page-home .schedule-card__head::-webkit-details-marker {
  display: none;
}

.page-home .schedule-card__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  border: 1px solid rgba(255, 140, 0, 0.32);
  padding: 3px 9px;
  border-radius: 4px;
  line-height: 1.4;
}

.page-home .schedule-card__league {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.page-home .schedule-card__teams {
  flex: 1 1 100%;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-home .schedule-card__vs {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 5px;
  font-weight: 500;
}

.page-home .schedule-card__score {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.page-home .schedule-card--live .schedule-card__score {
  color: var(--success);
  animation: page-home-live-pulse 2s ease-in-out infinite;
}

@keyframes page-home-live-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

.page-home .schedule-card__state {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid var(--line);
  color: var(--text-muted);
  white-space: nowrap;
}

.page-home .schedule-card--done .schedule-card__state {
  color: var(--success);
  border-color: rgba(0, 229, 160, 0.35);
}

.page-home .schedule-card--live .schedule-card__state {
  color: var(--blue);
  border-color: rgba(0, 191, 255, 0.4);
}

.page-home .schedule-card__detail {
  border-top: 1px solid var(--line);
  padding: 16px 20px 18px;
  background: rgba(0, 0, 0, 0.18);
}

.page-home .schedule-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.page-home .schedule-card__stat {
  border-left: 2px solid rgba(255, 140, 0, 0.4);
  padding-left: 12px;
}

.page-home .schedule-card__stat .stat__label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.page-home .schedule-card__stat .stat__value {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
}

.page-home .schedule-card__detail .meta-text {
  margin: 0;
  font-size: 0.8rem;
}

.page-home .home-collect {
  padding: 72px 0;
  background: linear-gradient(180deg, transparent, rgba(255, 140, 0, 0.045), transparent);
  border-top: 1px solid var(--line);
}

.page-home .home-collect__head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .home-collect__head .meta-text {
  margin: 0;
}

.page-home .home-collect__grid {
  display: grid;
  gap: 24px;
}

.page-home .home-collect__media {
  text-align: center;
}

.page-home .home-collect__media img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 140, 0, 0.25);
  box-shadow: 0 0 54px rgba(255, 140, 0, 0.12);
  display: block;
  margin: 0 auto;
}

.page-home .home-collect__media-caption {
  margin: 10px 0 0;
}

.page-home .home-collect__list {
  border: 1px solid var(--line);
  padding: 6px 20px;
  background: rgba(26, 26, 36, 0.6);
}

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

.page-home .collect-item:last-child {
  border-bottom: 0;
}

.page-home .collect-item__star {
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  text-shadow: 0 0 12px var(--glow-gold);
}

.page-home .collect-item__info {
  flex: 1;
  min-width: 0;
}

.page-home .collect-item__info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.page-home .collect-item__info .meta-text {
  font-size: 0.8rem;
}

.page-home .collect-item__result {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--success);
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.25);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.page-home .home-collect__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.page-home .home-collect__stat {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 8px;
  background: var(--card-gradient);
}

.page-home .home-collect__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.page-home .home-collect__stat-label {
  display: block;
  font-size: 0.78rem;
  margin-top: 8px;
}

.page-home .home-collect__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.page-home .home-report {
  padding: 72px 0;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(0, 191, 255, 0.05), transparent 42%, rgba(255, 140, 0, 0.055));
}

.page-home .home-report__head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .home-report__head .meta-text {
  margin: 0;
}

.page-home .home-report__layout {
  display: grid;
  gap: 24px;
}

.page-home .home-report__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.page-home .home-report__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: contrast(1.05) saturate(0.95);
}

.page-home .home-report__media figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  background: var(--scrim-strong);
  color: var(--text-main);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  backdrop-filter: blur(6px);
}

.page-home .home-report__board {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 140, 0, 0.3) var(--line);
}

.page-home .report-card {
  flex: 0 0 264px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--card-gradient);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.page-home .report-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 0, 0.42);
}

.page-home .report-card--live {
  border-color: rgba(0, 191, 255, 0.38);
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.08), rgba(10, 10, 15, 0.88));
}

.page-home .report-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px;
}

.page-home .report-card__league {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.page-home .report-card__status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--success);
  border: 1px solid rgba(0, 229, 160, 0.3);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.page-home .report-card--live .report-card__status {
  color: var(--blue);
  border-color: rgba(0, 191, 255, 0.4);
}

.page-home .report-card__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: 1px;
  animation: page-home-live-pulse 1.6s ease-in-out infinite;
}

.page-home .report-card__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-home .report-card__team {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  flex: 1;
}

.page-home .report-card__team:last-of-type {
  text-align: right;
}

.page-home .report-card__score {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.14), transparent);
  border: 1px solid rgba(255, 140, 0, 0.35);
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.page-home .report-card--live .report-card__score {
  color: var(--success);
  border-color: rgba(0, 229, 160, 0.35);
}

.page-home .report-card__note {
  margin: 12px 0 0;
  font-size: 0.78rem;
}

.page-home .home-report__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.page-home .home-report__foot .meta-text {
  margin: 0;
}

.page-home .home-tools {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.page-home .home-tools__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .home-tools__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.13;
  filter: grayscale(0.4) contrast(1.1);
}

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

.page-home .home-tools__head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .home-tools__head .meta-text {
  margin: 0;
}

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

.page-home .tool-card {
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(26, 26, 36, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
}

.page-home .tool-card__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--blue);
  border: 1px solid rgba(0, 191, 255, 0.38);
  border-radius: 4px;
  padding: 3px 9px;
  display: inline-block;
  margin-bottom: 14px;
  width: fit-content;
}

.page-home .tool-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}

.page-home .tool-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 16px;
}

.page-home .tool-card__link {
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s var(--ease);
  margin-top: auto;
}

.page-home .tool-card__link:hover {
  color: var(--gold);
  padding-left: 6px;
}

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

@media (min-width: 720px) {
  .page-home .home-schedule__head,
  .page-home .home-collect__head,
  .page-home .home-report__head,
  .page-home .home-tools__head {
    grid-template-columns: 1.3fr 1fr;
    align-items: end;
  }

  .page-home .schedule-card__teams {
    flex: 1 1 auto;
    font-size: 1.3rem;
  }

  .page-home .schedule-card__score {
    font-size: 1.6rem;
  }

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

  .page-home .home-report__board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    padding: 4px;
  }

  .page-home .report-card {
    flex: 1 1 auto;
    min-width: 0;
  }

  .page-home .home-tools__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 400px);
    align-items: center;
    gap: 56px;
  }

  .page-home .home-hero__backdrop {
    right: 0;
    bottom: 16%;
    font-size: clamp(5rem, 9vw, 8.6rem);
  }

  .page-home .home-report__layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}
