.page-home {
  --home-orange-deep: #ff8a00;
  --home-cyan-deep: #0db9c9;
  --home-magenta-deep: #d8187a;
  --home-blue-glow: rgba(0, 219, 255, 0.32);
  --home-grid-line: rgba(255, 255, 255, 0.04);
}

.page-home .home__rank {
  position: relative;
  overflow: hidden;
  padding: 36px 0 52px;
  background:
    linear-gradient(var(--home-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--home-grid-line) 1px, transparent 1px),
    linear-gradient(135deg, var(--bg-purple) 0%, #1d0d2e 55%, var(--bg-crimson) 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.page-home .home__rank::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 219, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.page-home .home__rank-head {
  display: grid;
  gap: 16px;
  align-items: center;
}

.page-home .home__rank-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-home .home__rank-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: cover;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  filter: drop-shadow(0 0 14px var(--home-blue-glow));
}

.page-home .home__rank-title-block {
  display: grid;
  gap: 4px;
}

.page-home .home__rank-kicker {
  margin: 0;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.page-home .home__rank-title-block h1 {
  margin: 0;
  color: var(--text-light);
  font-size: clamp(1.22rem, 3.4vw, 1.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.page-home .home__rank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.page-home .home__rank-actions .button--ghost {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.32);
}

.page-home .home__rank-actions .button--ghost:hover,
.page-home .home__rank-actions .button--ghost:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

.page-home .index-tab {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 150ms ease, box-shadow 150ms ease;
}

.page-home .index-tab[aria-selected="true"] {
  background: var(--accent-cyan);
  color: #10201a;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 18px rgba(0, 229, 160, 0.3);
}

.page-home .index-tab:focus-visible,
.page-home .button:focus-visible,
.page-home .home__filter-btn:focus-visible,
.page-home .home__path-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.page-home .home__rank-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 219, 255, 0.1);
  border: 1px solid rgba(0, 219, 255, 0.2);
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  white-space: nowrap;
  overflow-x: auto;
  max-width: 100%;
}

.page-home .home__zone-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  margin: 0 0 16px;
}

.page-home .home__filter-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.page-home .home__filter-btn:hover {
  transform: translateY(-2px);
  border-color: currentColor;
}

.page-home .home__filter--orange {
  background: rgba(255, 179, 0, 0.2);
  border-color: rgba(255, 179, 0, 0.34);
}

.page-home .home__filter--teal {
  background: rgba(0, 229, 160, 0.16);
  border-color: rgba(0, 229, 160, 0.34);
}

.page-home .home__filter--cyan {
  background: rgba(0, 219, 255, 0.16);
  border-color: rgba(0, 219, 255, 0.34);
}

.page-home .home__filter--pink {
  background: rgba(255, 46, 136, 0.16);
  border-color: rgba(255, 46, 136, 0.34);
}

.page-home .home__filter--purple {
  background: rgba(155, 107, 255, 0.2);
  border-color: rgba(155, 107, 255, 0.34);
}

.page-home .home__filter--magenta {
  background: rgba(255, 122, 195, 0.16);
  border-color: rgba(255, 122, 195, 0.34);
}

.page-home .home__filter--amber {
  background: rgba(255, 179, 0, 0.24);
  border-color: rgba(255, 179, 0, 0.4);
}

.page-home .home__filter--dark {
  background: rgba(42, 13, 24, 0.4);
  border-color: rgba(255, 255, 255, 0.18);
}

.page-home .home__subhead {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 20px 0 12px;
}

.page-home .home__subhead-title {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.page-home .home__subhead-tag {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--done-gray);
}

.page-home .home__rank-list {
  display: grid;
  gap: 8px;
}

.page-home .home__rank-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 10px 12px;
  align-items: center;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  position: relative;
  transition: background 150ms ease, transform 150ms ease;
}

.page-home .home__rank-row:hover,
.page-home .home__rank-row:focus-within {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-home .home__rank-row--top {
  background: rgba(255, 179, 0, 0.08);
}

.page-home .home__rank-row--top::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: var(--accent-orange);
}

.page-home .home__rank-row--first {
  background: linear-gradient(90deg, rgba(255, 179, 0, 0.18), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 179, 0, 0.32);
}

.page-home .order-mark {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--done-gray);
  line-height: 1;
  text-align: center;
}

.page-home .order-mark--top {
  color: var(--accent-orange);
  text-shadow: 0 0 14px rgba(255, 179, 0, 0.45);
}

.page-home .home__rank-main {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.page-home .home__rank-line1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  min-width: 0;
}

.page-home .home__channel-id {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--accent-cyan);
  white-space: nowrap;
}

.page-home .home__channel-zone {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 2px 8px;
  white-space: nowrap;
}

.page-home .home__rank-prog {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

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

.page-home .metric-bar {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.page-home .metric-bar__fill {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
  box-shadow: 0 0 10px rgba(0, 219, 255, 0.5);
}

.page-home .home__rank-heat {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
}

.page-home .home__rank-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
  max-width: 132px;
}

.page-home .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  color: #fff;
}

.page-home .status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.page-home .status-badge--live {
  background: rgba(255, 41, 64, 0.22);
  color: #ff7a86;
}

.page-home .status-badge--hot {
  background: rgba(255, 46, 136, 0.22);
  color: #ff83b8;
}

.page-home .status-badge--hd {
  background: rgba(255, 179, 0, 0.2);
  color: var(--accent-orange);
}

.page-home .status-badge--new {
  background: rgba(0, 229, 160, 0.18);
  color: var(--accent-cyan);
}

.page-home .status-badge--done {
  background: rgba(122, 139, 154, 0.2);
  color: #b7c2ce;
}

.page-home .home__zones {
  background: var(--bg-light);
  padding: 48px 0;
}

.page-home .home__zones-head {
  align-items: flex-start;
}

.page-home .home__zones-brief {
  max-width: 46ch;
  margin: 6px 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #5a5f73;
  font-weight: 500;
}

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

.page-home .home__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 146px;
  padding: 16px;
  border-radius: 10px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  text-decoration: none;
  overflow: hidden;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.page-home .home__tile:hover,
.page-home .home__tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(16, 16, 32, 0.18);
}

.page-home .home__tile--feature {
  grid-column: 1 / -1;
  min-height: 180px;
}

.page-home .home__tile--orange {
  background: linear-gradient(135deg, var(--accent-orange), var(--home-orange-deep));
  color: #251a00;
}

.page-home .home__tile--cyan {
  background: linear-gradient(135deg, var(--accent-cyan), #0db9a8);
  color: #08291f;
}

.page-home .home__tile--blue {
  background: linear-gradient(135deg, var(--primary), #0055ff);
  color: #fff;
}

.page-home .home__tile--magenta {
  background: linear-gradient(135deg, var(--accent-magenta), #ff6a3d);
  color: #2b0a18;
}

.page-home .home__tile--purple {
  background: linear-gradient(135deg, var(--tag-purple), #ff2eb3);
  color: #fff;
}

.page-home .home__tile--teal {
  background: linear-gradient(135deg, var(--tag-teal), #00d4b0);
  color: #03323b;
}

.page-home .home__tile--pink {
  background: linear-gradient(135deg, var(--tag-pink), #ff9d4d);
  color: #3d0d31;
}

.page-home .home__tile--dark {
  background: linear-gradient(135deg, var(--bg-crimson), var(--bg-purple));
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.page-home .home__tile--dark .home__tile-arrow {
  color: var(--accent-cyan);
}

.page-home .home__tile-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.7;
  margin-bottom: auto;
}

.page-home .home__tile .tile__title {
  margin-top: 14px;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.15;
}

.page-home .home__tile .tile__meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  opacity: 0.74;
  margin-top: 3px;
}

.page-home .home__tile-arrow {
  position: absolute;
  right: 16px;
  bottom: 14px;
  font-size: 1.3rem;
  font-weight: 800;
  color: currentColor;
  opacity: 0.75;
  transition: transform 150ms ease, opacity 150ms ease;
}

.page-home .home__tile:hover .home__tile-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.page-home .home__schedule {
  background: linear-gradient(160deg, var(--bg-purple) 0%, var(--bg-crimson) 130%);
  padding: 52px 0 60px;
}

.page-home .home__schedule .section-head {
  color: var(--text-light);
}

.page-home .home__schedule .section-head h2 {
  color: var(--text-light);
}

.page-home .home__schedule-tabs {
  margin: 20px 0 16px;
  display: flex;
  gap: 8px;
}

.page-home .home__table-scroll {
  overflow-x: auto;
}

.page-home .home__schedule-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.page-home .home__schedule-table th,
.page-home .home__schedule-table td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: var(--text-light);
}

.page-home .home__schedule-table th {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-cyan);
  background: rgba(0, 219, 255, 0.08);
  letter-spacing: 0.08em;
}

.page-home .home__batch-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-home .home__prog-cell {
  display: grid;
  gap: 3px;
  padding: 8px 10px;
  border-radius: 8px;
  border-left: 3px solid var(--done-gray);
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 8px;
}

.page-home .home__prog-cell--live {
  border-left-color: var(--live-red);
  background: rgba(255, 41, 64, 0.14);
}

.page-home .home__prog-cell--soon {
  border-left-color: var(--accent-orange);
  background: rgba(255, 179, 0, 0.12);
}

.page-home .home__prog-cell--replay {
  border-left-color: var(--accent-cyan);
  background: rgba(0, 219, 255, 0.1);
}

.page-home .home__prog-ch {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent-cyan);
}

.page-home .home__prog-ti {
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--text-light);
}

.page-home .home__prog-cell .status-badge {
  justify-self: start;
}

.page-home .home__schedule-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.page-home .home__replays {
  background: var(--bg-light);
  padding: 52px 0 60px;
}

.page-home .home__replay-grid {
  columns: 1;
  column-gap: 16px;
}

.page-home .home__replay-card {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.page-home .home__replay-card:hover,
.page-home .home__replay-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(16, 16, 32, 0.14);
  border-color: var(--primary);
}

.page-home .home__replay-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.page-home .home__replay-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.page-home .home__replay-card:hover .home__replay-media img {
  transform: scale(1.03);
}

.page-home .home__replay-body {
  padding: 12px 14px 14px;
}

.page-home .home__replay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.page-home .home__replay-id {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--done-gray);
  background: var(--bg-light);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.page-home .home__replay-title {
  margin: 8px 0 4px;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

.page-home .home__replay-meta {
  margin: 0;
  font-size: 0.76rem;
  color: var(--done-gray);
}

.page-home .home__batches {
  background: linear-gradient(135deg, var(--bg-purple) 0%, var(--bg-crimson) 130%);
  padding: 52px 0 60px;
}

.page-home .home__batches .section-head h2 {
  color: var(--text-light);
}

.page-home .home__batch-layout {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.page-home .home__timeline {
  display: grid;
  gap: 0;
}

.page-home .home__batch-node {
  display: grid;
  gap: 5px;
  position: relative;
  padding: 16px 0 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .home__batch-node::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 20px;
  width: 10px;
  height: 10px;
  background: var(--accent-cyan);
  clip-path: polygon(30% 0, 100% 30%, 100% 100%, 30% 100%, 0 70%, 0 0);
  box-shadow: 0 0 10px rgba(0, 229, 160, 0.6);
}

.page-home .home__batch-node--latest::after {
  content: "最新";
  position: absolute;
  right: 10px;
  top: 14px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  color: #08291f;
  background: var(--accent-cyan);
  box-shadow: 0 0 16px rgba(0, 229, 160, 0.4);
}

.page-home .home__batch-node .timeline__time {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .home__batch-node .timeline__title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text-light);
}

.page-home .home__batch-ids {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-cyan);
}

.page-home .home__batch-node .tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.4;
}

.page-home .tag--teal {
  background: rgba(0, 229, 160, 0.16);
  color: var(--accent-cyan);
}

.page-home .tag--pink {
  background: rgba(255, 46, 136, 0.16);
  color: #ff83b8;
}

.page-home .tag--purple {
  background: rgba(155, 107, 255, 0.18);
  color: #c9a2ff;
}

.page-home .tag--cyan {
  background: rgba(0, 219, 255, 0.14);
  color: var(--primary);
}

.page-home .tag--magenta {
  background: rgba(255, 122, 195, 0.16);
  color: #ff9ed0;
}

.page-home .tag--orange {
  background: rgba(255, 179, 0, 0.16);
  color: var(--accent-orange);
}

.page-home .home__batch-art {
  position: relative;
  min-height: 220px;
  border-radius: 14px;
  overflow: hidden;
  clip-path: polygon(1% 0, 98% 4%, 100% 96%, 2% 100%);
}

.page-home .home__batch-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.page-home .home__batch-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(23, 10, 36, 0.9) 100%);
}

.page-home .home__batch-art-body {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  color: var(--text-light);
}

.page-home .home__batch-art-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.page-home .home__batch-art-body strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.page-home .home__batch-art-body span {
  font-size: 0.82rem;
  opacity: 0.8;
}

.page-home .home__paths {
  background: var(--bg-light);
  padding: 48px 0;
}

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

.page-home .home__path-card {
  display: grid;
  gap: 6px;
  padding: 18px 18px 16px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.page-home .home__path-card:hover,
.page-home .home__path-card:focus-visible {
  transform: translateY(-3px);
  border-color: currentColor;
  box-shadow: 0 14px 28px rgba(16, 16, 32, 0.12);
}

.page-home .home__path-card--orange {
  border-left: 4px solid var(--accent-orange);
  color: var(--text-dark);
}

.page-home .home__path-card--cyan {
  border-left: 4px solid var(--accent-cyan);
  color: var(--text-dark);
}

.page-home .home__path-card--magenta {
  border-left: 4px solid var(--accent-magenta);
  color: var(--text-dark);
}

.page-home .home__path-num {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--done-gray);
}

.page-home .home__path-card--orange .home__path-num {
  color: var(--accent-orange);
}

.page-home .home__path-card--cyan .home__path-num {
  color: var(--accent-cyan);
}

.page-home .home__path-card--magenta .home__path-num {
  color: var(--accent-magenta);
}

.page-home .home__path-card strong {
  font-size: 1rem;
  font-weight: 800;
}

.page-home .home__path-card small {
  font-size: 0.8rem;
  color: var(--done-gray);
}

.page-home .home__paths-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  align-items: center;
}

.page-home .home__paths-tags a {
  text-decoration: none;
}

.page-home .home__paths-tags a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .page-home .home__tile--feature {
    grid-column: span 4;
    min-height: 190px;
  }

  .page-home .home__tile:nth-child(2) {
    grid-column: span 2;
  }

  .page-home .home__tile:nth-child(3),
  .page-home .home__tile:nth-child(4) {
    grid-column: span 1;
  }

  .page-home .home__tile:nth-child(5) {
    grid-column: span 2;
  }

  .page-home .home__tile:nth-child(6),
  .page-home .home__tile:nth-child(7) {
    grid-column: span 1;
  }

  .page-home .home__tile:nth-child(8) {
    grid-column: span 4;
  }

  .page-home .home__replay-grid {
    columns: 2;
  }
}

@media (min-width: 768px) {
  .page-home .home__rank-head {
    grid-template-columns: 1fr auto;
  }

  .page-home .home__rank-title-wrap {
    gap: 18px;
  }

  .page-home .home__rank-icon {
    width: 60px;
    height: 60px;
  }

  .page-home .home__rank-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .page-home .home__rank-row {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    padding: 12px 16px;
  }

  .page-home .home__rank-badges {
    max-width: 220px;
  }

  .page-home .home__zones {
    padding: 64px 0;
  }

  .page-home .home__zones-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
  }

  .page-home .home__schedule {
    padding: 64px 0;
  }

  .page-home .home__replays {
    padding: 64px 0;
  }

  .page-home .home__replay-grid {
    columns: 3;
  }

  .page-home .home__batch-layout {
    grid-template-columns: 1fr 360px;
    gap: 24px;
  }

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

  .page-home .home__paths-tags {
    gap: 12px;
  }
}

@media (min-width: 1024px) {
  .page-home .home__rank {
    padding: 48px 0 72px;
  }

  .page-home .home__rank-title-block h1 {
    font-size: 2rem;
  }

  .page-home .home__rank-row {
    grid-template-columns: 56px minmax(0, 1fr) 170px auto;
  }

  .page-home .home__rank-main {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 320px);
    align-items: center;
    gap: 18px;
  }

  .page-home .home__rank-line1 {
    flex-wrap: nowrap;
  }

  .page-home .home__rank-line2 {
    grid-template-columns: 1fr 70px;
  }

  .page-home .home__subhead {
    margin-top: 26px;
  }

  .page-home .home__batch-layout {
    grid-template-columns: 1fr 420px;
  }

  .page-home .home__schedule-note {
    font-size: 0.82rem;
  }
}

.page-home {
  --w: 1rem;
}
