.page-home {
  --page-space: clamp(3.5rem, 8vw, 6.5rem);
  --page-card-bg: rgba(14, 32, 69, 0.78);
  background: var(--nuoya-night);
  color: var(--nuoya-snow);
  overflow-x: clip;
}

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

.page-home .nuoya-data-num {
  font-family: var(--nuoya-font-mono);
  letter-spacing: -0.03em;
}

.page-home .home-crumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--nuoya-fog);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.page-home .home-crumb-sep {
  color: var(--nuoya-lime);
}

.page-home .home-crumb-item[aria-current="page"] {
  color: var(--nuoya-snow);
}

.page-home .home-section-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.4rem;
  font-family: var(--nuoya-font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nuoya-night);
  background: var(--nuoya-lime);
  transform: skew(-8deg);
  margin-bottom: 0.9rem;
}

.page-home .home-section-index-light {
  color: var(--nuoya-lime);
  background: transparent;
  border: 1px solid var(--nuoya-lime);
}

.page-home .home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nuoya-header-h-mobile) + 1.5rem) 0 2.5rem;
}

.page-home .home-hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .home-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.72) contrast(1.08);
}

.page-home .home-hero-bg-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 27, 61, 0.62) 0%, rgba(11, 27, 61, 0.86) 55%, var(--nuoya-night) 100%);
}

.page-home .home-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: perspective(600px) rotateX(18deg) scale(1.12);
  transform-origin: center top;
  background-image:
    linear-gradient(rgba(180, 255, 57, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 255, 57, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 32%, transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 32%, transparent 92%);
}

.page-home .home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  width: 100%;
  min-width: 0;
}

.page-home .home-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--nuoya-lime);
  margin: 0 0 0.6rem;
}

.page-home .home-kicker-dot {
  width: 8px;
  height: 8px;
  background: var(--nuoya-lime);
  transform: rotate(45deg);
  flex: none;
}

.page-home .home-hero-title {
  font-family: var(--nuoya-font-head);
  font-weight: 900;
  font-size: clamp(3rem, 11vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 1.2rem;
  color: var(--nuoya-snow);
}

.page-home .home-hero-title .home-hero-accent {
  display: inline-block;
  transform: skew(-8deg);
  color: var(--nuoya-lime);
}

.page-home .home-hero-lead {
  max-width: 32rem;
  font-family: var(--nuoya-font-body);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--nuoya-fog);
  margin: 0 0 1.6rem;
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.page-home .home-hero-btn {
  text-decoration: none;
}

.page-home .home-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-hero-fact {
  background: rgba(14, 32, 69, 0.62);
  border-left: 2px solid rgba(180, 255, 57, 0.7);
  padding: 0.8rem 0.9rem;
  min-width: 0;
}

.page-home .home-hero-fact dt {
  font-size: 0.72rem;
  color: var(--nuoya-fog);
  letter-spacing: 0.08em;
}

.page-home .home-hero-fact dd {
  margin: 0;
  font-family: var(--nuoya-font-mono);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--nuoya-lime);
  line-height: 1.25;
}

.page-home .home-hero-fact dd:last-child {
  font-family: var(--nuoya-font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--nuoya-fog);
  margin-top: 0.2rem;
}

.page-home .home-hero-right {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.page-home .home-glance {
  background: var(--page-card-bg);
  border: 1px solid rgba(180, 255, 57, 0.22);
  border-top: 3px solid var(--nuoya-lime);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 24px 48px rgba(3, 8, 24, 0.32);
  min-width: 0;
}

.page-home .home-glance-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.page-home .home-glance-round {
  font-family: var(--nuoya-font-mono);
  font-size: 0.82rem;
  color: var(--nuoya-fog);
}

.page-home .home-glance-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.page-home .home-glance-team {
  font-family: var(--nuoya-font-head);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--nuoya-snow);
}

.page-home .home-glance-team:first-child {
  text-align: left;
}

.page-home .home-glance-team:last-child {
  text-align: right;
}

.page-home .home-glance-score {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 2.4rem;
  color: var(--nuoya-lime);
}

.page-home .home-glance-sep {
  color: var(--nuoya-fog);
  font-size: 1.4rem;
}

.page-home .home-glance-meta {
  font-size: 0.78rem;
  color: var(--nuoya-fog);
  border-top: 1px dashed rgba(180, 255, 57, 0.2);
  padding-top: 0.8rem;
  margin: 1rem 0 0.6rem;
}

.page-home .home-glance-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--nuoya-fog);
}

.page-home .home-glance-link {
  color: var(--nuoya-lime);
  text-decoration: none;
  white-space: nowrap;
}

.page-home .home-glance-link:hover {
  text-decoration: underline;
}

.page-home .home-ticker-box {
  background: rgba(11, 27, 61, 0.8);
  border: 1px solid rgba(180, 255, 57, 0.15);
  border-left: 3px solid var(--nuoya-lime);
  padding: 0.75rem 1rem;
  min-width: 0;
}

.page-home .home-ticker-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--nuoya-fog);
  margin-bottom: 0.6rem;
}

.page-home .home-ticker-live {
  width: 8px;
  height: 8px;
  flex: none;
  background: var(--nuoya-orange);
  border-radius: 50%;
  animation: homePulse 1.6s ease-in-out infinite;
}

@keyframes homePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.78); }
}

.page-home .home-ticker-flow {
  position: relative;
  overflow: hidden;
  max-height: 250px;
}

.page-home .home-ticker-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 27, 61, 0.55), transparent 25%, transparent 75%, rgba(11, 27, 61, 0.55));
}

.page-home .home-ticker-track {
  display: grid;
  gap: 0.6rem;
  animation: homeTickerFlow 20s linear infinite;
}

.page-home .home-ticker-flow:hover .home-ticker-track {
  animation-play-state: paused;
}

@keyframes homeTickerFlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.page-home .home-ticker-list {
  list-style: none;
  margin: 0;
  padding: 0.1rem 0;
  display: grid;
  gap: 0.5rem;
}

.page-home .home-ticker-item {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--nuoya-snow);
  line-height: 1.5;
  border-bottom: 1px dashed rgba(180, 255, 57, 0.14);
  padding-bottom: 0.5rem;
}

.page-home .home-ticker-item b {
  color: var(--nuoya-lime);
  font-weight: 600;
}

.page-home .home-hero-scanline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.page-home .home-live {
  position: relative;
  background: linear-gradient(180deg, var(--nuoya-night) 0%, var(--nuoya-midnight) 100%);
  padding: var(--page-space) 0;
  overflow: hidden;
}

.page-home .home-live-head {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.page-home .home-live-heading-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.page-home .home-live h2,
.page-home .home-tools h2,
.page-home .home-news h2,
.page-home .home-station h2 {
  font-family: var(--nuoya-font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  letter-spacing: -0.02em;
  margin: 0;
}

.page-home .home-live h2 {
  transform: skew(-6deg);
}

.page-home .home-live-desc {
  margin: 0;
  color: var(--nuoya-fog);
  font-size: 0.92rem;
  line-height: 1.65;
}

.page-home .home-live-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.page-home .home-live-grid {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.page-home .home-live-matches {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.page-home .home-match-card {
  position: relative;
  background: rgba(11, 27, 61, 0.76);
  border: 1px solid rgba(180, 255, 57, 0.14);
  border-left: 3px solid var(--nuoya-data);
  padding: 0.9rem 1rem;
  min-width: 0;
  overflow: hidden;
}

.page-home .home-match-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nuoya-lime), transparent);
  transform: translateX(-80%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.page-home .home-match-card:hover::after {
  animation: homeScan 0.8s ease-out;
  opacity: 1;
}

@keyframes homeScan {
  0% { transform: translateX(-80%); }
  100% { transform: translateX(80%); }
}

.page-home .home-match-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.page-home .home-match-round {
  font-family: var(--nuoya-font-mono);
  font-size: 0.76rem;
  color: var(--nuoya-fog);
}

.page-home .home-match-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.6rem;
}

.page-home .home-match-team {
  font-family: var(--nuoya-font-head);
  font-weight: 800;
  font-size: 0.96rem;
  color: var(--nuoya-snow);
  min-width: 0;
}

.page-home .home-match-team:first-child {
  text-align: left;
}

.page-home .home-match-team:last-child {
  text-align: right;
}

.page-home .home-match-score {
  font-family: var(--nuoya-font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--nuoya-lime);
  white-space: nowrap;
}

.page-home .home-match-note {
  margin: 0.7rem 0 0;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(180, 255, 57, 0.14);
  font-size: 0.76rem;
  color: var(--nuoya-fog);
  line-height: 1.5;
}

.page-home .home-transfer-card {
  background: linear-gradient(135deg, rgba(14, 32, 69, 0.96), rgba(11, 27, 61, 0.92));
  border: 1px solid rgba(180, 255, 57, 0.2);
  padding: 1.1rem 1.2rem;
  min-width: 0;
}

.page-home .home-transfer-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.page-home .home-transfer-head h3 {
  font-family: var(--nuoya-font-head);
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0;
}

.page-home .home-section-index-small {
  min-width: 2rem;
  height: 2rem;
  font-size: 0.72rem;
  margin-bottom: 0;
}

.page-home .home-transfer-list {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.page-home .home-transfer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--nuoya-snow);
  line-height: 1.5;
}

.page-home .home-transfer-tag {
  flex: none;
  font-family: var(--nuoya-font-mono);
  font-size: 0.7rem;
  color: var(--nuoya-lime);
  border: 1px solid rgba(180, 255, 57, 0.45);
  transform: skew(-6deg);
  padding: 0.05rem 0.35rem;
  letter-spacing: 0.04em;
}

.page-home .home-transfer-note {
  border-left: 2px solid var(--nuoya-lime);
  background: rgba(180, 255, 57, 0.08);
  padding: 0.65rem 0.75rem;
  font-size: 0.78rem;
  color: var(--nuoya-fog);
}

.page-home .home-transfer-note span {
  display: block;
  color: var(--nuoya-lime);
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  margin-bottom: 0.2rem;
}

.page-home .home-live-fig {
  position: absolute;
  right: -4rem;
  bottom: 2rem;
  z-index: 0;
  width: 260px;
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(-6deg);
}

.page-home .home-live-fig-img {
  width: 100%;
  height: auto;
}

.page-home .home-panel-wrap {
  position: relative;
  z-index: 2;
  margin-top: 1.4rem;
}

.page-home .home-panel-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--nuoya-font-head);
  font-size: 0.95rem;
  font-weight: 700;
  background: rgba(14, 32, 69, 0.9);
  border: 1px solid rgba(180, 255, 57, 0.25);
  color: var(--nuoya-snow);
  padding: 0.9rem 1.05rem;
  cursor: pointer;
}

.page-home .home-panel-content {
  padding: 1.1rem 1.05rem;
}

.page-home .home-league-grid {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.9rem;
}

.page-home .home-league-grid a {
  display: block;
  color: var(--nuoya-fog);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.45rem 0.6rem;
  border-left: 2px solid rgba(180, 255, 57, 0.4);
  background: rgba(11, 27, 61, 0.5);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.page-home .home-league-grid a:hover {
  color: var(--nuoya-lime);
  border-left-color: var(--nuoya-lime);
  background: rgba(14, 32, 69, 0.9);
}

.page-home .home-panel-foot {
  font-size: 0.8rem;
  color: var(--nuoya-fog);
  margin: 0 0 0 0.15rem;
}

.page-home .home-tools {
  background: radial-gradient(circle at 85% 20%, rgba(61, 123, 255, 0.1), transparent 42%);
  padding: var(--page-space) 0;
}

.page-home .home-tools-head {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.page-home .home-tools h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  transform: skew(-6deg);
}

.page-home .home-tools-head p {
  margin: 0;
  max-width: 34rem;
  color: var(--nuoya-fog);
  font-size: 0.94rem;
  line-height: 1.7;
}

.page-home .home-tools-grid {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.page-home .home-tool-card {
  position: relative;
  background: linear-gradient(145deg, rgba(14, 32, 69, 0.9), rgba(11, 27, 61, 0.94));
  border: 1px solid rgba(180, 255, 57, 0.16);
  border-top: 3px solid transparent;
  padding: 1.25rem 1.2rem;
  min-width: 0;
  transition: border-color 0.2s ease, transform 0.2s var(--nuoya-ease);
}

.page-home .home-tool-card:hover {
  border-top: 3px solid var(--nuoya-lime);
  border-color: rgba(180, 255, 57, 0.45);
  transform: translateY(-3px);
}

.page-home .home-tool-index {
  font-family: var(--nuoya-font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--nuoya-night);
  background: var(--nuoya-fog);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.9rem;
  height: 1.9rem;
  transform: skew(-8deg);
  margin-bottom: 0.9rem;
}

.page-home .home-tool-title {
  font-family: var(--nuoya-font-head);
  font-weight: 900;
  font-size: 1.12rem;
  line-height: 1.35;
  margin: 0 0 0.6rem;
}

.page-home .home-tool-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--nuoya-fog);
  margin: 0 0 1rem;
}

.page-home .home-tool-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--nuoya-lime);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}

.page-home .home-tool-link:hover {
  border-bottom-color: var(--nuoya-lime);
}

.page-home .home-tool-card-img {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.1rem;
}

.page-home .home-tool-img-box {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border: 1px solid rgba(180, 255, 57, 0.2);
  margin-bottom: 0.9rem;
  background: var(--nuoya-midnight);
}

.page-home .home-tool-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--nuoya-ease);
}

.page-home .home-tool-card-img:hover .home-tool-img-box img {
  transform: scale(1.04);
}

.page-home .home-news {
  background: linear-gradient(180deg, var(--nuoya-midnight) 0%, var(--nuoya-night) 100%);
  padding: var(--page-space) 0;
}

.page-home .home-news-inner {
  display: grid;
  gap: 2rem;
  min-width: 0;
}

.page-home .home-news-left {
  min-width: 0;
}

.page-home .home-news-left h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  transform: skew(-6deg);
  margin-bottom: 0.7rem;
}

.page-home .home-news-left p {
  color: var(--nuoya-fog);
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}

.page-home .home-news-list {
  display: grid;
  gap: 0;
  border-left: 1px solid rgba(180, 255, 57, 0.2);
  min-width: 0;
}

.page-home .home-news-item {
  position: relative;
  padding: 1rem 0 1rem 1.2rem;
}

.page-home .home-news-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 1.35rem;
  width: 9px;
  height: 9px;
  background: var(--nuoya-lime);
  transform: rotate(45deg);
}

.page-home .home-news-item-title {
  margin: 0.55rem 0 0.4rem;
}

.page-home .home-news-item-title a {
  font-family: var(--nuoya-font-head);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--nuoya-snow);
  text-decoration: none;
  transition: color 0.18s ease;
}

.page-home .home-news-item-title a:hover {
  color: var(--nuoya-lime);
}

.page-home .home-news-item p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--nuoya-fog);
}

.page-home .home-station {
  position: relative;
  overflow: hidden;
  background: var(--nuoya-night);
  padding: var(--page-space) 0;
}

.page-home .home-station-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .home-station-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
}

.page-home .home-station-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 27, 61, 0.95) 0%, rgba(11, 27, 61, 0.86) 50%, rgba(11, 27, 61, 0.72) 100%);
}

.page-home .home-station-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.6rem;
  min-width: 0;
}

.page-home .home-station-copy p {
  color: var(--nuoya-fog);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 30rem;
  margin: 0 0 1.1rem;
}

.page-home .home-station-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.page-home .home-station-meta {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.page-home .home-station-card {
  background: rgba(11, 27, 61, 0.72);
  border: 1px solid rgba(180, 255, 57, 0.2);
  border-left: 3px solid var(--nuoya-lime);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.page-home .home-station-label {
  font-size: 0.76rem;
  color: var(--nuoya-fog);
  letter-spacing: 0.08em;
}

.page-home .home-station-value {
  font-family: var(--nuoya-font-head);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--nuoya-snow);
}

.page-home .home-station-note {
  font-size: 0.74rem;
  color: var(--nuoya-fog);
  line-height: 1.5;
}

.page-home .home-station-signal {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 38px;
  margin-top: 0.15rem;
}

.page-home .home-station-signal .sig-bar {
  display: block;
  width: 7px;
  height: 14px;
  background: rgba(180, 255, 57, 0.22);
}

.page-home .home-station-signal .sig-bar:nth-child(1),
.page-home .home-station-signal .sig-bar:nth-child(2) {
  height: 20px;
  background: rgba(180, 255, 57, 0.5);
}

.page-home .home-station-signal .sig-bar:nth-child(3),
.page-home .home-station-signal .sig-bar:nth-child(4) {
  height: 30px;
  background: rgba(180, 255, 57, 0.85);
}

.page-home .home-station-signal .sig-bar:nth-child(5) {
  height: 38px;
  background: var(--nuoya-lime);
}

@media (min-width: 700px) {
  .page-home .home-hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .page-home .home-tool-card-img {
    grid-template-columns: 1fr;
  }

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

  .page-home .home-station-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-home .home-live-fig {
    width: 360px;
    opacity: 0.14;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding-top: calc(var(--nuoya-header-h) + 1rem);
  }

  .page-home .home-hero-inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .page-home .home-hero-lead {
    font-size: 1.08rem;
  }

  .page-home .home-glance {
    padding: 1.3rem 1.4rem;
  }

  .page-home .home-live-head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
  }

  .page-home .home-live-desc {
    justify-self: end;
    max-width: 30rem;
    text-align: right;
  }

  .page-home .home-live-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .page-home .home-live-matches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-live-fig {
    right: 1rem;
    width: 420px;
    opacity: 0.16;
  }

  .page-home .home-tools-head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
  }

  .page-home .home-tools-head p {
    justify-self: end;
    text-align: right;
  }

  .page-home .home-news-inner {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 3rem;
  }

  .page-home .home-news-left {
    padding-right: 1.5rem;
  }

  .page-home .home-station-inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 2.5rem;
    align-items: end;
  }

  .page-home .home-station-copy {
    padding-right: 1.5rem;
  }

  .page-home .home-station-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-ticker-track,
  .page-home .home-ticker-live,
  .page-home .home-match-card::after {
    animation: none !important;
  }
}
