.page-home {
  --hm-pad: 44px;
  --hm-green: #16A70E;
  --hm-speed: repeating-linear-gradient(118deg, rgba(57,255,20,0.07) 0 2px, transparent 2px 42px);
  overflow-x: clip;
}

/* ===== Hero ===== */
.page-home .hm-hero {
  position: relative;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-base) 0%, var(--color-base-2) 58%, var(--color-base-3) 100%);
  overflow: hidden;
}
.page-home .hm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hm-speed);
  opacity: 0.5;
  pointer-events: none;
}
.page-home .hm-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  padding-block: 28px;
}
.page-home .hm-hero-main {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-base-2);
  box-shadow: 0 24px 48px rgba(0,0,0,0.28);
}
.page-home .hm-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .hm-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}
.page-home .hm-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(200deg, rgba(10,31,68,0.15) 0%, rgba(10,31,68,0.62) 48%, rgba(10,31,68,0.95) 100%);
}
.page-home .hm-hero-front {
  position: relative;
  z-index: 2;
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-home .hm-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}
.page-home .hm-hero-front h1 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(27px, 6vw, 46px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  max-width: 12em;
  text-transform: uppercase;
}
.page-home .hm-hero-desc {
  margin: 14px 0 0;
  max-width: 56ch;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.6;
}
.page-home .hm-hero-scores {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: 100%;
}
.page-home .hm-hero-score {
  background: rgba(13,42,94,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 12px 14px;
  backdrop-filter: blur(10px);
}
.page-home .hm-hero-score-league {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  font-weight: 700;
}
.page-home .hm-hero-score-league i {
  font-style: normal;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0;
}
.page-home .hm-hero-score-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.page-home .hm-hero-score-main b {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.page-home .hm-hero-score-main em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-hot);
  text-align: center;
}
.page-home .hm-hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.page-home .hm-hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-home .hm-v3-mini {
  display: block;
  border-radius: 14px;
  padding: 22px;
}
.page-home .hm-v3-mini h2 {
  margin: 10px 0 14px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  color: var(--color-white);
  transform: skewX(-3deg);
}
.page-home .hm-v3-mini-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-home .hm-v3-mini-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.page-home .hm-v3-mini-list b {
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-weight: 700;
  white-space: nowrap;
}
.page-home .hm-hero-map {
  border-radius: 14px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}
.page-home .hm-hero-map-title {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.page-home .hm-hero-map ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .hm-hero-map li + li {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.page-home .hm-hero-map a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
}
.page-home .hm-hero-map a i {
  font-style: normal;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.4);
  min-width: 24px;
}
.page-home .hm-hero-map a span {
  transition: color 0.15s;
}
.page-home .hm-hero-map a:hover span {
  color: var(--color-accent);
}
.page-home .hm-ticker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.16);
  background: rgba(10,31,68,0.72);
}
.page-home .hm-ticker-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px 10px 20px;
  background: var(--color-hot);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--color-white);
}
.page-home .hm-ticker-track {
  display: flex;
  align-items: center;
  overflow-x: auto;
  padding: 4px 4px;
  scrollbar-width: none;
}
.page-home .hm-ticker-track::-webkit-scrollbar {
  display: none;
}
.page-home .hm-ticker-track a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  white-space: nowrap;
  color: var(--color-white);
  text-decoration: none;
}
.page-home .hm-ticker-track a span {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 12px;
}
.page-home .hm-ticker-track a b {
  font-size: 14px;
  font-weight: 600;
}
.page-home .hm-ticker-track a i {
  font-style: normal;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ===== Section common ===== */
.page-home .hm-section {
  position: relative;
  padding-block: var(--hm-pad);
}
.page-home .hm-sec-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.page-home .hm-sec-num {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-base);
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  padding: 2px 12px;
  border-radius: 4px;
  transform: skewX(-8deg);
  box-shadow: 4px 4px 0 rgba(10,31,68,0.1);
  white-space: nowrap;
}
.page-home .hm-sec-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.page-home .hm-sec-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.12;
  text-transform: uppercase;
  transform: skewX(-4deg);
  color: var(--color-dark);
}
.page-home .hm-section-lead {
  max-width: 70ch;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray);
}
.page-home .hm-section-footer {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 14px;
}
.page-home .hm-section-footer a {
  color: var(--color-base);
  font-weight: 700;
  text-underline-offset: 4px;
}

/* ===== 01 Live scores ===== */
.page-home .hm-live-section {
  background: var(--color-ice);
}
.page-home .hm-live-legend {
  margin: 4px 0 18px;
}
.page-home .hm-score-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}
.page-home .hm-score-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    "league league league"
    "home score away"
    "state state state";
  gap: 8px 14px;
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-light);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--color-dark);
  box-shadow: 0 4px 16px rgba(10,31,68,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.page-home .hm-score-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-hot);
  transform: skewX(-10deg);
}
.page-home .hm-score-card.is-live::before {
  background: var(--color-accent);
}
.page-home .hm-score-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(10,31,68,0.1);
}
.page-home .hm-s-league {
  grid-area: league;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gray);
}
.page-home .hm-s-league i {
  font-style: normal;
  opacity: 0.8;
}
.page-home .hm-s-club {
  font-weight: 700;
  font-size: 15px;
}
.page-home .hm-score-card .hm-s-club:nth-child(2) {
  grid-area: home;
  text-align: right;
}
.page-home .hm-score-card .hm-s-club:nth-child(4) {
  grid-area: away;
  text-align: left;
}
.page-home .hm-s-score {
  grid-area: score;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-base);
  text-align: center;
  min-width: 2ch;
}
.page-home .hm-s-state {
  grid-area: state;
  justify-self: center;
  background: var(--color-light);
  color: var(--color-gray);
  font-size: 12px;
  border-radius: 999px;
  padding: 3px 12px;
}
.page-home .hm-live-more {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ===== 02 V3 update ===== */
.page-home .hm-v3-section {
  background: var(--color-white);
}
.page-home .hm-v3-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.page-home .hm-v3-list {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.page-home .hm-v3-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--color-ice);
  border-radius: 12px;
  padding: 16px 18px;
}
.page-home .hm-v3-num {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--hm-green);
  background: rgba(57,255,20,0.16);
  padding: 8px 10px;
  border-radius: 6px;
  line-height: 1;
}
.page-home .hm-v3-item h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-dark);
}
.page-home .hm-v3-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-gray);
}
.page-home .hm-v3-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.page-home .hm-textlink {
  font-weight: 700;
  color: var(--color-base);
  text-underline-offset: 4px;
}
.page-home .hm-v3-figure {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-base-2);
  box-shadow: 0 18px 40px rgba(10,31,68,0.2);
}
.page-home .hm-v3-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .hm-v3-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,31,68,0.75);
  color: var(--color-white);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.page-home .hm-v3-float {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--color-hot);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 16px;
  border-radius: 10px;
  transform: rotate(6deg) skewX(-6deg);
  box-shadow: 0 10px 24px rgba(255,107,0,0.35);
}
.page-home .hm-v3-float small {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  margin-top: 4px;
  letter-spacing: 0.06em;
}

/* ===== 03 Big screen ===== */
.page-home .hm-screen-section {
  background: linear-gradient(135deg, var(--color-base-3) 0%, var(--color-base-2) 60%, var(--color-base) 100%);
  color: var(--color-white);
  clip-path: polygon(0 2.5%, 100% 0, 100% 97.5%, 0 100%);
  padding-block: calc(var(--hm-pad) + 34px);
}
.page-home .hm-screen-section .hm-sec-copy h2 {
  color: var(--color-white);
}
.page-home .hm-screen-section .hm-section-lead {
  color: rgba(255,255,255,0.78);
}
.page-home .hm-screen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.page-home .hm-screen-figure {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  background: var(--color-base);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.page-home .hm-screen-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.page-home .hm-screen-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(57,255,20,0.08) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.page-home .hm-screen-points {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-home .hm-screen-points li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.55;
}
.page-home .hm-screen-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  transform: skewX(-10deg);
}
.page-home .hm-screen-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== 04 Favorites ===== */
.page-home .hm-fav-section {
  background: var(--color-ice);
}
.page-home .hm-fav-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}
.page-home .hm-fav-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 16px;
}
.page-home .hm-filter-chip {
  font: inherit;
  font-size: 14px;
  border: 1px solid var(--color-light);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-dark);
  padding: 6px 16px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.page-home .hm-filter-chip.is-active {
  background: var(--color-base);
  border-color: var(--color-base);
  color: var(--color-white);
}
.page-home .hm-fav-panel {
  border: 1px solid var(--color-light);
  border-radius: 12px;
  background: var(--color-white);
  overflow: hidden;
}
.page-home .hm-fav-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 12px 16px;
}
.page-home .hm-fav-row + .hm-fav-row {
  border-top: 1px solid var(--color-light);
}
.page-home .hm-fav-star {
  color: var(--color-hot);
  font-size: 16px;
}
.page-home .hm-fav-league {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-gray);
}
.page-home .hm-fav-teams {
  flex: 1 1 auto;
  min-width: 130px;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-dark);
}
.page-home .hm-fav-venue {
  font-size: 12px;
  color: var(--color-gray);
  background: var(--color-ice);
  border-radius: 999px;
  padding: 3px 10px;
}
.page-home .hm-fav-tag {
  font-size: 12px;
  border-radius: 999px;
  padding: 3px 10px;
  font-weight: 700;
}
.page-home .hm-fav-tag.is-live {
  background: rgba(57,255,20,0.18);
  color: var(--hm-green);
}
.page-home .hm-fav-tag.is-done {
  background: var(--color-light);
  color: var(--color-gray);
}
.page-home .hm-fav-tag.is-upcoming {
  background: rgba(255,107,0,0.14);
  color: var(--color-hot);
}
.page-home .hm-fav-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(10,31,68,0.15);
}

/* ===== 05 Feature leagues ===== */
.page-home .hm-feature-section {
  background: var(--color-white);
}
.page-home .hm-map-cover {
  position: relative;
  border: 1px dashed var(--color-light);
  border-radius: 14px;
  padding: 10px;
  background: var(--color-ice);
  margin-bottom: 20px;
  overflow: hidden;
}
.page-home .hm-map-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 120px;
}
.page-home .hm-league-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}
.page-home .hm-league-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--color-light);
  border-radius: 12px;
  background: var(--color-ice);
  text-decoration: none;
  color: var(--color-dark);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.page-home .hm-league-card::before {
  content: "";
  position: absolute;
  inset-block: 12%;
  left: 0;
  width: 4px;
  background: var(--color-accent);
  transform: skewX(-10deg);
}
.page-home .hm-league-card--basketball::before {
  background: var(--color-hot);
}
.page-home .hm-league-card--tennis::before {
  background: var(--color-base-3);
}
.page-home .hm-league-card--more::before {
  background: var(--color-gray);
}
.page-home .hm-league-card::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(57,255,20,0.1);
}
.page-home .hm-league-card--basketball::after {
  background: rgba(255,107,0,0.12);
}
.page-home .hm-league-card--tennis::after {
  background: rgba(30,58,138,0.12);
}
.page-home .hm-league-card--more::after {
  background: rgba(107,114,128,0.1);
}
.page-home .hm-league-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10,31,68,0.12);
}
.page-home .hm-league-sport svg {
  display: block;
  width: 42px;
  height: 42px;
  color: var(--color-base);
}
.page-home .hm-league-name {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  transform: skewX(-4deg);
}
.page-home .hm-league-meta {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-gray);
}
.page-home .hm-league-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-base);
}

/* ===== 06 APP ===== */
.page-home .hm-app-section {
  background:
    radial-gradient(60% 60% at 80% 10%, rgba(57,255,20,0.13) 0%, transparent 60%),
    linear-gradient(135deg, var(--color-base) 0%, var(--color-base-2) 70%, var(--color-base-3) 100%);
  color: var(--color-white);
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
  padding-block: calc(var(--hm-pad) + 40px);
  overflow: hidden;
}
.page-home .hm-app-section .hm-sec-copy h2 {
  color: var(--color-white);
}
.page-home .hm-app-section .hm-section-lead {
  color: rgba(255,255,255,0.8);
}
.page-home .hm-app-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
  margin-inline: auto;
}
.page-home .hm-app-copy {
  position: relative;
  z-index: 2;
}
.page-home .hm-app-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin: 20px 0 18px;
}
.page-home .hm-app-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.page-home .hm-app-stat b {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.25;
}
.page-home .hm-app-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.page-home .hm-app-trust {
  display: block;
  margin-bottom: 24px;
  border-left: 3px solid var(--color-hot);
  padding: 12px 16px 12px 18px;
  background: rgba(255,255,255,0.05);
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.84);
}
.page-home .hm-app-link {
  color: var(--color-accent);
  font-weight: 700;
  text-underline-offset: 4px;
}
.page-home .hm-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .hm-app-orbit {
  position: absolute;
  right: -110px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .page-home .hm-hero-scores {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-home .hm-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .hm-league-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .page-home {
    --hm-pad: 76px;
  }
  .page-home .hm-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 28px;
    padding-block: 40px;
  }
  .page-home .hm-hero-main {
    min-height: 640px;
  }
  .page-home .hm-hero-front {
    padding: 38px 36px 36px;
  }
  .page-home .hm-hero-scores {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-home .hm-v3-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
  }
  .page-home .hm-screen-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
  }
  .page-home .hm-fav-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 52px;
  }
  .page-home .hm-score-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .page-home .hm-league-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-home .hm-app-orbit {
    right: -140px;
    bottom: -80px;
    width: 320px;
    height: 320px;
  }
}
