.home-page {
  --mh-brand: #0891b2;
  --mh-accent: #65a30d;
  --mh-teal: #14b8a6;
  --mh-ink: #102033;
  --mh-muted: #5a6b80;
  --mh-bg: #f4fafc;
  --mh-soft: #eaf7f7;
  --mh-card: #ffffff;
  --mh-line: rgba(34, 76, 104, 0.14);
  --mh-gap: 10px;
  display: block;
  width: 100%;
  overflow: clip;
  color: var(--mh-ink);
  background: var(--mh-bg);
  font-family: var(--site-font-sans, "Nunito Sans", "Segoe UI", Arial, sans-serif);
}

.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}

.home-page a,
.home-page button,
.home-page input {
  letter-spacing: 0;
}

.mh-shell {
  width: min(1440px, calc(100% - 20px));
  margin-inline: auto;
}

.mh-hero {
  position: relative;
  margin-top: 10px;
  overflow: hidden;
  border-block: 1px solid rgba(8, 145, 178, 0.16);
  background:
    linear-gradient(115deg, rgba(8, 145, 178, 0.1), rgba(255, 255, 255, 0.96) 48%, rgba(101, 163, 13, 0.1)),
    #ffffff;
}

.mh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(8, 145, 178, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 145, 178, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}

.mh-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 52px;
  min-height: 620px;
  padding-block: 54px;
}

.mh-eyebrow,
.mh-section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #087c99;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.mh-eyebrow::before,
.mh-section-heading__eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--mh-brand), var(--mh-accent));
}

.mh-hero__copy {
  max-width: 720px;
}

.mh-hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--mh-ink);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.mh-hero h1 span {
  color: #087c99;
}

.mh-hero__description {
  max-width: 650px;
  margin: 20px 0 24px;
  color: var(--mh-muted);
  font-size: 18px;
  font-weight: 550;
  line-height: 1.6;
}

.mh-hero-search {
  max-width: 680px;
}

.mh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mh-button,
.mh-section-link,
.mh-final-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid rgba(8, 145, 178, 0.22);
  border-radius: 7px;
  color: var(--mh-ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mh-button--primary {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(115deg, #078aa9, #4d9410);
  box-shadow: 0 12px 26px rgba(8, 145, 178, 0.2);
}

.mh-button:hover,
.mh-button:focus-visible,
.mh-section-link:hover,
.mh-section-link:focus-visible,
.mh-final-actions a:hover,
.mh-final-actions a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(8, 145, 178, 0.52);
  box-shadow: 0 12px 24px rgba(31, 72, 105, 0.14);
  outline: 2px solid transparent;
}

.mh-hero__visual {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 440px;
  perspective: 1200px;
  isolation: isolate;
}

.mh-discovery-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5;
  min-height: 300px;
  overflow: hidden;
  isolation: isolate;
  contain: layout paint style;
}

.mh-discovery-scene canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
  opacity: 0;
  transition: opacity 260ms ease;
}

.mh-discovery-scene.is-ready canvas {
  opacity: 1;
}

.mh-discovery-scene__fallback {
  position: absolute;
  inset: 8% 5%;
  z-index: 1;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mh-discovery-scene.is-ready .mh-discovery-scene__fallback {
  opacity: 0;
  visibility: hidden;
}

.mh-scene-fallback-device,
.mh-scene-fallback-controller,
.mh-scene-fallback-tile {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 145, 178, 0.22);
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(31, 72, 105, 0.13);
}

.mh-scene-fallback-device {
  inset: 46% 21% 9%;
  border-radius: 22px;
  background: linear-gradient(145deg, #e8fbff, #ffffff 46%, #edf8e4);
  transform: perspective(700px) rotateX(54deg) rotateZ(-3deg);
}

.mh-scene-fallback-controller {
  inset: 18% 27% 40%;
  border-radius: 40% 40% 32% 32%;
  background: linear-gradient(150deg, #ffffff, #e8f3f6);
  transform: rotate(-2deg);
}

.mh-scene-fallback-tile {
  width: 15%;
  aspect-ratio: 1;
  border-radius: 18px;
  color: #ffffff;
  font-size: clamp(15px, 3vw, 24px);
  font-weight: 800;
}

.mh-scene-fallback-tile--apps { top: 8%; left: 8%; background: #0891b2; transform: rotate(-10deg); }
.mh-scene-fallback-tile--play { top: 10%; right: 7%; background: #65a30d; transform: rotate(9deg); }
.mh-scene-fallback-tile--store { bottom: 8%; left: 6%; background: #7c3aed; transform: rotate(8deg); }
.mh-scene-fallback-tile--articles { right: 5%; bottom: 7%; background: #f59e0b; transform: rotate(-8deg); }

.mh-discovery-scene[data-scene-state="failed"]::after {
  content: "Explore apps, games, and guides";
  position: absolute;
  right: 50%;
  bottom: 7%;
  z-index: 3;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--mh-muted);
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  transform: translateX(50%);
  white-space: nowrap;
}

.mh-quick-nav {
  padding-block: 10px;
  background: #ffffff;
  border-bottom: 1px solid var(--mh-line);
}

.mh-quick-nav__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--mh-gap);
}

.mh-quick-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 11px;
  min-height: 72px;
  padding: 10px;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  color: var(--mh-ink);
  background: #ffffff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mh-quick-link:hover,
.mh-quick-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(8, 145, 178, 0.4);
  box-shadow: 0 14px 28px rgba(31, 72, 105, 0.12);
  outline: 0;
}

.mh-quick-link__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(8, 145, 178, 0.14), rgba(101, 163, 13, 0.14));
}

.mh-quick-link__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.mh-quick-link strong,
.mh-quick-link small {
  display: block;
}

.mh-quick-link strong {
  font-size: 15px;
  font-weight: 800;
}

.mh-quick-link small {
  margin-top: 2px;
  color: var(--mh-muted);
  font-size: 12px;
  font-weight: 600;
}

.mh-quick-link__arrow {
  color: var(--mh-brand);
  font-size: 23px;
  text-align: center;
}

.mh-content-section,
.mh-articles,
.mh-support,
.mh-faq,
.mh-final {
  padding-block: 58px;
  border-bottom: 1px solid var(--mh-line);
}

.mh-content-section--apps {
  background: #f5fbfc;
}

.mh-content-section--playgames {
  background: #ffffff;
}

.mh-content-section--topgames {
  background: #f7fbf4;
}

.mh-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.mh-section-heading h2 {
  margin: 0;
  color: var(--mh-ink);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.16;
}

.mh-section-heading p {
  max-width: 700px;
  margin: 8px 0 0;
  color: var(--mh-muted);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.55;
}

.mh-section-heading__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.mh-result-count {
  color: var(--mh-muted);
  font-size: 13px;
  font-weight: 700;
}

body.homepage-v2 .mh-section-link {
  position: relative;
  gap: 9px;
  overflow: hidden;
  border-color: rgba(5, 118, 140, 0.35);
  color: #ffffff;
  background: linear-gradient(115deg, #078aa9 0%, #138f91 52%, #4d9410 100%);
  box-shadow: 0 10px 22px rgba(8, 130, 151, 0.2);
}

body.homepage-v2 .mh-section-link::after {
  content: "\2192";
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 7px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  font-size: 15px;
  line-height: 1;
}

.mh-section-view-all {
  display: none;
}

.mh-category-chips {
  display: flex;
  gap: 7px;
  margin: 0 0 6px;
  padding: 6px 4px 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(8, 145, 178, 0.35) transparent;
}

.mh-category-chip {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(8, 145, 178, 0.2);
  border-radius: 999px;
  color: #41546a;
  background: rgba(255, 255, 255, 0.9);
  font: 750 13px/1 var(--site-font-sans, "Nunito Sans", sans-serif);
  cursor: pointer;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.mh-category-chip:hover,
.mh-category-chip:focus-visible {
  border-color: rgba(8, 145, 178, 0.5);
  transform: translateY(-1px);
  outline: 2px solid rgba(8, 145, 178, 0.15);
  outline-offset: 1px;
}

.mh-category-chip.is-selected {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(110deg, #078aa9, #4d9410);
  box-shadow: 0 8px 18px rgba(8, 145, 178, 0.18);
}

.mh-content-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: var(--mh-gap);
  min-height: 260px;
}

.mh-content-grid.is-updating {
  animation: mh-grid-in 240ms ease both;
}

.mh-content-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  color: var(--mh-ink);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(31, 72, 105, 0.08);
  text-decoration: none;
  transform: translateZ(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mh-content-card:hover,
.mh-content-card:focus-visible {
  z-index: 1;
  transform: translateY(-5px);
  border-color: rgba(8, 145, 178, 0.45);
  box-shadow: 0 18px 34px rgba(31, 72, 105, 0.16);
  outline: 0;
}

.mh-content-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eef7f7;
}

.mh-content-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.mh-content-card:hover .mh-content-card__media img,
.mh-content-card:focus-visible .mh-content-card__media img {
  transform: scale(1.035);
}

.mh-content-card--apps .mh-content-card__media {
  padding: 0;
  background: linear-gradient(145deg, rgba(8, 145, 178, 0.1), rgba(101, 163, 13, 0.08));
}

.mh-content-card--apps .mh-content-card__media img {
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.mh-content-card--topgames .mh-content-card__media {
  padding: 0;
  background: #f1f8ed;
}

.mh-content-card--topgames .mh-content-card__media img {
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.mh-content-card__body {
  display: flex;
  min-height: 106px;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 10px;
}

.mh-content-card__category {
  display: block;
  overflow: hidden;
  color: #087c99;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-content-card--topgames .mh-content-card__category {
  color: #527f13;
}

.mh-content-card__title {
  display: -webkit-box;
  min-height: 38px;
  margin-top: 4px;
  overflow: hidden;
  color: var(--mh-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mh-content-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 6px;
  margin: auto -10px -10px;
  padding: 6px 10px;
  border-top: 1px solid rgba(34, 76, 104, 0.1);
  color: #40566b;
  background: #f7fbfc;
  font-size: 11px;
  font-weight: 800;
}

.mh-content-card__action span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 6px;
  color: var(--mh-brand);
  background: rgba(8, 145, 178, 0.1);
  font-size: 14px;
  line-height: 1;
  transition: transform 160ms ease;
}

.mh-content-card--topgames .mh-content-card__action span {
  color: #527f13;
  background: rgba(101, 163, 13, 0.11);
}

.mh-content-card:hover .mh-content-card__action span,
.mh-content-card:focus-visible .mh-content-card__action span {
  transform: translateX(3px);
}

.mh-card-skeleton {
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background: #ffffff;
}

.mh-card-skeleton span {
  display: block;
  width: calc(100% - 24px);
  height: 12px;
  margin: 11px 12px;
  border-radius: 4px;
  background: #e7f0f3;
  animation: mh-skeleton 1.35s ease-in-out infinite alternate;
}

.mh-card-skeleton .mh-card-skeleton__media {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 0;
}

.mh-card-skeleton span:last-child {
  width: 58%;
}

.mh-section-empty {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 260px;
  gap: 8px;
  padding: 30px;
  border: 1px dashed rgba(8, 145, 178, 0.34);
  border-radius: 8px;
  color: var(--mh-muted);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.mh-section-empty strong {
  color: var(--mh-ink);
  font-size: 18px;
}

.mh-section-empty button,
.mh-section-empty a {
  min-height: 40px;
  margin-top: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(8, 145, 178, 0.3);
  border-radius: 7px;
  color: #087c99;
  background: #ffffff;
  font: 800 13px/1.2 var(--site-font-sans, "Nunito Sans", sans-serif);
  text-decoration: none;
  cursor: pointer;
}

.mh-articles {
  background: #ffffff;
}

.mh-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  gap: var(--mh-gap);
}

.mh-article-feature,
.mh-article-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  color: var(--mh-ink);
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 9px 22px rgba(31, 72, 105, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mh-article-feature:hover,
.mh-article-feature:focus-visible,
.mh-article-card:hover,
.mh-article-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(8, 145, 178, 0.42);
  box-shadow: 0 18px 34px rgba(31, 72, 105, 0.15);
  outline: 0;
}

.mh-article-feature {
  display: grid;
  min-height: 500px;
  grid-template-rows: minmax(280px, 1fr) auto;
}

.mh-article-feature > img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.mh-article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--mh-gap);
}

.mh-article-card {
  display: grid;
  grid-template-rows: 130px minmax(0, 1fr);
}

body.homepage-v2 .mh-article-card > img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.mh-article-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 14px;
}

.mh-article-card__category {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  overflow: hidden;
  border-radius: 999px;
  color: #087c99;
  background: rgba(8, 145, 178, 0.09);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.mh-article-card h3,
.mh-article-card strong {
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  color: var(--mh-ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mh-article-feature h3 {
  font-size: 25px;
}

.mh-article-card__description {
  display: -webkit-box;
  margin-top: 7px;
  overflow: hidden;
  color: var(--mh-muted);
  font-size: 13px;
  font-weight: 550;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mh-article-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  color: #087c99;
  font-size: 12px;
  font-weight: 800;
}

.mh-support {
  background: #f4fafc;
}

.mh-bento {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-areas:
    "intro navigation mobile"
    "intro sources guidance";
  gap: var(--mh-gap);
}

.mh-bento-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background: #ffffff;
}

.mh-bento-card--intro {
  grid-area: intro;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(7, 138, 169, 0.96), rgba(58, 125, 19, 0.93)),
    #087c99;
}

.mh-bento-card--navigation { grid-area: navigation; }
.mh-bento-card--mobile { grid-area: mobile; }
.mh-bento-card--sources { grid-area: sources; }
.mh-bento-card--guidance { grid-area: guidance; }

.mh-bento-card__number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 7px;
  color: #087c99;
  background: var(--mh-soft);
  font-size: 13px;
  font-weight: 900;
}

.mh-bento-card--intro .mh-bento-card__number {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.mh-bento-card h2,
.mh-bento-card h3 {
  margin: 0;
  color: inherit;
  font-weight: 800;
  line-height: 1.2;
}

.mh-bento-card h2 { font-size: 32px; }
.mh-bento-card h3 { color: var(--mh-ink); font-size: 19px; }

.mh-bento-card p {
  margin: 10px 0 0;
  color: var(--mh-muted);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.58;
}

.mh-bento-card--intro p {
  color: rgba(255, 255, 255, 0.84);
}

.mh-faq {
  background: #ffffff;
}

.mh-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 42px;
  align-items: start;
}

.mh-faq-intro h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.16;
}

.mh-faq-intro p {
  margin: 12px 0 0;
  color: var(--mh-muted);
  line-height: 1.6;
}

.mh-faq-list {
  display: grid;
  gap: 7px;
}

.mh-faq-item {
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background: #ffffff;
}

.mh-faq-item summary {
  position: relative;
  padding: 17px 48px 17px 18px;
  color: var(--mh-ink);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.mh-faq-item summary::-webkit-details-marker { display: none; }

.mh-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #087c99;
  background: var(--mh-soft);
  font: 800 18px/24px Arial, sans-serif;
  text-align: center;
  transform: translateY(-50%);
}

.mh-faq-item[open] summary::after { content: "-"; }

.mh-faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--mh-muted);
  font-size: 14px;
  line-height: 1.6;
}

.mh-final {
  background: #edf8f6;
}

.mh-final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 34px;
  border: 1px solid rgba(8, 145, 178, 0.2);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(125deg, #087c99, #3e7f16);
  box-shadow: 0 20px 44px rgba(31, 72, 105, 0.16);
}

.mh-final-panel h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
}

.mh-final-panel p {
  max-width: 700px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.mh-final-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 7px;
}

.mh-final-actions a {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes mh-grid-in {
  from { opacity: 0.62; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}

@keyframes mh-skeleton {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

@media (max-width: 1279px) {
  .mh-shell {
    width: min(1180px, calc(100% - 20px));
  }

  .mh-hero__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    gap: 34px;
  }

  .mh-hero h1 { font-size: 46px; }
  .mh-content-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (min-width: 1024px) and (max-width: 1100px) {
  .mh-hero__visual { min-height: 300px; }
  .mh-discovery-scene { max-width: 500px; margin-inline: auto; }
}

@media (max-width: 1023px) {
  .mh-hero__layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    min-height: 570px;
    padding-block: 42px;
  }

  .mh-hero h1 { font-size: 40px; }
  .mh-hero__description { font-size: 16px; }
  .mh-hero__visual { min-height: 260px; }
  .mh-discovery-scene { max-width: 360px; min-height: 240px; margin-inline: auto; }
  .mh-quick-nav__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mh-content-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .mh-article-layout { grid-template-columns: minmax(0, 1fr); }
  .mh-article-feature { min-height: 450px; }
  .mh-article-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .mh-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-areas: "intro intro" "navigation mobile" "sources guidance"; }
  .mh-bento-card--intro { min-height: 300px; }
}

@media (max-width: 767px) {
  .home-page { --mh-gap: 7px; }
  .mh-shell { width: calc(100% - 14px); }
  .mh-hero { margin-top: 7px; }
  .mh-hero::before { opacity: 0.18; background-size: 34px 34px; }
  .mh-hero__layout {
    width: calc(100% - 28px);
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    min-height: 0;
    padding-block: 34px 28px;
  }
  .mh-hero__copy { max-width: none; }
  .mh-hero h1 { font-size: 36px; line-height: 1.08; }
  .mh-hero__description { margin: 15px 0 18px; font-size: 15px; line-height: 1.55; }
  .mh-hero__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mh-button { min-height: 42px; padding: 9px 10px; font-size: 12px; text-align: center; }
  .mh-hero__visual { min-height: 0; }
  .mh-discovery-scene {
    width: calc(100% - 12px);
    max-width: none;
    min-height: 0;
    margin-inline: auto;
    aspect-ratio: 1.5;
  }
  .mh-quick-nav { padding-block: 7px; }
  .mh-quick-link { grid-template-columns: 42px minmax(0, 1fr) 18px; min-height: 64px; padding: 7px; gap: 8px; }
  .mh-quick-link__icon { width: 42px; height: 42px; }
  .mh-quick-link__icon img { width: 26px; height: 26px; }
  .mh-quick-link strong { font-size: 13px; }
  .mh-quick-link small { display: none; }
  .mh-content-section,
  .mh-articles,
  .mh-support,
  .mh-faq,
  .mh-final { padding-block: 36px; }
  .mh-content-section,
  .mh-articles { padding-block: 30px 7px; }
  .mh-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    margin-bottom: 14px;
  }
  .mh-section-heading > :first-child { min-width: 0; width: 100%; }
  .mh-section-heading h2,
  .mh-faq-intro h2 { font-size: 27px; }
  .mh-section-heading p { font-size: 14px; }
  .mh-section-heading__actions {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }
  .mh-section-heading > .mh-section-link { justify-self: end; }
  .mh-section-link { min-height: 38px; padding: 8px 11px; font-size: 12px; }
  .mh-result-count { font-size: 11px; }
  .mh-section-view-all:not(:empty) {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 7px;
  }
  .mh-section-view-all .mh-section-link {
    width: min(100%, 260px);
    min-height: 44px;
    padding: 9px 10px 9px 15px;
    line-height: 1.25;
    text-align: center;
  }
  .mh-category-chips { margin-bottom: 0; }
  .mh-category-chip { min-height: 36px; padding: 7px 12px; font-size: 12px; }
  .mh-content-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mh-content-card--apps .mh-content-card__media { padding: 0; }
  .mh-content-card--topgames .mh-content-card__media { padding: 0; }
  .mh-content-card__body { min-height: 82px; padding: 6px; }
  .mh-content-card__category { font-size: 9px; }
  .mh-content-card__title { min-height: 29px; margin-top: 3px; font-size: 11px; line-height: 1.25; }
  .mh-content-card__action {
    min-height: 27px;
    gap: 4px;
    margin: auto -6px -6px;
    padding: 5px 6px;
    border-top: 1px solid rgba(34, 76, 104, 0.1);
    color: #40566b;
    background: #f7fbfc;
    font-size: 9px;
  }
  .mh-content-card__action span {
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border-radius: 4px;
    background: rgba(8, 145, 178, 0.1);
    font-size: 12px;
    line-height: 1;
  }
  .mh-content-card--topgames .mh-content-card__action span {
    color: #527f13;
    background: rgba(101, 163, 13, 0.11);
  }
  .mh-card-skeleton { min-height: 260px; }
  .mh-article-feature { min-height: 420px; grid-template-rows: 240px auto; }
  .mh-article-feature > img { min-height: 240px; }
  .mh-article-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mh-article-card { grid-template-rows: 110px minmax(0, 1fr); }
  body.homepage-v2 .mh-article-card > img { height: 110px; }
  .mh-article-card__copy { padding: 10px; }
  .mh-article-feature h3 { font-size: 21px; }
  .mh-article-card__description { display: none; }
  .mh-article-feature .mh-article-card__description {
    display: -webkit-box;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .mh-bento { grid-template-columns: minmax(0, 1fr); grid-template-areas: "intro" "navigation" "mobile" "sources" "guidance"; }
  .mh-bento-card { min-height: 150px; padding: 19px; }
  .mh-bento-card--intro { min-height: 260px; }
  .mh-bento-card h2 { font-size: 27px; }
  .mh-faq-layout { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .mh-final-panel { grid-template-columns: minmax(0, 1fr); gap: 22px; padding: 24px 18px; }
  .mh-final-panel h2 { font-size: 27px; }
  .mh-final-actions { width: 100%; }
}

@media (max-width: 359px) {
  .mh-hero h1 { font-size: 31px; }
  .mh-hero__actions { grid-template-columns: minmax(0, 1fr); }
  .mh-hero__visual { min-height: 0; }
  .mh-quick-link { grid-template-columns: 38px minmax(0, 1fr); }
  .mh-quick-link__icon { width: 38px; height: 38px; }
  .mh-quick-link__arrow { display: none; }
  .mh-section-heading { gap: 10px; }
  .mh-content-card__title { font-size: 10px; }
  .mh-content-card__action { font-size: 8px; }
  .mh-final-actions { grid-template-columns: minmax(0, 1fr); }
}

@media (hover: none), (pointer: coarse) {
  .mh-content-card:hover,
  .mh-article-feature:hover,
  .mh-article-card:hover,
  .mh-quick-link:hover,
  .mh-button:hover,
  .mh-section-link:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Homepage-only premium header */
body.homepage-v2 .mh-site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 10px 0 0 !important;
  background: transparent;
}

body.homepage-v2 .mh-header-container {
  width: min(1440px, calc(100% - 20px)) !important;
  min-height: 76px;
  padding: 8px 9px 8px 17px;
  gap: 16px;
  overflow: visible;
  border: 1px solid rgba(24, 92, 118, 0.17);
  border-radius: 18px;
  background: linear-gradient(120deg, #ffffff 0%, #fbfeff 58%, #f5fbf7 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 30px rgba(31, 72, 105, 0.11);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.homepage-v2 .mh-header-container::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: -1px;
  width: 4px;
  border-radius: 0 5px 5px 0;
  pointer-events: none;
  background: linear-gradient(180deg, #0891b2, #14b8a6 54%, #65a30d);
}

body.homepage-v2 .mh-header-container::after {
  display: none;
}

body.homepage-v2 .mh-header-container .logo {
  min-height: 54px;
  padding: 4px 7px 4px 3px;
  border-radius: 12px;
  transition: transform 180ms ease;
}

body.homepage-v2 .mh-header-container .logo:hover,
body.homepage-v2 .mh-header-container .logo:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

body.homepage-v2 .mh-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: #102033;
  text-decoration: none;
}

body.homepage-v2 .mh-brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: linear-gradient(145deg, #087f9b 0%, #0ca78f 58%, #65a30d 100%);
  box-shadow: 0 8px 18px rgba(15, 159, 143, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  color: #fff;
  font-size: 21px;
  font-weight: 850;
  line-height: 1;
}

body.homepage-v2 .mh-brand-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
}

body.homepage-v2 .mh-brand-mark::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 8px;
  height: 3px;
  border-radius: 999px;
  background: #d9f99d;
}

body.homepage-v2 .mh-brand-copy {
  display: grid;
  gap: 3px;
}

body.homepage-v2 .mh-brand-name {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

body.homepage-v2 .mh-brand-name span {
  color: #0f948c;
}

body.homepage-v2 .mh-brand-tagline {
  color: #617287;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

body.homepage-v2 .mh-header-container .logo img,
body.homepage-v2 .mh-header-container .logo-text {
  max-width: 164px;
  max-height: 42px;
}

body.homepage-v2 .mh-header-container .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  min-width: 0;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.homepage-v2 .mh-header-container .nav-menu a {
  position: relative;
  min-height: 48px;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #33485f;
  background: transparent;
  box-shadow: none;
  font-size: 12.5px;
  font-weight: 750;
  white-space: nowrap;
}

body.homepage-v2 .mh-header-container .nav-menu a::before {
  display: none;
}

body.homepage-v2 .mh-header-container .nav-menu a img {
  display: block;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 8px;
  box-shadow: 0 5px 12px rgba(31, 72, 105, 0.14);
}

body.homepage-v2 .mh-header-container .nav-menu .mh-nav-utility {
  min-height: 42px;
  padding-inline: 9px;
  color: #52657a;
  font-size: 12px;
}

body.homepage-v2 .mh-nav-divider {
  width: 1px;
  height: 26px;
  flex: 0 0 1px;
  margin: 0 5px;
  background: rgba(34, 76, 104, 0.13);
}

body.homepage-v2 .mh-header-container .nav-menu a:hover,
body.homepage-v2 .mh-header-container .nav-menu a:focus-visible {
  color: #102033;
  border-color: rgba(8, 145, 178, 0.18);
  background: #eef9fa;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 7px 16px rgba(31, 72, 105, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.mh-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex: 0 0 auto;
}

.mh-header-search,
.mh-header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  font: 800 12px/1 var(--site-font-sans, "Nunito Sans", sans-serif);
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.mh-header-search {
  min-width: 48px;
  padding: 0 13px;
  border: 1px solid rgba(8, 145, 178, 0.2);
  color: #126b80;
  background: #f2fafb;
}

.mh-header-search__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.mh-header-search__icon::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.mh-header-search__icon::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 13px;
  width: 6px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.mh-header-cta {
  padding: 0 10px 0 16px;
  border: 1px solid transparent;
  color: #ffffff !important;
  background: linear-gradient(115deg, #078aa9, #4d9410);
  box-shadow: 0 10px 22px rgba(8, 145, 178, 0.21);
}

.mh-header-search:hover,
.mh-header-search:focus-visible,
.mh-header-cta:hover,
.mh-header-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(8, 145, 178, 0.4);
  box-shadow: 0 10px 22px rgba(31, 72, 105, 0.16);
  outline: 2px solid transparent;
}

.mh-header-cta span:last-child {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease;
}

.mh-header-cta:hover span:last-child,
.mh-header-cta:focus-visible span:last-child {
  transform: translateX(3px);
}

body.homepage-v2 .mh-header-container .mobile-icons button {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(8, 145, 178, 0.16);
}

body.homepage-v2 .mh-header-container .mobile-icons button[aria-expanded="true"]::before {
  top: 21px;
  box-shadow: none;
  transform: translateX(-50%) rotate(45deg);
}

body.homepage-v2 .mh-header-container .mobile-icons button[aria-expanded="true"]::after {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

body.homepage-v2 .mh-mobile-menu {
  display: grid !important;
  position: fixed;
  top: 84px;
  left: 50%;
  z-index: 89;
  width: min(560px, calc(100% - 14px));
  max-height: calc(100dvh - 94px);
  margin: 0;
  padding: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(8, 145, 178, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 54px rgba(16, 32, 51, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -9px) scale(0.985);
  transform-origin: top center;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

body.homepage-v2 .mh-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

body.homepage-v2 .mh-mobile-menu > [data-site-search] {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

body.homepage-v2 .mh-mobile-menu > a {
  position: relative;
  min-height: 46px;
  justify-content: flex-start;
  gap: 9px;
  padding: 9px 11px;
  border: 1px solid rgba(34, 76, 104, 0.1);
  border-radius: 10px;
  color: #263b52;
  background: #f7fbfc;
  box-shadow: none;
  font-size: 13px;
  font-weight: 750;
}

body.homepage-v2 .mh-mobile-menu > a::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 3px;
  background: linear-gradient(135deg, #0891b2, #65a30d);
}

body.homepage-v2 .mh-mobile-menu > a:hover,
body.homepage-v2 .mh-mobile-menu > a:focus-visible {
  color: #102033;
  border-color: rgba(8, 145, 178, 0.3);
  background: #eefafa;
  box-shadow: none;
  transform: none;
  outline: none;
}

@media (min-width: 1001px) {
  body.homepage-v2 .mh-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1240px) {
  .mh-header-search {
    width: 48px;
    padding: 0;
  }

  .mh-header-search__label {
    display: none;
  }
}

@media (max-width: 1000px) {
  body.homepage-v2 .mh-site-header {
    padding-top: 7px !important;
  }

  body.homepage-v2 .mh-header-container {
    width: calc(100% - 14px) !important;
    min-height: 60px;
    padding: 7px 8px 7px 12px;
    border-radius: 14px;
  }

  body.homepage-v2 .mh-header-container .nav-menu {
    display: none;
  }

  body.homepage-v2 .mh-header-container .mobile-icons {
    display: flex;
  }

  body.homepage-v2 .mh-header-container .logo img,
  body.homepage-v2 .mh-header-container .logo-text {
    max-width: 150px;
    max-height: 38px;
  }

  body.homepage-v2 .mh-mobile-menu {
    top: 74px;
    max-height: calc(100dvh - 84px);
  }
}

@media (max-width: 520px) {
  body.homepage-v2 .mh-header-container .logo {
    padding-inline: 2px;
  }

  body.homepage-v2 .mh-header-container .logo img,
  body.homepage-v2 .mh-header-container .logo-text {
    max-width: 137px;
    max-height: 36px;
  }

  body.homepage-v2 .mh-brand {
    gap: 7px;
  }

  body.homepage-v2 .mh-brand-mark {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
    border-radius: 11px;
    font-size: 18px;
  }

  body.homepage-v2 .mh-brand-name {
    font-size: 19px;
  }

  body.homepage-v2 .mh-brand-tagline {
    display: none;
  }

  .mh-header-cta {
    display: none;
  }

  .mh-header-actions {
    gap: 5px;
  }

  body.homepage-v2 .mh-mobile-menu {
    grid-template-columns: minmax(0, 1fr);
  }

  body.homepage-v2 .mh-mobile-menu > [data-site-search] {
    grid-column: 1;
  }
}

@media (max-width: 340px) {
  body.homepage-v2 .mh-header-container .logo img,
  body.homepage-v2 .mh-header-container .logo-text {
    max-width: 120px;
  }

  body.homepage-v2 .mh-brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  body.homepage-v2 .mh-brand-name {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mh-header-search,
  .mh-header-cta,
  body.homepage-v2 .mh-header-container .nav-menu a,
  body.homepage-v2 .mh-mobile-menu,
  body.homepage-v2 .mh-header-container .mobile-icons button::before,
  body.homepage-v2 .mh-header-container .mobile-icons button::after {
    transition-duration: 0.01ms !important;
  }
}
