.page-home {
  --home-gold: #D4AF37;
  --home-orange: #FF6B35;
  --home-green: #39FF14;
  --home-deep: #0A1E3F;
  --home-deep-2: #1E3A5F;
  --home-deep-3: #071731;
  background:
    radial-gradient(1200px 520px at 96% -8%, rgba(255, 107, 53, 0.16), transparent 60%),
    linear-gradient(128deg, var(--c-deep) 0%, var(--c-deep-3) 62%, #050D1E 100%);
  color: var(--c-white);
  font-family: var(--font-body);
  overflow-x: clip;
}

.page-home img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page-home a {
  color: inherit;
  text-decoration: none;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition:
    background var(--t-fast) var(--t-ease),
    border-color var(--t-fast) var(--t-ease),
    color var(--t-fast) var(--t-ease),
    transform var(--t-fast) var(--t-ease);
}

.page-home .btn--primary {
  background: var(--home-orange);
  border: 1px solid var(--home-orange);
  color: var(--c-white);
}

.page-home .btn--primary:hover {
  background: #ff8555;
  border-color: #ff8555;
  transform: translateY(-2px);
}

.page-home .btn--outline {
  border: 1px solid var(--home-gold);
  color: var(--home-gold);
  background: rgba(212, 175, 55, 0.06);
}

.page-home .btn--outline:hover {
  background: var(--home-gold);
  color: var(--home-deep);
  transform: translateY(-2px);
}

@keyframes page-home-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(57, 255, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
  }
}

.page-home .home-hero {
  display: grid;
  grid-template-columns: 1fr;
  margin-inline: auto;
  max-width: 1440px;
  min-height: 640px;
  position: relative;
}

.page-home .home-hero__rail {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 70%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: calc(var(--header-offset) + 10px) 24px 36px;
  position: relative;
  z-index: 2;
}

.page-home .home-hero__eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-gold);
  font-weight: 700;
  margin: 0 0 16px;
}

.page-home .home-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}

.page-home .home-hero__pipe {
  color: var(--home-orange);
  margin-inline: 0.12em;
}

.page-home .home-hero__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.82;
  max-width: 36em;
  margin: 0 0 28px;
}

.page-home .home-hero__chapters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 20px;
}

.page-home .home-chapter {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 8px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(10, 30, 63, 0.4);
  transition:
    border-color var(--t-fast) var(--t-ease),
    background var(--t-fast) var(--t-ease),
    transform var(--t-std) var(--t-ease);
}

.page-home .home-chapter:hover {
  border-color: var(--home-orange);
  background: rgba(255, 107, 53, 0.12);
  transform: translateY(-3px);
}

.page-home .home-chapter__num {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--home-green);
}

.page-home .home-chapter__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-white);
}

.page-home .home-chapter__arrow {
  margin-top: 4px;
  color: var(--home-gold);
  font-size: 0.9rem;
  opacity: 0.7;
}

.page-home .home-hero__stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--home-deep-2);
}

.page-home .home-hero__photo {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  isolation: isolate;
}

.page-home .home-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 30, 63, 0.82) 0%, rgba(7, 23, 49, 0.34) 52%, rgba(5, 13, 30, 0.56) 100%),
    linear-gradient(180deg, rgba(7, 23, 49, 0.18) 0%, rgba(5, 13, 30, 0.2) 100%);
  z-index: 1;
}

.page-home .home-hero__badge {
  position: absolute;
  left: 20px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 30, 63, 0.9);
  border: 1px solid var(--home-gold);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--c-white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.page-home .home-hero__badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-green);
  animation: page-home-pulse 1.8s infinite;
}

.page-home .page-home__section {
  max-width: 1280px;
  margin-inline: auto;
  padding: 72px 24px;
  position: relative;
}

.page-home .home-section__head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.page-home .home-section__num {
  font-family: var(--font-headline);
  font-size: 3.4rem;
  line-height: 0.78;
  color: var(--home-green);
  opacity: 0.28;
  margin-right: 2px;
  min-width: 0.8em;
}

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

.page-home .home-section__label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-gold);
  font-weight: 700;
  margin: 0 0 4px;
}

.page-home .home-section__titles h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.page-home .home-section__slogan,
.page-home .home-section__tip {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--home-orange);
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  white-space: nowrap;
}

.page-home .home-section__head .btn {
  margin-left: auto;
  flex-shrink: 0;
}

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

.page-home .home-live__games {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .score-card {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.8), rgba(10, 30, 63, 0.92));
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(4, 12, 28, 0.28);
  transition:
    transform var(--t-std) var(--t-ease),
    border-color var(--t-std) var(--t-ease),
    box-shadow var(--t-std) var(--t-ease);
}

.page-home .score-card:hover {
  transform: translateY(-6px);
  border-color: var(--home-orange);
  box-shadow: var(--shadow-card);
}

.page-home .score-card:hover::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
  border-top: 34px solid var(--home-orange);
  border-right: 34px solid transparent;
  border-top-left-radius: var(--radius);
  z-index: 1;
}

.page-home .score-card--lead {
  border-left: 4px solid var(--home-green);
}

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

.page-home .score-card__comp {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-gold);
}

.page-home .score-card__live {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(57, 255, 20, 0.12);
  color: var(--home-green);
  border: 1px solid rgba(57, 255, 20, 0.45);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

.page-home .score-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.page-home .score-card__team {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .score-card__rank {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

.page-home .score-card__name {
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
}

.page-home .score-card__center {
  text-align: center;
}

.page-home .score-card__score {
  font-family: var(--font-headline);
  font-size: 2.6rem;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--home-green);
}

.page-home .score-card__time {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
}

.page-home .score-card__possession {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.page-home .possession-bar {
  display: flex;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-bottom: 8px;
}

.page-home .possession-bar__home {
  height: 100%;
  background: linear-gradient(90deg, var(--home-orange), var(--home-green));
  border-radius: inherit;
}

.page-home .possession-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.64);
}

.page-home .score-card--mini {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.page-home .score-card__tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--home-orange);
  border: 1px solid rgba(255, 107, 53, 0.5);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  background: rgba(255, 107, 53, 0.1);
  white-space: nowrap;
}

.page-home .score-card__pair {
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .score-card__min {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--home-green);
  background: rgba(57, 255, 20, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
}

.page-home .home-live__figure {
  margin: 0;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--home-deep-2);
}

.page-home .home-live__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.page-home .home-live__figure figcaption {
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(7, 23, 49, 0.72);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  letter-spacing: 0.02em;
}

.page-home .home-upgrade {
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.015) 0 2px, transparent 2px 8px),
    rgba(255, 255, 255, 0.02);
}

.page-home .home-upgrade__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .home-upgrade__intro {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  padding: 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 107, 53, 0.18), transparent 46%),
    linear-gradient(145deg, rgba(30, 58, 95, 0.9), rgba(10, 30, 63, 0.96));
  overflow: hidden;
}

.page-home .home-upgrade__intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 44em;
  margin: 0 0 0;
}

.page-home .home-upgrade__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
  border-top: 1px solid rgba(212, 175, 55, 0.24);
  padding-top: 24px;
}

.page-home .home-upgrade__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-upgrade__stat-num {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--home-green);
}

.page-home .home-upgrade__stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.58);
}

.page-home .home-upgrade__changes {
  position: relative;
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 107, 53, 0.06);
}

.page-home .home-upgrade__changes h3 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--home-orange);
  margin: 0 0 24px;
}

.page-home .home-upgrade__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .home-upgrade__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.page-home .home-upgrade__list-num {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  color: var(--home-gold);
}

.page-home .home-weekend__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .home-weekend__figure {
  margin: 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 2 / 1;
}

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

.page-home .home-weekend__plan {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(10, 30, 63, 0.74);
}

.page-home .home-weekend__plan > p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
  margin: 0 0 24px;
}

.page-home .home-weekend__matches {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .home-weekend__matches li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--home-orange);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.page-home .home-weekend__day {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--home-gold);
}

.page-home .home-weekend__match {
  font-weight: 700;
  font-size: 1rem;
}

.page-home .home-weekend__time {
  font-family: var(--font-num);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--home-green);
}

.page-home .home-tools__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .home-filter {
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  background: rgba(10, 30, 63, 0.66);
  padding: 20px;
}

.page-home .home-filter .tag {
  display: inline-block;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.42);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color var(--t-fast) var(--t-ease),
    color var(--t-fast) var(--t-ease),
    background var(--t-fast) var(--t-ease),
    box-shadow var(--t-fast) var(--t-ease);
}

.page-home .home-filter .tag--active {
  border-color: rgba(255, 107, 53, 0.85);
  background: rgba(255, 107, 53, 0.14);
  color: var(--home-orange);
}

.page-home .home-filter .tag:hover {
  border-color: var(--home-orange);
  color: var(--home-green);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.page-home .home-filter .tag:focus-visible {
  outline: 2px solid var(--home-green);
  outline-offset: 2px;
}

.page-home .home-filter__panels {
  margin-top: 18px;
}

.page-home .home-filter .home-filter__panel {
  display: none;
}

.page-home .home-filter .home-filter__panel[data-panel="all"] {
  display: block;
}

.page-home .home-filter:hover .home-filter__panel,
.page-home .home-filter:focus-within .home-filter__panel {
  display: none;
}

.page-home .home-filter .tag[data-panel="all"]:hover ~ .home-filter__panels .home-filter__panel[data-panel="all"],
.page-home .home-filter .tag[data-panel="all"]:focus ~ .home-filter__panels .home-filter__panel[data-panel="all"],
.page-home .home-filter .tag[data-panel="epl"]:hover ~ .home-filter__panels .home-filter__panel[data-panel="epl"],
.page-home .home-filter .tag[data-panel="epl"]:focus ~ .home-filter__panels .home-filter__panel[data-panel="epl"],
.page-home .home-filter .tag[data-panel="laliga"]:hover ~ .home-filter__panels .home-filter__panel[data-panel="laliga"],
.page-home .home-filter .tag[data-panel="laliga"]:focus ~ .home-filter__panels .home-filter__panel[data-panel="laliga"],
.page-home .home-filter .tag[data-panel="seriea"]:hover ~ .home-filter__panels .home-filter__panel[data-panel="seriea"],
.page-home .home-filter .tag[data-panel="seriea"]:focus ~ .home-filter__panels .home-filter__panel[data-panel="seriea"],
.page-home .home-filter .tag[data-panel="bundesliga"]:hover ~ .home-filter__panels .home-filter__panel[data-panel="bundesliga"],
.page-home .home-filter .tag[data-panel="bundesliga"]:focus ~ .home-filter__panels .home-filter__panel[data-panel="bundesliga"],
.page-home .home-filter .tag[data-panel="ligue1"]:hover ~ .home-filter__panels .home-filter__panel[data-panel="ligue1"],
.page-home .home-filter .tag[data-panel="ligue1"]:focus ~ .home-filter__panels .home-filter__panel[data-panel="ligue1"],
.page-home .home-filter .tag[data-panel="ucl"]:hover ~ .home-filter__panels .home-filter__panel[data-panel="ucl"],
.page-home .home-filter .tag[data-panel="ucl"]:focus ~ .home-filter__panels .home-filter__panel[data-panel="ucl"] {
  display: block;
}

.page-home .match-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .match-list__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color var(--t-fast) var(--t-ease);
}

.page-home .match-list__item:hover {
  border-color: rgba(255, 107, 53, 0.5);
}

.page-home .match-list__league {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--home-orange);
  background: rgba(255, 107, 53, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.page-home .match-list__game {
  font-weight: 700;
  line-height: 1.4;
}

.page-home .match-list__score {
  font-family: var(--font-num);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--home-green);
}

.page-home .home-rank {
  display: grid;
  gap: 20px;
  align-content: start;
}

.page-home .home-rank__panel {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  padding: 26px;
  background: linear-gradient(160deg, rgba(10, 30, 63, 0.95), rgba(30, 58, 95, 0.72));
}

.page-home .home-rank__label {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--home-gold);
  margin: 0 0 14px;
}

.page-home .home-rank__search {
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition:
    border-color var(--t-fast) var(--t-ease),
    box-shadow var(--t-fast) var(--t-ease);
}

.page-home .home-rank__result {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  overflow: hidden;
  margin-top: 0;
  transition:
    max-height var(--t-std) var(--t-ease),
    opacity var(--t-std) var(--t-ease),
    transform var(--t-std) var(--t-ease),
    visibility var(--t-std) var(--t-ease),
    margin-top var(--t-std) var(--t-ease);
}

.page-home .home-rank__panel:hover .home-rank__result,
.page-home .home-rank__panel:focus-within .home-rank__result,
.page-home .home-rank__panel:focus .home-rank__result {
  max-height: 360px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-top: 16px;
}

.page-home .home-rank__result {
  border: 1px solid rgba(57, 255, 20, 0.4);
  background: rgba(57, 255, 20, 0.08);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: grid;
  gap: 6px;
}

.page-home .home-rank__result-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--home-green);
}

.page-home .home-rank__team {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--c-white);
}

.page-home .home-rank__position {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--home-orange);
}

.page-home .home-rank__record {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.68);
}

.page-home .home-rank__note {
  margin: 14px 0 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.page-home .home-rank__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius);
}

@media (max-width: 899px) {
  .page-home .home-rank__result {
    max-height: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 16px;
  }

  .page-home .home-section__slogan,
  .page-home .home-section__tip {
    white-space: normal;
  }

  .page-home .home-section__head .btn {
    display: none;
  }
}

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

  .page-home .home-upgrade__numbers {
    gap: 30px;
  }
}

@media (min-width: 900px) {
  .page-home .home-hero {
    grid-template-columns: 300px 1fr;
  }

  .page-home .home-hero__rail {
    padding: 56px 32px 42px;
    border-right: 1px solid rgba(212, 175, 55, 0.28);
    border-bottom: none;
  }

  .page-home .home-hero__chapters {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-home .home-chapter {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
  }

  .page-home .home-chapter__num {
    font-size: 1.7rem;
  }

  .page-home .home-chapter__arrow {
    margin-top: 0;
    margin-left: auto;
  }

  .page-home .home-hero__stage {
    min-height: 680px;
  }

  .page-home .home-hero__photo {
    position: absolute;
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
  }

  .page-home .page-home__section {
    padding: 88px 48px;
  }

  .page-home .home-live__grid {
    grid-template-columns: 1.4fr 0.6fr;
    gap: 32px;
  }

  .page-home .home-upgrade__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .page-home .home-weekend__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
  }

  .page-home .home-tools__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
  }

  .page-home .home-upgrade__intro,
  .page-home .home-upgrade__changes {
    padding: 36px;
  }
}

@media (min-width: 1200px) {
  .page-home .home-hero__rail {
    padding: 64px 40px 48px;
  }

  .page-home .home-hero__lead {
    font-size: 1.06rem;
  }

  .page-home .home-section__head {
    margin-bottom: 48px;
  }

  .page-home .match-list__item {
    padding: 14px 18px;
  }
}
