* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #2463eb;
  --blue-dark: #164fc6;
  --ink: #111827;
  --heading: #242424;
  --muted: #6b7280;
  --soft: #f9fafb;
  --line: #e5e7eb;
  --card: #ffffff;
  --green: #14b86a;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  background: var(--soft);
  color: var(--ink);
  font-family: "Instrument Sans", "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.image-load-frame {
  position: relative;
}

.image-load-frame > img.is-image-loading:not(.image-loaded) {
  visibility: hidden;
}

.image-loader-spinner {
  --spinner-size: 34px;
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 50%;
  width: var(--spinner-size);
  height: var(--spinner-size);
  min-width: var(--spinner-size);
  min-height: var(--spinner-size);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  opacity: 0;
  font-style: normal;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.image-loader-spinner.is-positioned {
  opacity: 1;
}

.spinner {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  font-style: normal;
  animation: spinner-plncf9 6s infinite;
}

.spinner::before,
.spinner::after {
  content: "";
  grid-area: 1 / 1;
  border: max(3px, calc(var(--spinner-size) * 0.13)) solid;
  border-radius: 50%;
  border-color: #007aff #007aff #0000 #0000;
  mix-blend-mode: darken;
  animation: spinner-plncf9 1s infinite linear;
}

.spinner::after {
  border-color: #0000 #0000 #dbdcef #dbdcef;
  animation-direction: reverse;
}

@keyframes spinner-plncf9 {
  100% {
    transform: rotate(1turn);
  }
}

.site-header {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.055);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
}

.header-logo img {
  display: block;
  width: 148px;
  height: auto;
}

.header-logo-mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #007aff;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.seo-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 32px 0 48px;
}

.feature-card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.16);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.1));
}

.feature-card .backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.1);
}

.feature-content {
  position: relative;
  z-index: 1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.feature-app {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  margin-bottom: 18px;
}

.feature-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}

.feature-meta,
.feature-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.feature-row {
  margin-top: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.pill.light {
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
}

.pill.blue {
  background: var(--blue);
  color: #fff;
}

.section {
  margin-bottom: 48px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
}

.section-note {
  color: var(--muted);
  font-size: 14px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.app-card {
  min-height: 194px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: #fff;
  padding: 22px 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.app-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 99, 235, 0.28);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.app-card img,
.small-row img,
.detail-icon,
.version-icon {
  object-fit: cover;
  background: #f3f4f6;
}

.app-card img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.app-card h3,
.small-row h3 {
  width: 100%;
  overflow: hidden;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-card p,
.small-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #f59e0b;
  font-weight: 800;
  font-size: 14px;
}

.rating::before {
  content: "★";
  font-size: 13px;
}

.row-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.small-row {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.small-row img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 16px;
}

.small-row .get {
  margin-left: auto;
  padding: 7px 15px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.store-home {
  background: #f6f7fb;
  padding-bottom: 0;
}

.store-home .container {
  width: min(1200px, calc(100% - 40px));
}

.app-showcase-banner {
  width: 100%;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: 58px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 17, 27, 0.9) 0%, rgba(22, 29, 45, 0.84) 38%, rgba(246, 248, 252, 0.96) 38.2%, rgba(246, 248, 252, 0.96) 100%),
    radial-gradient(circle at 18% 22%, rgba(0, 122, 255, 0.32), transparent 24%),
    radial-gradient(circle at 31% 78%, rgba(84, 230, 194, 0.18), transparent 26%),
    #f6f8fc;
  padding: 64px max(46px, calc((100vw - 1200px) / 2)) 58px;
}

.app-showcase-banner::before {
  content: "";
  position: absolute;
  left: max(46px, calc((100vw - 1200px) / 2));
  top: 46px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.app-showcase-banner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
}

.showcase-copy {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.showcase-copy h2 {
  margin-top: 12px;
  color: #fff;
  font-size: 62px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.showcase-copy > p:last-of-type {
  max-width: 450px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.58;
}

.showcase-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.showcase-actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: #0b66e4;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.showcase-actions span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.banner-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 440px;
  margin-top: 34px;
}

.banner-metrics span {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 14px;
}

.banner-metrics strong {
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

.banner-metrics small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.banner-cover-wall {
  position: relative;
  z-index: 2;
  min-height: 500px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cover-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  color: #1d1d1f;
  box-shadow: 0 18px 42px rgba(35, 45, 72, 0.12);
}

.cover-card:nth-child(2),
.cover-card:nth-child(5) {
  transform: translateY(34px);
}

.cover-card img {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.cover-card span {
  display: block;
  margin-top: 18px;
}

.cover-card small {
  display: block;
  overflow: hidden;
  color: #7a808c;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cover-card strong {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 6px;
  color: #1d1d1f;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.12;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cover-card b {
  width: fit-content;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 999px;
  background: #eef1f6;
  color: #007aff;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 900;
}

.cover-card-1 {
  background: linear-gradient(180deg, #fff, #eef7ff);
}

.cover-card-2 {
  background: linear-gradient(180deg, #fff, #eefaf2);
}

.cover-card-3 {
  background: linear-gradient(180deg, #fff, #f3f1ff);
}

.discovery-panel {
  position: relative;
  z-index: 2;
  min-height: 520px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  padding: 24px;
  box-shadow: 0 28px 70px rgba(35, 45, 72, 0.14);
  backdrop-filter: blur(18px);
}

.hero-search {
  min-height: 70px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-radius: 8px;
  background: #fff;
  padding: 0 18px;
  box-shadow: 0 12px 28px rgba(35, 45, 72, 0.08);
}

.hero-search span {
  width: 22px;
  height: 22px;
  border: 3px solid #007aff;
  border-radius: 50%;
  position: relative;
}

.hero-search span::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 9px;
  height: 3px;
  border-radius: 999px;
  background: #007aff;
  transform: rotate(45deg);
}

.hero-search strong {
  overflow: hidden;
  color: #1d1d1f;
  font-size: 18px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-search em {
  min-width: 42px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f0f2f7;
  color: #7d8492;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.category-cloud span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #5d6676;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(35, 45, 72, 0.06);
}

.app-orbit {
  position: relative;
  min-height: 350px;
  margin-top: 22px;
}

.orbit-app {
  position: absolute;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 230px;
  min-height: 86px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 12px 34px;
  box-shadow: 0 16px 34px rgba(35, 45, 72, 0.12);
}

.orbit-app img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.orbit-app strong {
  display: block;
  overflow: hidden;
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.orbit-app small {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: #7a808c;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.orbit-1 {
  left: 4%;
  top: 8%;
}

.orbit-2 {
  right: 5%;
  top: 0;
}

.orbit-3 {
  left: 26%;
  top: 33%;
  transform: scale(1.12);
}

.orbit-4 {
  right: 0;
  top: 38%;
}

.orbit-5 {
  left: 0;
  bottom: 8%;
}

.orbit-6 {
  left: 39%;
  bottom: 0;
}

.orbit-7 {
  right: 7%;
  bottom: 12%;
}

.orbit-8,
.orbit-9 {
  display: none;
}

.phone-stage {
  position: relative;
  z-index: 1;
  min-height: 590px;
  display: block;
}

.phone-card {
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 248px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 44px;
  color: #1d1d1f;
  padding: 36px 20px 22px;
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.65),
    0 24px 64px rgba(35, 45, 72, 0.2);
  transform: translate(-50%, -50%);
}

.phone-card:nth-child(1) {
  z-index: 2;
  transform: translate(calc(-50% - 270px), calc(-50% + 28px)) rotate(-5deg) scale(0.94);
}

.phone-card:nth-child(2) {
  z-index: 4;
  width: 278px;
  min-height: 570px;
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.72),
    0 34px 84px rgba(25, 31, 45, 0.28);
}

.phone-card:nth-child(3) {
  z-index: 3;
  transform: translate(calc(-50% + 258px), calc(-50% + 18px)) rotate(4deg) scale(0.96);
}

.phone-card:nth-child(4) {
  z-index: 1;
  transform: translate(calc(-50% + 476px), calc(-50% - 10px)) rotate(8deg) scale(0.9);
  opacity: 0.96;
}

.phone-speaker {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 84px;
  height: 24px;
  border-radius: 999px;
  background: #090a0c;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  color: rgba(18, 22, 30, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.phone-avatar,
.phone-alert {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.phone-avatar img {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.phone-alert::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff375f;
}

.phone-card h3 {
  margin-top: 24px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.12;
}

.phone-search {
  min-height: 54px;
  display: grid;
  grid-template-columns: 24px 1fr 34px;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0 12px;
}

.phone-search span,
.phone-search b {
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.14);
}

.phone-search span {
  width: 18px;
  height: 18px;
}

.phone-search b {
  width: 34px;
  height: 34px;
}

.phone-search em {
  overflow: hidden;
  color: #8b92a0;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-notice {
  min-height: 70px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  padding: 12px 12px 34px;
}

.phone-notice span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 122, 255, 0.16);
}

.phone-notice img {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.phone-notice strong {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-notice i {
  color: #2f7ff0;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
}

.phone-panel {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  padding: 18px;
}

.phone-panel small {
  color: #7b8190;
  font-size: 12px;
  font-weight: 800;
}

.phone-panel strong {
  overflow: hidden;
  font-size: 17px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-panel button {
  width: fit-content;
  min-height: 32px;
  margin-top: 6px;
  border-radius: 999px;
  background: #007aff;
  color: #fff;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 900;
}

.phone-chips {
  display: flex;
  gap: 8px;
  overflow: hidden;
  margin-top: 18px;
}

.phone-chips span {
  min-width: 74px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  color: #596070;
  font-size: 12px;
  font-weight: 900;
}

.phone-nav {
  width: 170px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: auto auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.phone-nav span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #98a2b3;
}

.tone-sky {
  background: linear-gradient(180deg, #dcecff 0%, #f5f9ff 50%, #dfeeff 100%);
}

.tone-minimal {
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f6 58%, #ffffff 100%);
}

.tone-paper {
  background: linear-gradient(180deg, #f8fafb 0%, #fff 46%, #f1f3f7 100%);
}

.tone-green {
  color: #173d20;
  background: linear-gradient(180deg, #0d441c 0%, #f4f8ef 34%, #fbfff8 100%);
}

.tone-green .phone-status,
.tone-green .phone-top + h3 {
  color: #fff;
}

.tone-green .phone-alert {
  background: rgba(255, 255, 255, 0.22);
}

.store-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 42px 0 20px;
}

.store-date {
  color: #86868b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-hero h2 {
  margin-top: 2px;
  color: #1d1d1f;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.profile-dot {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #4a90ff, #007aff);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 122, 255, 0.22);
}

.feature-stories {
  margin-top: 36px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.story-tile {
  position: relative;
  min-height: 300px;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  padding: 26px;
  box-shadow: 0 18px 42px rgba(35, 45, 72, 0.12);
}

.story-tile h3 {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin-top: 10px;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.08;
}

.story-tile p {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.5;
}

.story-tile img {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 104px;
  height: 104px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.blue-story {
  background: linear-gradient(135deg, #0b72ff 0%, #43d0ff 100%);
}

.green-story {
  background: linear-gradient(135deg, #0c4b1a 0%, #64bc6b 100%);
}

.ink-story {
  background: linear-gradient(135deg, #15171c 0%, #333844 100%);
}

.wide-soft-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 44px 0 0;
  background:
    linear-gradient(90deg, rgba(24, 31, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(249, 250, 251, 0) 0%, rgba(255, 255, 255, 0.9) 16%, rgba(242, 246, 251, 0.92) 82%, rgba(249, 250, 251, 0) 100%);
  background-size: 72px 100%, auto;
  border-top: 0;
  border-bottom: 0;
  padding: 28px 0 0;
}

.wide-soft-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -10%;
  width: min(46vw, 620px);
  background:
    radial-gradient(ellipse at 20% 42%, rgba(0, 122, 255, 0.11), transparent 62%),
    radial-gradient(ellipse at 34% 72%, rgba(88, 204, 138, 0.08), transparent 58%);
  pointer-events: none;
}

.wide-soft-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(42vw, 560px);
  height: 120px;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(0, 122, 255, 0.11) 48% 49%, transparent 49% 100%),
    linear-gradient(135deg, transparent 0 58%, rgba(88, 204, 138, 0.11) 58% 59%, transparent 59% 100%);
  background-size: 28px 28px, 44px 44px;
  opacity: 0.8;
}

.wide-soft-section > .container {
  position: relative;
  z-index: 1;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collection-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 22px;
  box-shadow: 0 12px 28px rgba(35, 45, 72, 0.08);
}

.collection-card span {
  color: #6a7da0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.collection-card h3 {
  max-width: 280px;
  color: #1d1d1f;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.12;
}

.collection-card div {
  display: flex;
  align-items: center;
}

.collection-card img {
  width: 68px;
  height: 68px;
  border: 4px solid #fff;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.collection-card img + img {
  margin-left: -14px;
}

.today-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 22px;
  margin-bottom: 34px;
}

.today-card {
  position: relative;
  isolation: isolate;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.today-card-large {
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(145deg, #0c4ea2 0%, #0b84ff 48%, #67d5ff 100%);
}

.today-card-dark {
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(30, 215, 96, 0.46), transparent 28%),
    linear-gradient(145deg, #101114 0%, #272a31 58%, #111 100%);
}

.editorial-label {
  display: block;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.today-card h3 {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin-top: 8px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.05;
}

.today-card p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.45;
}

.today-card-app {
  position: relative;
  z-index: 2;
  min-height: 74px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  padding: 10px 12px;
  color: #fff;
}

.today-card-app img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.today-card-app strong,
.store-row-copy strong,
.store-shelf-item strong,
.feature-lane strong {
  display: block;
  overflow: hidden;
  color: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.today-card-app small,
.store-row-copy small,
.store-shelf-item small,
.feature-lane small {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.today-art {
  position: absolute;
  z-index: 0;
  right: 28px;
  bottom: 126px;
  width: 164px;
  height: 164px;
  object-fit: cover;
  border-radius: 34px;
  opacity: 0.94;
  transform: rotate(9deg);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.today-art.secondary {
  width: 138px;
  height: 138px;
  bottom: 150px;
  transform: rotate(-8deg);
}

.store-section {
  margin-bottom: 34px;
  padding-top: 4px;
}

.home-screen {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container.store-section.home-screen {
  padding-right: 0;
  padding-bottom: 48px;
  padding-left: 0;
}

.category-section {
  margin-top: 36px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.category-tile {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(35, 45, 72, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(35, 45, 72, 0.12);
}

.category-label {
  color: #007aff;
  font-size: 13px;
  font-weight: 900;
}

.category-tile strong {
  display: block;
  margin-top: 10px;
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.category-tile div {
  display: flex;
  align-items: center;
  margin-top: 18px;
}

.category-tile img {
  width: 48px;
  height: 48px;
  border: 3px solid #fff;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.category-tile img + img {
  margin-left: -12px;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-tile {
  min-height: 154px;
  position: relative;
  border: 1px solid rgba(226, 231, 239, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.9)),
    #fff;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(37, 48, 72, 0.06);
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: auto 16px 0 16px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: #007aff;
  opacity: 0.12;
}

.category-tile:nth-child(1),
.category-tile:nth-child(2) {
  min-height: 214px;
  grid-column: span 2;
  padding: 22px;
}

.category-entertainment {
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 59, 48, 0.14), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fff4f2 100%);
}

.category-productivity {
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 122, 255, 0.15), transparent 34%),
    linear-gradient(135deg, #fff 0%, #eff7ff 100%);
}

.category-social {
  background:
    radial-gradient(circle at 86% 14%, rgba(88, 86, 214, 0.15), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f4f2ff 100%);
}

.category-music {
  background:
    radial-gradient(circle at 86% 14%, rgba(52, 199, 89, 0.15), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f0fff4 100%);
}

.category-tools {
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 149, 0, 0.15), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fff8ed 100%);
}

.category-gaming {
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 45, 85, 0.15), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fff0f5 100%);
}

.category-topline,
.category-tile-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.category-topline em {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #6f7888;
  padding: 0 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(218, 224, 234, 0.72);
}

.category-label {
  color: #007aff;
  font-size: 14px;
  font-weight: 900;
}

.category-tile:nth-child(1) .category-label,
.category-tile:nth-child(2) .category-label {
  font-size: 14px;
  font-weight: 700;
}

.category-tile strong {
  max-width: 86%;
  margin-top: 14px;
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
}

.category-tile:nth-child(1) strong,
.category-tile:nth-child(2) strong {
  max-width: 72%;
  font-size: 18px;
  line-height: 1.35;
}

.category-tile div {
  display: none;
}

.category-icons {
  display: flex;
  align-items: center;
}

.category-tile-foot {
  margin-top: 22px;
}

.category-tile img {
  width: 44px;
  height: 44px;
  border: 3px solid #fff;
  border-radius: 13px;
}

.category-tile:nth-child(1) img,
.category-tile:nth-child(2) img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.category-arrow {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #007aff;
  font-size: 24px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(218, 224, 234, 0.78);
  transition: background 0.2s ease, color 0.2s ease;
}

.category-arrow > span {
  display: inline-block;
  transform: translate(1px, -2px);
  transition: transform 0.2s ease;
}

.category-tile:hover .category-arrow {
  background: #007aff;
  color: #fff;
}

.category-tile:hover .category-arrow > span {
  transform: translate(3px, -2px);
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-tile:nth-child(1),
  .category-tile:nth-child(2) {
    grid-column: span 1;
  }

  .category-tile:nth-child(1) strong,
  .category-tile:nth-child(2) strong {
    max-width: 86%;
    font-size: 15px;
  }

  .category-tile:nth-child(1) img,
  .category-tile:nth-child(2) img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

@media (max-width: 620px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-tile,
  .category-tile:nth-child(1),
  .category-tile:nth-child(2) {
    min-height: 148px;
    padding: 16px;
  }
}

.category-entertainment {
  background: linear-gradient(180deg, #fff, #f0f6ff);
}

.category-productivity {
  background: linear-gradient(180deg, #fff, #f5f1ff);
}

.category-social {
  background: linear-gradient(180deg, #fff, #eef8ff);
}

.category-music {
  background: linear-gradient(180deg, #fff, #effaf2);
}

.category-tools {
  background: linear-gradient(180deg, #fff, #f8f8ee);
}

.category-gaming {
  background: linear-gradient(180deg, #fff, #fff2f1);
}

.category-page {
  background: #f6f7fb;
  padding-bottom: 48px;
}

.category-hero {
  padding: 30px 0 22px;
}

.category-hero h1 {
  margin-top: 6px;
  color: #1d1d1f;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.category-hero p:last-child {
  max-width: 640px;
  margin-top: 14px;
  color: #626773;
  font-size: 14px;
  line-height: 1.55;
}

.category-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 22px;
  border-radius: 8px;
  background: #fff;
  padding: 4px 18px;
  box-shadow: 0 10px 26px rgba(35, 45, 72, 0.06);
}

.category-app-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.category-app-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 8px;
  background: #fff;
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(35, 45, 72, 0.07);
}

.category-app-card img {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.category-app-image-frame {
  display: block;
  width: 82px;
  height: 82px;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.category-app-card > .category-app-image-frame {
  width: 82px;
  min-width: 82px;
  max-width: 82px;
  height: 82px;
  min-height: 82px;
  margin-top: 0;
}

.category-app-image-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.category-app-card span {
  width: 100%;
  min-height: 58px;
  display: block;
  margin-top: 16px;
}

.category-app-card strong {
  display: block;
  overflow: hidden;
  color: #1d1d1f;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-app-card small {
  display: block;
  overflow: hidden;
  margin-top: 6px;
  color: #747b87;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-app-card b {
  min-width: 58px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 999px;
  background: #eef1f6;
  color: #007aff;
  font-size: 12px;
  font-weight: 900;
}

.category-page .store-section {
  margin-bottom: 24px;
}

.category-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.category-link-title {
  margin-bottom: 14px;
  color: #1d1d1f;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.category-link-pill {
  min-height: 80px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(226, 231, 239, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px;
  color: #1d1d1f;
  box-shadow: 0 8px 18px rgba(35, 45, 72, 0.045);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.category-link-pill:hover {
  border-color: rgba(0, 122, 255, 0.32);
  box-shadow: 0 12px 28px rgba(35, 45, 72, 0.09);
  transform: translateY(-2px);
}

.category-link-icon,
.category-link-icon svg {
  width: 48px;
  height: 48px;
}

.category-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.category-link-icon svg {
  display: block;
}

.category-illustration {
  fill: none;
  stroke: #111;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-illustration .blue-fill {
  fill: #2478ff;
  stroke: #2478ff;
}

.category-illustration .blue-line {
  stroke: #2478ff;
}

.category-illustration .blue-dot {
  stroke: #2478ff;
  stroke-width: 8;
}

.category-link-pill span {
  overflow: hidden;
  color: #3f4652;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.social-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
}

.social-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
}

.social-lead-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.58), transparent 18%),
    radial-gradient(circle at 24% 78%, rgba(57, 255, 189, 0.42), transparent 24%),
    radial-gradient(circle at 82% 82%, rgba(0, 45, 255, 0.28), transparent 28%),
    linear-gradient(145deg, #0057ff 0%, #00a3ff 48%, #54e6c2 100%);
  color: #fff;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(0, 92, 255, 0.16);
}

.social-lead-card::before {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 190px;
  height: 190px;
  border: 28px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.social-lead-card::after {
  content: "";
  position: absolute;
  left: -42px;
  bottom: -54px;
  width: 180px;
  height: 180px;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(18deg);
}

.social-lead-card > span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-lead-card img {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  margin-top: 34px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.social-lead-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.social-lead-card p {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  overflow: hidden;
  max-width: 330px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.social-lead-card b {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #007aff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
}

.social-app-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.social-mosaic-item {
  min-height: 154px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  align-items: start;
  gap: 10px 13px;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(35, 45, 72, 0.06);
}

.social-mosaic-item img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.social-mosaic-item strong {
  display: block;
  overflow: hidden;
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-mosaic-item small {
  display: block;
  margin-top: 4px;
  color: #747b87;
  font-size: 12px;
  font-weight: 400;
}

.social-mosaic-item b {
  grid-column: 1 / 2;
  width: fit-content;
  min-width: 58px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  border-radius: 999px;
  background: #eef1f6;
  color: #007aff;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 900;
}

.social-mosaic-item em {
  grid-column: 2 / 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: center;
  justify-self: end;
  color: #7a808c;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.social-mosaic-item em::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 1.6c.55 0 1 .45 1 1v5.25l2.05-2.05a1 1 0 1 1 1.41 1.42l-3.75 3.75a1 1 0 0 1-1.42 0L3.54 7.22A1 1 0 1 1 4.95 5.8L7 7.85V2.6c0-.55.45-1 1-1Zm-4.7 11h9.4a1 1 0 1 1 0 2H3.3a1 1 0 1 1 0-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 1.6c.55 0 1 .45 1 1v5.25l2.05-2.05a1 1 0 1 1 1.41 1.42l-3.75 3.75a1 1 0 0 1-1.42 0L3.54 7.22A1 1 0 1 1 4.95 5.8L7 7.85V2.6c0-.55.45-1 1-1Zm-4.7 11h9.4a1 1 0 1 1 0 2H3.3a1 1 0 1 1 0-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.social-feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.social-feature-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(35, 45, 72, 0.08);
}

.social-feature-1 {
  background: linear-gradient(135deg, #eaf5ff 0%, #ffffff 100%);
}

.social-feature-2 {
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
}

.social-feature-3 {
  background: linear-gradient(135deg, #eef9f1 0%, #ffffff 100%);
}

.social-feature-card > span {
  color: #007aff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-feature-card img {
  width: 82px;
  height: 82px;
  margin-top: 24px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.social-feature-card h3 {
  margin-top: 18px;
  color: #1d1d1f;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.08;
}

.social-feature-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 12px;
  color: #646b78;
  font-size: 14px;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.social-feature-card b,
.social-mini-app b {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 999px;
  background: #eef1f6;
  color: #007aff;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 900;
}

.social-mini-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.social-mini-app {
  min-height: 92px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(35, 45, 72, 0.06);
}

.social-mini-app img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.social-mini-app strong {
  display: block;
  overflow: hidden;
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-mini-app small {
  display: block;
  margin-top: 4px;
  color: #747b87;
  font-size: 12px;
  font-weight: 700;
}

.social-radar {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.14), transparent 23%),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(0, 122, 255, 0.08) 34.4% 34.8%, transparent 35.2%),
    radial-gradient(circle at 50% 50%, transparent 0 47%, rgba(0, 122, 255, 0.07) 47.4% 47.8%, transparent 48.2%),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
  padding: 30px;
  box-shadow: inset 0 0 0 1px rgba(0, 122, 255, 0.08);
}

.social-radar::before,
.social-radar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(0, 122, 255, 0.08);
  transform: translate(-50%, -50%);
}

.social-radar::before {
  width: 1px;
  height: 76%;
}

.social-radar::after {
  width: 76%;
  height: 1px;
}

.social-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 300px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  color: #1d1d1f;
  padding: 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(35, 45, 72, 0.16);
  transform: translate(-50%, -50%);
}

.social-core .editorial-label {
  color: #007aff;
}

.social-core img {
  width: 92px;
  height: 92px;
  margin-top: 18px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.13);
}

.social-core h3 {
  margin-top: 18px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.social-core p {
  margin-top: 12px;
  color: #6a7280;
  font-size: 15px;
  line-height: 1.5;
}

.social-core b {
  min-width: 72px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 999px;
  background: #007aff;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.social-node {
  position: absolute;
  z-index: 2;
  width: 245px;
  min-height: 88px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px;
  box-shadow: 0 16px 34px rgba(35, 45, 72, 0.11);
  backdrop-filter: blur(12px);
}

.social-node img {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.social-node strong {
  display: block;
  overflow: hidden;
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-node small {
  display: block;
  margin-top: 4px;
  color: #727986;
  font-size: 12px;
  font-weight: 700;
}

.social-node-1 {
  left: 7%;
  top: 12%;
}

.social-node-2 {
  right: 8%;
  top: 14%;
}

.social-node-3 {
  left: 10%;
  bottom: 15%;
}

.social-node-4 {
  right: 12%;
  bottom: 13%;
}

.social-node-5 {
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
}

.social-feature {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #0b7cff 0%, #46cdfa 100%);
  color: #fff;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(11, 124, 255, 0.18);
}

.social-feature h3 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin-top: 10px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.social-feature p {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
}

.social-feature img {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 132px;
  height: 132px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
}

.social-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  border-radius: 8px;
  background: #fff;
  padding: 4px 18px;
  box-shadow: 0 10px 26px rgba(35, 45, 72, 0.06);
}

.social-list .store-app-row {
  min-height: 96px;
  grid-template-columns: 24px 58px minmax(0, 1fr) auto;
}

.game-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.game-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  padding: 16px 16px 58px;
  box-shadow: 0 12px 30px rgba(35, 45, 72, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(35, 45, 72, 0.12);
}

.game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.game-card-image-frame {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  min-height: 0;
  margin-top: 0;
}

.game-card-image-frame img {
  width: 100%;
  height: 100%;
}

.game-card > span:not(.game-card-image-frame):not(.game-rating-stars) {
  min-height: 66px;
  display: block;
  margin-top: 16px;
}

.game-card strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: calc(2em * 1.22);
  color: #1d1d1f;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.22;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.game-card small {
  display: block;
  margin-top: 5px;
  color: #767b86;
  font-size: 13px;
  font-weight: 400;
}

.game-card b {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f0f1f5;
  color: #007aff;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 900;
}

.game-card .game-rating-stars {
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  color: #ff9f0a;
  padding: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 1200px) and (min-width: 981px) {
  .games-section .game-board {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 980px) and (min-width: 621px) {
  .games-section .game-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
}

.download-hero {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.26), transparent 28%),
    linear-gradient(135deg, #20242d 0%, #435066 100%);
  color: #fff;
  padding: 28px;
}

.download-hero h3 {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin-top: 10px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.06;
}

.download-hero p {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 700;
}

.download-hero img {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 128px;
  height: 128px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.24);
}

.download-hero-image-frame {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 128px;
  height: 128px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 30px;
}

.download-hero-image-frame img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trending-section {
  position: relative;
  min-height: 560px;
  margin-bottom: 0;
  padding-top: 28px;
  padding-bottom: 40px;
}

.trending-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(29, 29, 31, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(245, 248, 252, 0.9) 18%, rgba(245, 248, 252, 0.9) 82%, rgba(255, 255, 255, 0) 100%);
  background-size: 76px 100%, auto;
  transform: translateX(-50%);
}

.trending-section > * {
  position: relative;
  z-index: 1;
}

.trending-section .store-section-head {
  border-top-color: rgba(97, 115, 137, 0.22);
  margin-bottom: 20px;
}

.trending-section .store-section-head::before {
  width: 108px;
  background: #007aff;
}

.trending-section .download-layout {
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: 16px;
  align-items: stretch;
}

.trending-section .download-hero {
  min-height: 410px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 18%, transparent 18% 100%),
    linear-gradient(145deg, #101820 0%, #204042 56%, #2e6b5f 100%);
  padding: 30px;
}

.trending-section .download-hero::before {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.trending-section .download-hero h3 {
  max-width: 260px;
  font-size: 40px;
}

.trending-section .download-hero img {
  width: 144px;
  height: 144px;
  border-radius: 32px;
}

.trending-section .download-hero-image-frame {
  right: 26px;
  bottom: 46px;
  width: 144px;
  height: 144px;
  border-radius: 32px;
}

.trending-section .trend-chart {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  border: 1px solid rgba(214, 218, 226, 0.7);
  background: rgba(255, 255, 255, 0.76);
  padding: 8px 18px;
  box-shadow: 0 18px 42px rgba(29, 37, 51, 0.08);
}

.trending-section .store-app-row {
  min-height: 98px;
}

.trending-section .store-rank {
  color: #007aff;
}

.trend-chart {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trend-chart .store-app-row:nth-last-child(-n + 3) {
  border-bottom-color: #ececf0;
}

.trend-chart .store-app-row:nth-last-child(-n + 2) {
  border-bottom-color: transparent;
}

.update-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.update-card {
  min-height: 96px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(0, 122, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 8px 14px;
  box-shadow: 0 12px 28px rgba(35, 45, 72, 0.07);
}

.update-card img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.update-copy {
  min-width: 0;
}

.update-copy strong {
  display: block;
  overflow: hidden;
  color: #1d1d1f;
  font-size: 16px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.update-copy small {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 4px;
  color: #6f7888;
  font-size: 13px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.store-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  position: relative;
  border-top: 1px solid rgba(214, 218, 226, 0.92);
  padding: 22px 0 0;
  margin-bottom: 18px;
}

.store-section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 74px;
  height: 2px;
  border-radius: 999px;
  background: #007aff;
}

.section-heading-copy {
  display: grid;
  gap: 7px;
  max-width: 660px;
}

.store-section-head h2 {
  color: #1d1d1f;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.store-section-head p {
  max-width: 620px;
  color: #6f7888;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.store-section-head a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(0, 122, 255, 0.09);
  color: #007aff;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.store-section-head a:hover {
  background: #007aff;
  color: #fff;
  transform: translateY(-1px);
}

.store-chart {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 26px;
  background: #fff;
  border-radius: 8px;
  padding: 2px 18px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.store-chart.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-app-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 26px 60px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ececf0;
  color: #1d1d1f;
}

.store-app-row:nth-last-child(-n + 3) {
  border-bottom-color: transparent;
}

.store-chart.compact .store-app-row:nth-last-child(-n + 2) {
  border-bottom-color: transparent;
}

.store-rank {
  color: #8e8e93;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.store-app-row img {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
}

.store-row-copy {
  min-width: 0;
}

.store-row-copy small,
.store-shelf-item small,
.feature-lane small {
  color: #6e6e73;
}

.store-get {
  min-width: 58px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e9e9ee;
  color: #007aff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.store-get.light {
  background: rgba(255, 255, 255, 0.92);
}

.store-get.dark {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.store-shelf {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(178px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-width: thin;
}

.store-shelf-item {
  min-height: 186px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.store-shelf-item img {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.spotlight-band {
  margin-bottom: 34px;
}

.spotlight-story {
  position: relative;
  min-height: 280px;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 34%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #1d1d1f 0%, #2d3140 52%, #0c0c0d 100%);
  color: #fff;
  padding: 30px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.spotlight-story h2 {
  max-width: 520px;
  margin-top: 8px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
}

.spotlight-story p {
  max-width: 460px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.story-icons {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: flex;
  align-items: center;
}

.story-icons img {
  width: 78px;
  height: 78px;
  border: 4px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.story-icons img + img {
  margin-left: -18px;
}

.feature-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-lane {
  min-height: 86px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.feature-lane img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.12);
}

.update-lane small {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.guide-card {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(214, 222, 232, 0.9);
  padding: 24px 22px 22px;
  box-shadow: 0 18px 46px rgba(38, 52, 74, 0.1);
}

.guide-card::before {
  content: counter(guide);
  counter-increment: guide;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f2f4;
  color: #4f5868;
  font-size: 13px;
  font-weight: 900;
}

.guide-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1d1d1f, #9aa1ad);
}

.guide-grid {
  counter-reset: guide;
}

.guide-card span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  background: #f2f3f5;
  color: #5b6473;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-card h3 {
  max-width: calc(100% - 42px);
  margin-top: 22px;
  color: #1d1d1f;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
}

.guide-card p {
  margin-top: 12px;
  color: #5f6875;
  font-size: 14px;
  line-height: 1.6;
}

.guide-footer-frame {
  width: 100%;
  position: relative;
  margin-top: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(29, 29, 31, 0.045) 0 18%, transparent 18% 100%),
    linear-gradient(245deg, rgba(120, 127, 140, 0.08) 0 16%, transparent 16% 100%),
    linear-gradient(180deg, #f6f7f9 0%, #ffffff 46%, #f3f4f6 100%);
  border-top: 0;
}

.guide-footer-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 220px;
  background:
    linear-gradient(90deg, rgba(29, 29, 31, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0));
  background-size: 76px 100%, auto;
}

.guide-footer-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(29, 29, 31, 0), rgba(29, 29, 31, 0.045));
}

.guide-footer-frame .store-section {
  position: relative;
  z-index: 1;
  min-height: auto;
  margin-bottom: 0;
  padding-top: 48px;
  padding-right: 28px;
  padding-bottom: 46px;
  padding-left: 28px;
}

.guide-footer-frame .store-section-head {
  border-top-color: rgba(0, 122, 255, 0.22);
  margin-bottom: 24px;
}

.guide-footer-frame .store-section-head::before {
  width: 112px;
  background: #007aff;
}

.guide-footer-frame .store-section-head p {
  color: #46627f;
}

.guide-footer-frame .guide-card {
  border-color: rgba(0, 122, 255, 0.16);
  box-shadow: 0 18px 46px rgba(0, 78, 170, 0.1);
}

.guide-footer-frame .guide-card::before {
  background: #eaf4ff;
  color: #006edb;
}

.guide-footer-frame .guide-card::after {
  background: linear-gradient(90deg, #007aff, #8fc8ff);
}

.guide-footer-frame .guide-card span {
  background: #eaf4ff;
  color: #0062c9;
}

.guide-footer-frame .site-footer {
  position: relative;
  z-index: 1;
  background: #15171c;
  border-top: 0;
  backdrop-filter: none;
}

.article-section {
  min-height: auto;
  padding-top: 46px;
  padding-bottom: 50px;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card {
  min-width: 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5ecf5;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(31, 42, 68, 0.055);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.article-card:hover {
  border-color: rgba(0, 122, 255, 0.28);
  box-shadow: 0 10px 24px rgba(31, 42, 68, 0.08);
  transform: translateY(-2px);
}

.article-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  background: #eef5ff;
  margin-bottom: 16px;
}

.article-card-topic {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #edf4ff;
  color: #2463eb;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
}

.article-card h3 {
  margin-top: 16px;
  color: #242424;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.16;
}

.article-card p {
  margin-top: 12px;
  color: #5e6673;
  font-size: 14px;
  line-height: 1.58;
}

.article-section .article-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-card-app {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 0;
  color: #4f5b6a;
  font-size: 13px;
  font-weight: 800;
}

.article-card-app img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

.article-card-app em {
  min-width: 0;
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 840px) minmax(236px, 280px);
  grid-template-areas: "main sidebar";
  align-items: start;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding-bottom: 60px;
}

.article-main {
  grid-area: main;
  width: 100%;
  min-width: 0;
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.article-hero h1 {
  max-width: 760px;
  margin-top: 0;
  color: #242424;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.08;
}

.article-hero p {
  margin-top: 18px;
  color: #5f6875;
  font-size: 16px;
  line-height: 1.78;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  background: #eef5ff;
  margin-top: 22px;
}

.article-pick-list {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.article-pick {
  border-top: 1px solid #e6edf6;
  padding-top: 24px;
}

.article-pick h2 {
  color: #242424;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.2;
}

.article-pick p {
  margin-top: 12px;
  color: #5e6673;
  font-size: 16px;
  line-height: 1.76;
}

.article-pick ul {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  color: #4f5b6b;
  font-size: 15px;
  line-height: 1.55;
  list-style: none;
}

.article-pick li {
  position: relative;
  padding-left: 20px;
}

.article-pick li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2463eb;
}

.article-app-jump {
  min-width: 0;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  border: 1px solid rgba(0, 122, 255, 0.2);
  border-radius: 8px;
  background: #f7fbff;
  padding: 12px;
}

.article-app-jump img {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 5px 12px rgba(15, 23, 42, 0.1);
}

.article-app-jump span {
  min-width: 0;
}

.article-app-jump small,
.article-app-jump em {
  display: block;
  margin-top: 4px;
  color: #6b7482;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.article-app-jump strong {
  display: block;
  overflow: hidden;
  color: #242424;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-app-jump b {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #2463eb;
  color: #fff;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
}

.article-more {
  margin-top: 36px;
  border-top: 1px solid #e6edf6;
  padding-top: 26px;
}

.article-more h2 {
  color: #242424;
  font-size: 22px;
  font-weight: 850;
}

.article-more-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.article-more-grid .article-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  grid-template-rows: repeat(3, auto);
  align-content: center;
  align-items: center;
  gap: 5px 16px;
  padding: 12px;
}

.article-more-grid .article-card-image {
  grid-row: 1 / span 3;
  width: 100%;
  height: 124px;
  aspect-ratio: auto;
  margin-bottom: 0;
}

.article-more-grid .article-card-topic {
  align-self: start;
}

.article-more-grid .article-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 0;
  font-size: 18px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-more-grid .article-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 0;
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-more-grid .article-card-app {
  display: none;
}

@media (max-width: 900px) {
  .article-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "sidebar";
    gap: 18px;
  }

  .article-sidebar {
    position: static;
  }

  .article-more-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 50px;
  }

  .guide-card h3 {
    font-size: 20px;
  }

  body.article-page {
    background: #fff;
  }

  .article-section {
    padding-top: 26px;
    padding-bottom: 34px;
  }

  .article-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-card {
    min-height: auto;
    padding: 18px;
  }

  .article-card h3 {
    font-size: 19px;
  }

  .article-wrap {
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding: 20px 0 42px;
  }

  .article-main {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  .article-hero h1 {
    font-size: 24px;
  }

  .article-hero p,
  .article-pick ul {
    font-size: 16px;
    line-height: 1.66;
  }

  .article-pick p {
    font-size: 16px;
    line-height: 1.66;
  }

  .article-pick h2 {
    font-size: 20px;
  }

  .article-app-jump {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .article-app-jump img {
    width: 64px;
    height: 64px;
    border-radius: 15px;
  }

  .article-app-jump b {
    grid-column: 1 / -1;
    width: 100%;
  }

  .article-more h2 {
    font-size: 20px;
  }

  .article-more-grid .article-card {
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-rows: repeat(2, auto);
    min-height: 0;
    align-content: center;
    gap: 4px 10px;
    padding: 10px;
  }

  .article-more-grid .article-card-image {
    grid-row: 1 / span 2;
    height: 86px;
  }

  .article-more-grid .article-card-topic,
  .article-more-grid .article-card-app {
    display: none;
  }

  .article-more-grid .article-card h3 {
    font-size: 16px;
    -webkit-line-clamp: 1;
  }

  .article-more-grid .article-card p {
    font-size: 12px;
  }

  .detail-recommend-sidebar.article-sidebar {
    padding-left: 0;
    padding-right: 0;
  }
}

.version-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
}

.detail-wrap {
  display: grid;
  grid-template-columns: minmax(0, 840px) minmax(236px, 280px);
  grid-template-areas:
    "main sidebar"
    "bottom bottom";
  align-items: start;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding-bottom: 60px;
}

.version-wrap {
  grid-template-areas: "main sidebar";
}

.detail-main,
.version-main {
  width: min(840px, 100%);
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.detail-wrap > .detail-main,
.detail-wrap > .version-main {
  grid-area: main;
  width: 100%;
}

.version-main-stack {
  grid-area: main;
  display: grid;
  gap: 24px;
  width: 100%;
}

.version-main-stack .version-main,
.version-main-stack .detail-bottom-recommendations {
  grid-area: auto;
  grid-column: auto;
  width: 100%;
}

.version-main-stack .detail-recommend-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-recommend-sidebar {
  grid-area: sidebar;
  isolation: isolate;
  position: static;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.98) 100%),
    radial-gradient(circle at 50% -18%, rgba(0, 122, 255, 0.12), transparent 34%);
  padding: 0 12px 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 12px 26px rgba(36, 52, 78, 0.08);
}

.detail-recommend-sidebar h2,
.detail-bottom-recommendations h2 {
  color: #111827;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.detail-recommend-sidebar h2 {
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  margin: 0 -12px;
  border-bottom: 1px solid rgba(220, 227, 238, 0.95);
  background: rgba(255, 255, 255, 0.82);
  padding: 0 16px;
  color: #242424;
  font-size: 20px;
  text-align: left;
}

.detail-recommend-sidebar h2::before {
  content: "";
  width: 7px;
  height: 22px;
  flex: 0 0 auto;
  margin-right: 10px;
  border-radius: 999px;
  background: #007aff;
}

.detail-recommend-sidebar h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 122, 255, 0.42), transparent 78%);
}

.detail-side-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.detail-side-app {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 0 10px;
  transition: transform 0.18s ease;
}

.detail-side-app:hover {
  transform: translateY(-1px);
}

.detail-side-app img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}

.detail-side-image-frame {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.detail-side-app > .detail-side-image-frame {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-top: 0;
  padding: 0;
}

.detail-side-image-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-side-app span {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 6px;
}

.detail-side-app strong {
  display: block;
  overflow: hidden;
  width: 100%;
  color: #1d1d1f;
  max-width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
  overflow-wrap: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}

.detail-side-app small {
  display: none;
}

.detail-bottom-recommendations {
  grid-area: bottom;
  grid-column: 1 / 2;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.96) 100%);
  padding: 26px;
  box-shadow: 0 10px 24px rgba(28, 45, 72, 0.045);
}

.detail-bottom-recommendations h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #242424;
  font-weight: 800;
}

.detail-bottom-recommendations h2::before {
  content: "";
  width: 6px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #007aff;
}

.detail-recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  margin-top: 20px;
}

.detail-recommend-card {
  position: relative;
  min-width: 0;
  min-height: 104px;
  height: 100%;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  text-align: left;
  box-shadow: 0 4px 9px rgba(31, 45, 72, 0.06);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.detail-recommend-card:hover {
  background: #fff;
  box-shadow: 0 5px 12px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.detail-recommend-grid .detail-recommend-card:nth-child(-n + 3) {
  padding-top: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(0, 122, 255, 0.24),
    0 4px 9px rgba(31, 45, 72, 0.06);
}

.detail-recommend-grid .detail-recommend-card:nth-child(-n + 3)::before {
  content: "HOT";
  position: absolute;
  top: -8px;
  left: -4px;
  z-index: 2;
  min-width: 66px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%, 8px 50%);
  background: linear-gradient(135deg, #09c2ff 0%, #007aff 58%, #5a78ff 100%);
  color: #fff;
  padding: 0 10px 0 23px;
  font-size: 10px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 7px 14px rgba(0, 122, 255, 0.24);
}

.detail-recommend-grid .detail-recommend-card:nth-child(-n + 3)::after {
  content: "";
  position: absolute;
  top: -12px;
  left: -2px;
  z-index: 3;
  width: 26px;
  height: 26px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='18 2 22.9 12 34 13.6 26 21.4 27.9 32.4 18 27.2 8.1 32.4 10 21.4 2 13.6 13.1 12' fill='%23ffffff' stroke='%230096ff' stroke-width='3.6' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.detail-recommend-card img {
  grid-row: 1 / span 2;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 7px 15px rgba(15, 23, 42, 0.1);
}

.detail-recommend-card strong {
  display: -webkit-box;
  grid-column: 2 / 4;
  overflow: hidden;
  width: 100%;
  color: #242424;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.22;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.detail-recommend-card small {
  grid-column: 2;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: #7b8491;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-recommend-card span {
  grid-column: 3;
  justify-self: end;
  min-height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 180, 26, 0.14);
  color: #d78a00;
  padding: 0 6px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}

.detail-recommend-card span::before {
  content: "\2605";
  margin-right: 3px;
  color: #ffb41a;
  font-size: 10px;
}

.detail-top,
.version-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.version-top.image-load-frame {
  margin-bottom: 0;
}

.detail-icon,
.version-icon {
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.detail-title,
.version-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #242424;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
}

.safe-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.star-box {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 0;
}

.star-score {
  min-width: 34px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f4f6fa;
  color: #6c6c6c;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 600;
}

.stars {
  color: #ffb41a;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.ad-slot {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 14px;
  border: 0;
  border-radius: 8px;
  color: #dedede;
  padding: 0 8px;
  font-size: 12px;
  line-height: 1.4;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.info-list div {
  min-width: 0;
  border: 1px solid rgba(225, 231, 240, 0.9);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.info-list dt {
  color: #7a8392;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.info-list dd {
  overflow: hidden;
  margin-top: 7px;
  color: #363636;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.download-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 10px;
}

.version-main .download-nav {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}

.detail-download-nav {
  margin: 28px 0 0;
}

.download-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.download-button:hover {
  background: var(--blue-dark);
}

.download-button.disabled {
  background: #e5e8ef;
  color: #8a93a3;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.download-button.disabled .download-button-icon {
  opacity: 0.72;
}

.detail-download-nav .download-button {
  gap: 9px;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
  .detail-download-nav .download-button:not(.disabled):hover {
    background: var(--blue-dark);
    box-shadow: 0 6px 14px rgba(36, 99, 235, 0.22);
    transform: translateY(-2px);
  }
}

.download-button-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.download-button-icon::before,
.download-button-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.download-icon-apk::before {
  display: none;
}

.download-icon-apk::after {
  inset: 0;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M568.888889 426.666667h142.222222l-199.111111 341.333333-199.111111-341.333333h142.222222V56.888889h113.777778v369.777778z m284.444444 426.666666V568.888889h113.777778v398.222222H56.888889V568.888889h113.777778v284.444444h682.666666z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M568.888889 426.666667h142.222222l-199.111111 341.333333-199.111111-341.333333h142.222222V56.888889h113.777778v369.777778z m284.444444 426.666666V568.888889h113.777778v398.222222H56.888889V568.888889h113.777778v284.444444h682.666666z'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: none;
}

.download-icon-apple::before {
  inset: 0;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M899.2768 709.7344c-21.1456 46.8992-31.3344 67.84-58.5728 109.312-37.9904 57.856-91.648 129.9456-158.0544 130.56-58.9824 0.512-74.1376-38.4-154.2656-37.9392-80.0768 0.4096-96.768 38.656-155.8016 38.0928-66.4064-0.6144-117.248-65.6896-155.2896-123.5968-106.3424-161.792-117.4528-351.744-51.8656-452.7616 46.592-71.7312 120.1664-113.7152 189.2864-113.7152 70.4 0 114.688 38.6048 172.8512 38.6048 56.4736 0 90.88-38.7072 172.288-38.7072 61.44 0 126.6688 33.536 173.1072 91.392-152.1664 83.4048-127.488 300.6976 26.3168 358.7584zM638.1056 194.9696c29.5424-37.9904 52.0192-91.5456 43.8784-146.3296-48.3328 3.328-104.8064 34.048-137.8304 74.1376-29.9008 36.352-54.6304 90.2656-45.056 142.6944 52.736 1.5872 107.3152-29.9008 139.008-70.5024z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M899.2768 709.7344c-21.1456 46.8992-31.3344 67.84-58.5728 109.312-37.9904 57.856-91.648 129.9456-158.0544 130.56-58.9824 0.512-74.1376-38.4-154.2656-37.9392-80.0768 0.4096-96.768 38.656-155.8016 38.0928-66.4064-0.6144-117.248-65.6896-155.2896-123.5968-106.3424-161.792-117.4528-351.744-51.8656-452.7616 46.592-71.7312 120.1664-113.7152 189.2864-113.7152 70.4 0 114.688 38.6048 172.8512 38.6048 56.4736 0 90.88-38.7072 172.288-38.7072 61.44 0 126.6688 33.536 173.1072 91.392-152.1664 83.4048-127.488 300.6976 26.3168 358.7584zM638.1056 194.9696c29.5424-37.9904 52.0192-91.5456 43.8784-146.3296-48.3328 3.328-104.8064 34.048-137.8304 74.1376-29.9008 36.352-54.6304 90.2656-45.056 142.6944 52.736 1.5872 107.3152-29.9008 139.008-70.5024z'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: none;
}

.download-icon-apple::after {
  display: none;
}

.download-icon-play::before {
  inset: 0;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M128 874.666667 128 149.333333C128 124.16 142.506667 101.973333 163.84 91.733333L584.106667 512 163.84 932.266667C142.506667 921.6 128 899.84 128 874.666667M717.226667 645.12 258.133333 910.506667 620.373333 548.266667 717.226667 645.12M860.16 461.226667C874.666667 472.746667 885.333333 490.666667 885.333333 512 885.333333 533.333333 875.946667 550.4 861.013333 562.346667L763.306667 618.666667 656.64 512 763.306667 405.333333 860.16 461.226667M258.133333 113.493333 717.226667 378.88 620.373333 475.733333 258.133333 113.493333Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M128 874.666667 128 149.333333C128 124.16 142.506667 101.973333 163.84 91.733333L584.106667 512 163.84 932.266667C142.506667 921.6 128 899.84 128 874.666667M717.226667 645.12 258.133333 910.506667 620.373333 548.266667 717.226667 645.12M860.16 461.226667C874.666667 472.746667 885.333333 490.666667 885.333333 512 885.333333 533.333333 875.946667 550.4 861.013333 562.346667L763.306667 618.666667 656.64 512 763.306667 405.333333 860.16 461.226667M258.133333 113.493333 717.226667 378.88 620.373333 475.733333 258.133333 113.493333Z'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: none;
}

.download-icon-play::after {
  display: none;
}

.security-review {
  margin-top: 26px;
  border-radius: 8px;
  background: rgba(20, 184, 106, 0.06);
  padding: 18px 20px;
}

.version-main .security-review {
  margin-top: 0;
}

.security-review h2 {
  color: #242424;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.security-review p {
  margin-top: 10px;
  color: #636363;
  font-size: 15px;
  line-height: 1.65;
}

.security-review ul {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: #3f4b58;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.security-review li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.security-review li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20, 184, 106, 0.12);
  color: #14b86a;
  font-size: 13px;
  font-weight: 900;
}

.user-reviews {
  margin-top: 36px;
}

.user-reviews h2 {
  margin-bottom: 16px;
  color: #242424;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.user-review-list {
  display: grid;
  gap: 10px;
}

.user-review-list p {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 122, 255, 0.06);
  color: #4f5b6a;
  padding: 13px 14px;
  font-size: 15px;
  line-height: 1.55;
}

.user-review-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: #007aff;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.user-review-list span {
  min-width: 0;
}

.part-title {
  margin: 36px 0 20px;
  font-size: 22px;
  font-weight: 800;
}

.screens {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.screen-shot {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fafc, #eef4ff);
  overflow: hidden;
}

.screen-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  opacity: 1;
}

.screen-shot.is-placeholder img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 20px;
  opacity: 0.86;
}

.article {
  color: #636363;
  font-size: 16px;
  line-height: 1.85;
}

.article p + p {
  margin-top: 20px;
}

.whats-new {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 122, 255, 0.08), rgba(248, 250, 252, 0.96) 54%),
    #fff;
  padding: 22px 24px;
}

.whats-new::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 20px;
  width: 48px;
  height: 34px;
  border-top: 2px solid rgba(0, 122, 255, 0.28);
  border-right: 2px solid rgba(0, 122, 255, 0.28);
  border-radius: 0 8px 0 0;
  background: transparent;
}

.whats-new .part-title {
  position: relative;
  margin-bottom: 12px;
  color: #242424;
  font-size: 21px;
}

.whats-new-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.whats-new-title svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #007aff;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.whats-new p {
  position: relative;
  max-width: 720px;
  color: #4f5b6a;
  font-size: 15px;
  line-height: 1.75;
}

.whats-new h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 12px;
  color: #636363;
}

.feature-list li {
  display: flex;
  gap: 10px;
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--blue);
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  color: #242424;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 700;
}

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

.faq-list summary::after {
  content: "+";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 122, 255, 0.08);
  color: #007aff;
  font-size: 16px;
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  border-top: 1px solid #edf0f4;
  color: #636363;
  padding: 12px 16px 15px;
  font-size: 14px;
  line-height: 1.65;
}

.safe-line {
  margin-top: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.apk-panel {
  margin: 16px 0 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1e63f0, #1750c8);
  color: #fff;
  padding: 16px 18px;
}

.apk-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.apk-panel a.disabled {
  color: #8a93a3;
  cursor: not-allowed;
  pointer-events: none;
}

.apk-panel a.disabled .apk-safe {
  background: #e5e8ef;
  color: #8a93a3;
}

.apk-main {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.apk-panel .download-button-icon {
  width: 22px;
  height: 22px;
}

.apk-panel .download-icon-apk::after {
  width: 22px;
  height: 22px;
}

.apk-label {
  display: block;
  font-size: 12px;
  opacity: 0.86;
}

.apk-title {
  display: block;
  font-size: 20px;
  font-weight: 800;
}

.apk-safe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.top-downloads {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.top-downloads a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #edf0f4;
  padding: 12px 0;
}

.top-downloads h3 {
  font-size: 16px;
  font-weight: 800;
}

.top-downloads p {
  color: var(--muted);
  font-size: 14px;
}

.top-downloads span {
  color: var(--blue);
  font-weight: 900;
}

.similar-list {
  display: grid;
  gap: 14px;
}

.similar-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  padding: 14px;
}

.similar-card img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
}

.similar-card h3 {
  font-size: 18px;
  font-weight: 800;
}

.similar-card p {
  display: -webkit-box;
  overflow: hidden;
  color: #666;
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #111318;
  border-top: 0;
  color: #aab1bd;
  padding: 38px 0 42px;
  font-size: 13px;
}

.site-footer::before {
  display: none;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  grid-template-areas:
    "logo links"
    "intro links"
    "note note";
  align-items: start;
  justify-items: stretch;
  gap: 24px 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.015);
  padding: 24px 26px 20px;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-logo {
  grid-area: logo;
  width: fit-content;
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  display: block;
  width: 156px;
  height: auto;
}

.footer-inner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #007aff, rgba(0, 122, 255, 0.18), transparent);
}

.footer-inner p {
  max-width: 760px;
  color: #aab1bd;
  font-size: 13px;
  line-height: 1.65;
}

.footer-inner p:first-of-type {
  grid-area: intro;
  color: #d5dae3;
  font-size: 14px;
  line-height: 1.7;
}

.footer-inner p:last-of-type {
  grid-area: note;
  max-width: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #87909d;
  padding-top: 16px;
  font-size: 12px;
  line-height: 1.5;
}

.footer-links {
  grid-area: links;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
  justify-content: stretch;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 0;
}

.footer-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #f4f6f8;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.info-page {
  min-height: 70vh;
  background: #f6f7fb;
  padding-bottom: 56px;
}

.info-hero {
  padding: 52px 0 24px;
}

.info-hero h1 {
  margin-top: 8px;
  color: #1d1d1f;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.info-hero p:last-child {
  max-width: 760px;
  margin-top: 16px;
  color: #626b78;
  font-size: 18px;
  line-height: 1.55;
}

.info-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  min-height: 220px;
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(35, 45, 72, 0.07);
}

.info-card h2 {
  color: #1d1d1f;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.info-card p {
  margin-top: 12px;
  color: #626b78;
  font-size: 15px;
  line-height: 1.65;
}

.info-card ul {
  margin-top: 12px;
  padding-left: 20px;
  color: #626b78;
  font-size: 15px;
  line-height: 1.65;
}

.info-card a {
  color: #2463eb;
  font-weight: 800;
}

.info-page-contact {
  background: #f6f8fc;
  padding: 34px 0 72px;
}

.info-page-contact .info-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #fff;
  padding: 40px;
  box-shadow: 0 14px 34px rgba(31, 42, 68, 0.06);
}

.info-page-contact .info-hero::after {
  content: "@";
  position: absolute;
  right: 34px;
  top: 28px;
  color: rgba(36, 99, 235, 0.08);
  font-size: 156px;
  font-weight: 900;
  line-height: 1;
}

.info-page-contact .store-date {
  width: fit-content;
  border-radius: 999px;
  background: #edf4ff;
  padding: 7px 12px;
  color: #2463eb;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.info-page-contact .info-hero h1 {
  max-width: 620px;
  margin-top: 18px;
  color: #242424;
  font-size: 50px;
}

.info-page-contact .info-hero p:last-child {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #566173;
  font-size: 16px;
  line-height: 1.74;
}

.info-page-contact .info-content {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 20px;
}

.info-page-contact .info-card {
  position: relative;
  min-height: auto;
  overflow: hidden;
  border: 1px solid #e0e7f1;
  border-radius: 8px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(31, 42, 68, 0.045);
}

.info-page-contact .info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #2463eb;
}

.info-page-contact .info-card h2 {
  color: #242424;
  font-size: 20px;
  line-height: 1.2;
}

.info-page-contact .info-card p,
.info-page-contact .info-card ul {
  margin-top: 14px;
  color: #5e6673;
  font-size: 15px;
  line-height: 1.66;
}

.info-page-contact .info-card ul {
  padding-left: 18px;
}

.info-page-contact .info-card li + li {
  margin-top: 6px;
}

.info-page-contact .info-card a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  background: #edf4ff;
  padding: 0 14px;
  color: #2463eb;
  font-weight: 900;
}

.info-page-about {
  background: #f4f6fb;
  padding: 0 0 78px;
}

.info-page-about .info-hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px 48px;
  align-items: end;
  border-radius: 0;
  background: linear-gradient(135deg, #111827 0%, #1d2b45 52%, #2463eb 100%);
  padding: 48px max(42px, calc((100vw - 1180px) / 2 + 42px));
  box-shadow: none;
  text-align: left;
}

.info-page-about .info-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 230px;
  height: 230px;
  border: 34px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.info-page-about .store-date {
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 7px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.info-page-about .store-date::after {
  display: none;
}

.info-page-about .info-hero h1 {
  grid-column: 1;
  margin: 18px 0 0;
  color: #fff;
  font-size: 50px;
  line-height: 1.06;
}

.info-page-about .info-hero p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.75;
}

.info-page-about .info-content {
  position: relative;
  display: block;
  max-width: 980px;
  padding-top: 30px;
  counter-reset: about-section;
}

.info-page-about .info-content::before {
  content: "";
  position: absolute;
  top: 56px;
  bottom: 26px;
  left: 37px;
  width: 2px;
  border-radius: 999px;
  background: #d7e2f3;
}

.info-page-about .info-card {
  min-height: auto;
  display: grid;
  position: relative;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 8px 22px;
  align-content: start;
  margin-bottom: 14px;
  border: 1px solid #e1e7f0;
  border-radius: 8px;
  background: #fff;
  padding: 26px 28px;
  box-shadow: 0 8px 20px rgba(31, 42, 68, 0.05);
  counter-increment: about-section;
}

.info-page-about .info-card::before {
  content: counter(about-section, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: #2463eb;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 0 1px #d8e5f8;
}

.info-page-about .info-card h2 {
  grid-column: 2;
  color: #242424;
  font-size: 22px;
  line-height: 1.2;
}

.info-page-about .info-card h2::before {
  display: none;
}

.info-page-about .info-card p {
  grid-column: 2;
  margin-top: 0;
  color: #5e6673;
  font-size: 15px;
  line-height: 1.7;
}

.info-page-about .info-card ul {
  grid-column: 2;
  display: grid;
  gap: 8px;
  margin: 4px 0 2px;
  padding: 0;
  color: #4f5b6b;
  font-size: 15px;
  line-height: 1.55;
  list-style: none;
}

.info-page-about .info-card li {
  position: relative;
  padding-left: 18px;
}

.info-page-about .info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2463eb;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) {
  background: #f4f6fb;
  padding: 0 0 78px;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px 48px;
  align-items: end;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #111827 0%, #1d2b45 52%, #2463eb 100%);
  padding: 48px max(42px, calc((100vw - 1180px) / 2 + 42px));
  box-shadow: none;
  text-align: left;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 230px;
  height: 230px;
  border: 34px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-hero h1 {
  grid-column: 1;
  max-width: none;
  margin: 18px 0 0;
  color: #fff;
  font-size: 50px;
  line-height: 1.06;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-hero p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.75;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-content {
  position: relative;
  display: block;
  max-width: 980px;
  padding-top: 30px;
  counter-reset: about-section;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-content::before {
  content: "";
  position: absolute;
  top: 56px;
  bottom: 26px;
  left: 37px;
  width: 2px;
  border-radius: 999px;
  background: #d7e2f3;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card {
  min-height: auto;
  display: grid;
  position: relative;
  overflow: visible;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 8px 22px;
  align-content: start;
  margin-bottom: 14px;
  border: 1px solid #e1e7f0;
  border-radius: 8px;
  background: #fff;
  padding: 26px 28px;
  box-shadow: 0 8px 20px rgba(31, 42, 68, 0.05);
  counter-increment: about-section;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card::before {
  content: counter(about-section, decimal-leading-zero);
  position: static;
  grid-column: 1;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: #2463eb;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 0 1px #d8e5f8;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card h2 {
  grid-column: 2;
  color: #242424;
  font-size: 22px;
  line-height: 1.2;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card p,
:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card ul {
  grid-column: 2;
  margin-top: 0;
  color: #5e6673;
  font-size: 15px;
  line-height: 1.7;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 2px;
  padding: 0;
  color: #4f5b6b;
  line-height: 1.55;
  list-style: none;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card li {
  position: relative;
  padding-left: 18px;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2463eb;
}

:is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  width: fit-content;
  border-radius: 999px;
  background: #edf4ff;
  padding: 0 14px;
  color: #2463eb;
  font-weight: 900;
}

@media (max-width: 900px) {
  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) {
    padding: 0 0 48px;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-hero h1 {
    font-size: 38px;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-hero p:last-child {
    grid-column: 1;
    grid-row: auto;
    font-size: 15px;
    line-height: 1.68;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-content {
    padding-top: 16px;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-content::before {
    left: 31px;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 20px;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card h2 {
    font-size: 20px;
  }

  .info-page-about .info-hero p:last-child {
    grid-column: 1;
    grid-row: auto;
    font-size: 15px;
    line-height: 1.68;
  }

  .info-page-about .info-content {
    padding-top: 16px;
  }

  .info-page-about .info-content::before {
    left: 31px;
  }

  .info-page-about .info-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 20px;
  }

  .info-page-about .info-card h2 {
    font-size: 20px;
  }

  .detail-wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "sidebar"
      "bottom";
    gap: 18px;
  }

  .version-wrap {
    grid-template-areas:
      "main"
      "sidebar";
  }

  .detail-main,
  .version-main {
    order: 1;
  }

  .detail-recommend-sidebar {
    position: static;
    order: 2;
  }

  .detail-bottom-recommendations {
    order: 3;
    margin-top: 16px;
  }

  .detail-recommend-sidebar h2,
  .detail-bottom-recommendations h2 {
    font-size: 20px;
  }

  .detail-side-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-recommend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid,
  .app-grid,
  .row-list,
  .download-nav,
  .info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .today-grid,
  .store-chart,
  .store-chart.compact,
  .feature-lanes {
    grid-template-columns: 1fr;
  }

  .store-app-row:nth-last-child(-n + 3) {
    border-bottom-color: #ececf0;
  }

  .store-app-row:last-child {
    border-bottom-color: transparent;
  }

  .today-card {
    min-height: 390px;
  }

  .app-showcase-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(13, 17, 27, 0.94) 0%, rgba(20, 27, 42, 0.9) 44%, rgba(246, 248, 252, 0.96) 44.2%, rgba(246, 248, 252, 0.96) 100%),
      radial-gradient(circle at 22% 18%, rgba(0, 122, 255, 0.28), transparent 28%),
      #f6f8fc;
    padding: 44px 20px 42px;
  }

  .app-showcase-banner::before {
    inset: auto -120px -180px auto;
    width: 360px;
    height: 360px;
  }

  .showcase-copy {
    max-width: 720px;
  }

  .showcase-copy h2 {
    font-size: 46px;
  }

  .banner-cover-wall {
    min-height: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 8px;
  }

  .cover-card,
  .cover-card:nth-child(n) {
    min-height: 220px;
    transform: none;
  }

  .discovery-panel {
    min-height: 500px;
  }

  .app-orbit {
    min-height: 320px;
  }

  .orbit-app {
    width: 216px;
  }

  .story-grid,
  .collection-grid,
  .guide-grid,
  .info-content {
    grid-template-columns: 1fr;
  }

  .guide-footer-frame .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .category-app-grid {
    grid-template-columns: 1fr;
  }

  .category-app-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .social-layout,
  .download-layout {
    grid-template-columns: 1fr;
  }

  .trending-section {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 32px;
  }

  .trending-section .download-layout {
    grid-template-columns: 1fr;
  }

  .trending-section .download-hero {
    min-height: 330px;
  }

  .social-feature-grid {
    grid-template-columns: 1fr;
  }

  .social-showcase {
    grid-template-columns: 1fr;
  }

  .social-app-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-radar {
    min-height: 760px;
  }

  .social-core {
    top: 44%;
  }

  .social-node-1 {
    left: 4%;
    top: 6%;
  }

  .social-node-2 {
    right: 4%;
    top: 16%;
  }

  .social-node-3 {
    left: 4%;
    bottom: 18%;
  }

  .social-node-4 {
    right: 4%;
    bottom: 8%;
  }

  .game-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .home-screen {
    min-height: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-hero {
    padding: 20px;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-hero h1 {
    font-size: 31px;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-hero p:last-child {
    font-size: 14px;
    line-height: 1.64;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-content::before {
    left: 27px;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 16px 14px;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card::before,
  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card h2,
  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card p,
  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card ul {
    grid-column: auto;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card::before {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card h2,
  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card p,
  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card ul {
    grid-column: 2;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card h2 {
    font-size: 18px;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card p {
    font-size: 14px;
    line-height: 1.64;
  }

  :is(.info-page-about, .info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card ul {
    font-size: 14px;
    line-height: 1.5;
  }

  :is(.info-page-contact, .info-page-disclaimer, .info-page-privacy) .info-card a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  body.detail-page {
    background: #fff;
  }

  .container,
  .header-inner,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "links"
      "intro"
      "note";
    gap: 16px;
    padding: 18px;
    text-align: left;
  }

  .footer-logo img {
    width: 142px;
  }

  .footer-inner p:first-of-type,
  .footer-inner p:last-of-type {
    max-width: none;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: flex-start;
  }

  .footer-links a {
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-grid,
  .app-grid,
  .row-list,
  .download-nav,
  .info-list,
  .screens {
    grid-template-columns: 1fr;
  }

  .info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .info-list div {
    padding: 10px;
  }

  .info-list dd {
    font-size: 14px;
    font-weight: 700;
  }

  .feature-card,
  .feature-content {
    min-height: 230px;
  }

  .version-main {
    background: transparent;
    border-radius: 0;
    padding: 20px;
    box-shadow: none;
  }

  .download-nav .download-button {
    font-size: 16px;
  }

  .detail-download-nav .download-button:not(.disabled):active {
    background: var(--blue-dark);
    box-shadow: 0 2px 8px rgba(36, 99, 235, 0.2);
    transform: scale(0.98);
  }

  .detail-main {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  .detail-bottom-recommendations {
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .detail-recommend-sidebar {
    background: transparent;
    padding: 0 0 14px;
    box-shadow: none;
  }

  .detail-side-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
  }

  .detail-recommend-card {
    min-height: auto;
    align-self: stretch;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 7px;
    padding: 9px;
  }

  .detail-recommend-grid .detail-recommend-card:nth-child(-n + 3) {
    padding-top: 9px;
  }

  .detail-recommend-grid .detail-recommend-card:nth-child(-n + 3)::before {
    top: -7px;
    min-width: 60px;
    height: 20px;
    padding: 0 9px 0 21px;
    font-size: 9px;
  }

  .detail-recommend-grid .detail-recommend-card:nth-child(-n + 3)::after {
    top: -11px;
    width: 24px;
    height: 24px;
  }

  .detail-recommend-card img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .detail-recommend-card strong {
    font-size: 14px;
    line-height: 1.18;
  }

  .detail-recommend-card small {
    font-size: 12px;
    font-weight: 400;
  }

  .detail-recommend-card span {
    min-height: 18px;
    padding: 0 5px;
    font-size: 9px;
  }

  .detail-top,
  .version-top {
    align-items: flex-start;
  }

  .detail-icon,
  .version-icon {
    width: 82px;
    height: 82px;
  }

  .detail-title {
    font-size: 22px;
  }

  .version-title {
    font-size: 24px;
  }

  .security-review {
    margin-top: 22px;
    padding: 16px;
  }

  .security-review h2 {
    font-size: 21px;
  }

  .security-review p {
    font-size: 14px;
  }

  .security-review ul {
    font-size: 13px;
  }

  .user-reviews {
    margin-top: 28px;
  }

  .user-reviews h2 {
    margin-bottom: 14px;
    font-size: 21px;
  }

  body.detail-page .part-title,
  body.detail-page .security-review h2,
  body.detail-page .user-reviews h2 {
    font-size: 20px;
  }

  .user-review-list {
    gap: 12px;
  }

  .user-review-list p {
    min-height: auto;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    font-size: 14px;
  }

  .user-review-list svg {
    width: 19px;
    height: 19px;
    margin-top: 2px;
  }

  .screens {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 68%);
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .screens::-webkit-scrollbar {
    display: none;
  }

  .screen-shot {
    aspect-ratio: 9 / 16;
    height: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .apk-panel a,
  .similar-card {
    grid-template-columns: 1fr;
  }

  .apk-panel a {
    align-items: flex-start;
  }

  .apk-panel {
    margin: 14px 0 22px;
    padding: 14px;
  }

  .apk-title {
    font-size: 18px;
  }

  .apk-safe {
    min-height: 26px;
    padding: 0 9px;
    font-size: 11px;
  }

  .store-home .container {
    width: min(100% - 24px, 1200px);
  }

  .store-hero {
    padding-top: 28px;
  }

  .store-hero h2 {
    font-size: 42px;
  }

  .today-card {
    min-height: 360px;
    padding: 22px;
  }

  .today-card h3 {
    font-size: 30px;
  }

  .today-card p {
    font-size: 15px;
  }

  .today-card-app {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }

  .today-card-app img {
    width: 52px;
    height: 52px;
  }

  .today-art {
    width: 112px;
    height: 112px;
    right: 20px;
    bottom: 126px;
    border-radius: 26px;
  }

  .today-art.secondary {
    width: 104px;
    height: 104px;
  }

  .store-chart {
    padding: 0 12px;
  }

  .store-app-row,
  .feature-lane {
    grid-template-columns: 22px 54px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .feature-lane {
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }

  .store-app-row img,
  .feature-lane img {
    width: 54px;
    height: 54px;
  }

  .store-section-head h2 {
    font-size: 23px;
  }

  .container.store-section.home-screen:not(.social-section):not(.games-section):not(.trending-section):not(.updates-section) {
    padding-right: 0;
    padding-left: 0;
  }

  .store-section:has(> .store-section-head > a) {
    position: relative;
    padding-bottom: 58px;
  }

  .store-section > .store-section-head > a {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    transform: translateX(-50%);
  }

  .app-showcase-banner {
    background:
      linear-gradient(180deg, rgba(13, 17, 27, 0.96) 0%, rgba(20, 27, 42, 0.92) 46%, rgba(246, 248, 252, 0.96) 46.2%, rgba(246, 248, 252, 0.96) 100%),
      radial-gradient(circle at 20% 20%, rgba(0, 122, 255, 0.26), transparent 30%),
      #f6f8fc;
    padding: 28px 12px 34px;
  }

  .app-showcase-banner::before {
    inset: auto -180px -140px auto;
    width: 320px;
    height: 320px;
  }

  .showcase-copy {
    padding: 0 2px;
  }

  .showcase-copy h2 {
    font-size: 38px;
  }

  .showcase-copy > p:last-of-type {
    font-size: 15px;
  }

  .showcase-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .banner-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 100%;
  }

  .banner-metrics span {
    min-height: 58px;
  }

  .banner-cover-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cover-card,
  .cover-card:nth-child(n) {
    min-height: 198px;
    padding: 14px;
    transform: none;
  }

  .cover-card img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .cover-card strong {
    font-size: 16px;
  }

  .discovery-panel {
    min-height: auto;
    padding: 16px;
  }

  .hero-search {
    grid-template-columns: 24px minmax(0, 1fr);
    min-height: 60px;
  }

  .hero-search em {
    display: none;
  }

  .hero-search strong {
    font-size: 15px;
  }

  .category-cloud span {
    min-height: 30px;
    font-size: 12px;
  }

  .app-orbit {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
  }

  .orbit-app,
  .orbit-app:nth-child(n) {
    position: static;
    width: 100%;
    min-height: 76px;
    transform: none;
  }

  .orbit-app img {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .orbit-8,
  .orbit-9 {
    display: grid;
  }

  .story-tile {
    min-height: 270px;
    padding: 22px;
  }

  .story-tile h3,
  .collection-card h3 {
    font-size: 24px;
  }

  .story-tile img {
    width: 82px;
    height: 82px;
    border-radius: 20px;
  }

  .social-list,
  .trend-chart,
  .update-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .guide-footer-frame .guide-grid {
    grid-template-columns: 1fr;
  }

  .social-radar {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 16px;
  }

  .social-feature-card {
    min-height: 270px;
  }

  .social-mini-app {
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }

  .social-mini-app img {
    width: 54px;
    height: 54px;
  }

  .social-app-mosaic {
    grid-template-columns: 1fr;
  }

  .social-lead-card {
    min-height: 340px;
    padding: 22px;
  }

  .social-lead-card h3 {
    font-size: 32px;
  }

  .social-lead-card p {
    margin-bottom: 14px;
  }

  .social-lead-card h3 {
    font-size: 28px;
  }

  .social-mosaic-item {
    min-height: 108px;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 5px 12px;
    padding: 14px;
  }

  .social-mosaic-item img {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 64px;
    height: 64px;
    max-width: none;
    border-radius: 15px;
  }

  .social-mosaic-item > span {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    align-self: end;
  }

  .social-mosaic-item strong {
    display: -webkit-box;
    font-size: 16px;
    text-overflow: clip;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .social-mosaic-item b {
    grid-column: 3;
    grid-row: 1 / 3;
    width: 100%;
    align-self: center;
    justify-self: end;
    min-width: 52px;
    min-height: 28px;
    padding: 0 12px;
  }

  .social-mosaic-item em {
    grid-column: 2 / 3;
    grid-row: 2;
    align-self: start;
    justify-self: start;
  }

  .social-mosaic-item small,
  .social-mosaic-item em {
    font-size: 12px;
  }

  .social-radar::before,
  .social-radar::after {
    display: none;
  }

  .social-core,
  .social-node,
  .social-node:nth-child(n) {
    position: static;
    width: 100%;
    min-height: auto;
    transform: none;
  }

  .social-core {
    padding: 22px;
  }

  .social-core h3 {
    font-size: 30px;
  }

  .category-tile {
    min-height: 150px;
  }

  .category-hero h1 {
    font-size: 30px;
    font-weight: 800;
  }

  .category-app-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .category-app-card {
    min-height: 216px;
    padding: 18px 12px;
  }

  .category-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-link-pill {
    min-height: 74px;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 12px;
  }

  .category-link-icon,
  .category-link-icon svg {
    width: 42px;
    height: 42px;
  }

  .social-feature,
  .download-hero {
    min-height: 300px;
  }

  .trending-section {
    padding-top: 16px;
    padding-bottom: 26px;
  }

  .trending-section .download-hero {
    min-height: 300px;
    padding: 24px;
  }

  .trending-section .download-hero h3 {
    font-size: 31px;
  }

  .trending-section .download-hero img {
    width: 104px;
    height: 104px;
    border-radius: 24px;
  }

  .trending-section .download-hero-image-frame {
    width: 104px;
    height: 104px;
    border-radius: 24px;
  }

  .trending-section .trend-chart {
    padding: 4px 12px;
  }

  .social-feature h3,
  .download-hero h3 {
    font-size: 31px;
  }

  .social-feature img,
  .download-hero img {
    width: 96px;
    height: 96px;
    border-radius: 24px;
  }

  .download-hero-image-frame {
    width: 96px;
    height: 96px;
    border-radius: 24px;
  }

  .game-board {
    grid-template-columns: repeat(6, 164px);
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x proximity;
  }

  .game-card {
    min-height: 286px;
    scroll-snap-align: start;
  }

  .update-card {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    min-height: 96px;
    padding: 8px 12px;
  }

  .update-card img {
    width: 64px;
    height: 64px;
  }

  .spotlight-story {
    min-height: 330px;
    padding: 24px;
  }

  .spotlight-story h2 {
    font-size: 30px;
  }

  .story-icons {
    right: 24px;
    bottom: 24px;
  }

  .story-icons img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .info-hero h1 {
    font-size: 40px;
  }

  .info-card {
    min-height: auto;
    padding: 20px;
  }
}

.app-showcase-banner {
  width: 100%;
  min-height: 680px;
  display: block;
  position: relative;
  overflow: hidden;
  background: #0f1420;
  padding: 0;
}

.app-showcase-banner::before,
.app-showcase-banner::after {
  display: none;
}

@media (max-width: 620px) {
  .store-section:has(> .store-section-head > a) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 0;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head {
    display: contents;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head::before {
    display: none;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > .section-heading-copy {
    position: relative;
    order: 1;
    max-width: 100%;
    border-top: 1px solid rgba(214, 218, 226, 0.92);
    padding-top: 18px;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > .section-heading-copy::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: -1px;
    width: 74px;
    height: 2px;
    border-radius: 999px;
    background: #007aff;
  }

  .store-section:has(> .store-section-head > a) > :not(.store-section-head) {
    order: 2;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > a {
    position: static;
    order: 3;
    justify-self: center;
    width: fit-content;
    margin: 0 auto;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > .section-heading-copy::before {
    display: none;
  }
}

@media (max-width: 620px) {
  .trend-chart .store-app-row {
    grid-template-columns: 14px 54px minmax(0, 1fr);
    gap: 8px;
  }

  .trend-chart .store-rank {
    font-size: 13px;
  }

  .trend-chart .store-get {
    display: none;
  }

  .trend-chart .store-row-copy strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

@media (max-width: 620px) {
  .store-section:has(> .store-section-head > a) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 0;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head {
    display: contents;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head::before {
    display: none;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > .section-heading-copy {
    position: relative;
    order: 1;
    max-width: 100%;
    border-top: 1px solid rgba(214, 218, 226, 0.92);
    padding-top: 18px;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > .section-heading-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 74px;
    height: 2px;
    border-radius: 999px;
    background: #007aff;
  }

  .store-section:has(> .store-section-head > a) > :not(.store-section-head) {
    order: 2;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > a {
    position: static;
    order: 3;
    width: 100%;
    max-width: none;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: stretch;
    margin: 0;
    background: transparent;
    padding: 0;
    text-align: center;
    transform: none;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > a > span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0, 122, 255, 0.09);
    padding: 0 14px;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > a:hover {
    background: transparent;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > a:hover > span {
    background: #007aff;
    color: #fff;
  }
}

@media (max-width: 620px) {
  .store-section:has(> .store-section-head > a) > .store-section-head::before {
    display: none;
  }
}

.showcase-carousel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.showcase-track {
  position: relative;
  min-height: 680px;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 56px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 0.55s ease, transform 0.55s ease;
  padding: 70px max(46px, calc((100vw - 1200px) / 2)) 78px;
}

.showcase-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.showcase-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 18% 76%, rgba(255, 255, 255, 0.12), transparent 26%);
}

.theme-blue {
  background: linear-gradient(135deg, #081629 0%, #084dbb 52%, #39c9ff 100%);
}

.theme-dark {
  background: linear-gradient(135deg, #0b0d12 0%, #272b39 58%, #111 100%);
}

.theme-green {
  background: linear-gradient(135deg, #092f1d 0%, #0d7b45 52%, #a3e66f 100%);
}

.theme-coral {
  background: linear-gradient(135deg, #23121b 0%, #a13b62 52%, #ff9a6f 100%);
}

.slide-copy,
.slide-visual {
  position: relative;
  z-index: 1;
}

.slide-copy {
  max-width: 540px;
}

.slide-copy .store-date {
  color: rgba(255, 255, 255, 0.64);
}

.slide-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slide-copy h2 {
  margin-top: 18px;
  color: #fff;
  font-size: 62px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.slide-copy p:last-of-type {
  max-width: 480px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.58;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.slide-actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: #0b66e4;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.slide-actions span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.slide-visual {
  min-height: 500px;
}

.slide-main-app {
  position: absolute;
  left: 8%;
  top: 6%;
  z-index: 3;
  width: 310px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 26px;
  color: #1d1d1f;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.slide-main-app img {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.slide-main-app span {
  display: block;
  margin-top: 24px;
}

.slide-main-app small,
.slide-preview-card p,
.slide-mini-stack small {
  color: #737b88;
}

.slide-main-app small {
  font-size: 13px;
  font-weight: 800;
}

.slide-main-app strong {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 6px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.04;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.slide-main-app b {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 999px;
  background: #eef1f6;
  color: #007aff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
}

.slide-preview-card {
  position: absolute;
  right: 2%;
  top: 16%;
  z-index: 2;
  width: 360px;
  min-height: 245px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 24px;
  color: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.preview-bar {
  display: block;
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.slide-preview-card h3 {
  margin-top: 26px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.08;
}

.slide-preview-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.slide-preview-card div {
  display: flex;
  margin-top: 22px;
}

.slide-preview-card img {
  width: 54px;
  height: 54px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 15px;
  object-fit: cover;
}

.slide-preview-card img + img {
  margin-left: -12px;
}

.slide-mini-stack {
  position: absolute;
  right: 8%;
  bottom: 7%;
  z-index: 4;
  display: grid;
  gap: 12px;
  width: 330px;
}

.slide-mini-stack a {
  min-height: 78px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.slide-mini-stack img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
}

.slide-mini-stack strong {
  display: block;
  overflow: hidden;
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.slide-mini-stack small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
}

.showcase-controls {
  position: absolute;
  z-index: 6;
  left: max(46px, calc((100vw - 1200px) / 2));
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 8px;
  backdrop-filter: blur(16px);
}

.showcase-controls > button {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1d1d1f;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.showcase-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.showcase-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.showcase-dots button.is-active {
  width: 26px;
  background: #fff;
}

@media (max-width: 900px) {
  .showcase-carousel,
  .showcase-track {
    min-height: 900px;
  }

  .showcase-slide {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 30px;
    padding: 44px 20px 86px;
  }

  .slide-copy h2 {
    font-size: 46px;
  }

  .slide-visual {
    min-height: 470px;
  }

  .showcase-controls {
    left: 20px;
  }
}

@media (max-width: 620px) {
  .showcase-carousel,
  .showcase-track {
    min-height: 1060px;
  }

  .showcase-slide {
    padding: 30px 12px 82px;
  }

  .slide-copy h2 {
    font-size: 38px;
  }

  .slide-copy p:last-of-type {
    font-size: 15px;
  }

  .slide-visual {
    min-height: 650px;
  }

  .slide-main-app,
  .slide-preview-card,
  .slide-mini-stack {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .slide-main-app {
    min-height: 250px;
  }

  .slide-main-app strong {
    font-size: 25px;
  }

  .slide-preview-card {
    margin-top: 14px;
  }

  .slide-mini-stack {
    margin-top: 14px;
  }

  .showcase-controls {
    left: 12px;
    bottom: 22px;
  }
}

.app-showcase-banner {
  width: 100%;
  min-height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 122, 255, 0.07) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(0, 122, 255, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  background-size: 84px 84px, 84px 84px, auto;
  padding: 52px 0 58px;
}

.app-showcase-banner::before,
.app-showcase-banner::after {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
}

.app-showcase-banner::before {
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0%, transparent 48%, rgba(0, 122, 255, 0.08) 48%, rgba(0, 122, 255, 0.08) 59%, transparent 59%),
    linear-gradient(116deg, transparent 0%, transparent 66%, rgba(52, 199, 89, 0.08) 66%, rgba(52, 199, 89, 0.08) 73%, transparent 73%);
}

.app-showcase-banner::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e8ebf0;
}

.showcase-shell {
  width: min(1200px, calc(100% - 40px));
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.showcase-copy {
  max-width: 780px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 20px 0 10px;
  text-align: center;
}

.showcase-copy .store-date {
  color: #7b8290;
}

.showcase-kicker {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  border: 1px solid #d8dee8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #007aff;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 800;
}

.showcase-copy h2 {
  max-width: 760px;
  margin-top: 18px;
  color: #1d1d1f;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.showcase-copy > p:last-of-type {
  max-width: 680px;
  margin-top: 20px;
  color: #626a78;
  font-size: 18px;
  line-height: 1.58;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.showcase-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #007aff;
  color: #fff;
  padding: 0 23px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 122, 255, 0.22);
}

.showcase-actions span {
  color: #6f7785;
  font-size: 14px;
  font-weight: 800;
}

.featured-shelf {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(216, 222, 232, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 22px;
  box-shadow: 0 28px 70px rgba(38, 52, 74, 0.13);
  backdrop-filter: blur(18px);
}

.featured-shelf-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.featured-shelf-head > span {
  color: #1d1d1f;
  font-size: 22px;
  font-weight: 900;
}

.featured-shelf-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.featured-shelf-controls button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eff3f8;
  color: #1d1d1f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.featured-shelf-controls button:hover {
  background: #007aff;
  color: #fff;
  transform: translateY(-1px);
}

.featured-shelf-controls button:disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.featured-shelf-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(268px, 326px);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.featured-app-card {
  min-height: 384px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border-radius: 8px;
  color: #1d1d1f;
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.featured-app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.7), transparent 44%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.38) 100%);
  pointer-events: none;
}

.feature-tone-0 {
  background: linear-gradient(145deg, #eaf3ff 0%, #bfdcff 100%);
}

.feature-tone-1 {
  background: linear-gradient(145deg, #eff8e9 0%, #c9efcf 100%);
}

.feature-tone-2 {
  background: linear-gradient(145deg, #fff3df 0%, #ffd8a8 100%);
}

.feature-tone-3 {
  background: linear-gradient(145deg, #f1edff 0%, #d6cdfc 100%);
}

.feature-tone-4 {
  background: linear-gradient(145deg, #e8f7f5 0%, #bfe8e3 100%);
}

.featured-card-label,
.featured-app-card img,
.featured-app-card strong,
.featured-app-card p,
.featured-card-meta,
.featured-app-card b {
  position: relative;
  z-index: 1;
}

.featured-card-label {
  color: rgba(29, 29, 31, 0.64);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-app-card img {
  width: 88px;
  height: 88px;
  margin-top: 26px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 16px 30px rgba(36, 43, 54, 0.2);
}

.featured-app-card strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 58px;
  margin-top: 20px;
  color: #1d1d1f;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.08;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.featured-app-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 12px;
  color: rgba(29, 29, 31, 0.68);
  font-size: 14px;
  line-height: 1.48;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.featured-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.featured-card-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(29, 29, 31, 0.72);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.featured-card-meta .rating-stars {
  color: #ff9f0a;
  letter-spacing: 0.04em;
}

.featured-app-card b {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #007aff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .app-showcase-banner {
    padding: 38px 0 44px;
  }

  .showcase-shell {
    gap: 24px;
  }

  .showcase-copy {
    min-height: auto;
    padding: 8px 0 0;
  }

  .showcase-copy h2 {
    font-size: 46px;
  }
}

@media (max-width: 620px) {
  .app-showcase-banner {
    padding: 30px 0 34px;
  }

  .showcase-shell {
    width: min(100% - 24px, 1200px);
  }

  .showcase-copy h2 {
    font-size: 38px;
  }

  .showcase-copy > p:last-of-type {
    font-size: 15px;
  }

  .featured-shelf {
    padding: 16px;
  }

  .featured-shelf-head > span {
    font-size: 19px;
  }

  .featured-shelf-track {
    grid-auto-columns: minmax(236px, 76vw);
  }

  .featured-app-card {
    min-height: 350px;
    padding: 18px;
  }

  .featured-app-card strong {
    font-size: 23px;
  }

  .store-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    padding-top: 18px;
  }

  .store-section-head h2 {
    font-size: 24px;
  }

  .store-section-head p {
    font-size: 14px;
  }
}

.app-showcase-banner {
  padding: 24px 0 28px;
}

.showcase-shell {
  width: 100%;
  gap: 18px;
}

.showcase-copy {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  padding: 8px 0 4px;
}

.showcase-kicker {
  min-height: 26px;
  margin-top: 10px;
  font-size: 11px;
}

.showcase-copy h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: 48px;
}

.showcase-copy > p:last-of-type {
  margin-top: 12px;
  font-size: 16px;
}

.showcase-actions {
  margin-top: 18px;
}

.showcase-actions a {
  min-height: 42px;
  padding: 0 20px;
}

.featured-shelf {
  width: 100%;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  padding: 16px max(20px, calc((100vw - 1200px) / 2)) 14px;
  box-shadow: 0 14px 34px rgba(38, 52, 74, 0.09);
}

.featured-shelf-head {
  width: min(1200px, calc(100vw - 40px));
  margin: 0 auto 12px;
}

.featured-shelf-track {
  grid-auto-columns: minmax(236px, 276px);
  width: 100%;
  gap: 14px;
  padding: 2px max(20px, calc((100vw - 1200px) / 2)) 10px;
  margin: 0 min(-20px, calc((1200px - 100vw) / 2));
}

.featured-app-card {
  min-height: 238px;
  padding: 16px;
}

.featured-app-card img {
  width: 58px;
  height: 58px;
  margin-top: 14px;
  border-radius: 15px;
}

.featured-app-card strong {
  min-height: 44px;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.1;
}

.featured-app-card p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
}

.featured-card-meta {
  gap: 6px;
  padding-top: 12px;
}

.featured-card-meta span {
  min-height: 24px;
  font-size: 11px;
}

.featured-app-card b {
  min-height: 30px;
  margin-top: 10px;
  padding: 0 14px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .app-showcase-banner {
    padding: 20px 0 24px;
  }

  .showcase-copy h2 {
    font-size: 40px;
  }

  .featured-shelf-track {
    grid-auto-columns: minmax(220px, 42vw);
  }
}

@media (max-width: 620px) {
  .app-showcase-banner {
    padding: 18px 0 22px;
  }

  .showcase-copy {
    width: min(100% - 24px, 1200px);
  }

  .showcase-copy h2 {
    font-size: 34px;
  }

  .showcase-actions {
    gap: 10px;
  }

  .featured-shelf {
    padding: 14px 12px 12px;
  }

  .featured-shelf-head {
    width: 100%;
  }

  .featured-shelf-track {
    grid-auto-columns: minmax(210px, 70vw);
    padding: 2px 12px 10px;
    margin: 0 -12px;
  }

  .featured-app-card {
    min-height: 232px;
  }
}

.app-showcase-banner {
  padding: 18px 0 22px;
}

.showcase-shell {
  width: 100%;
  gap: 18px;
}

.showcase-copy {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  padding: 4px 0 0;
}

.app-showcase-banner .store-date,
.app-showcase-banner .showcase-kicker,
.app-showcase-banner .showcase-actions {
  display: none;
}

.showcase-copy h2 {
  max-width: 760px;
  margin-top: 0;
  font-size: 44px;
}

.showcase-copy > p:last-of-type {
  margin-top: 10px;
  font-size: 15px;
}

.featured-shelf {
  width: 100%;
  border: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  padding: 12px max(20px, calc((100vw - 1200px) / 2));
  box-shadow: none;
  backdrop-filter: none;
}

.featured-shelf-head {
  width: min(1200px, calc(100vw - 40px));
  margin: 0 auto 10px;
}

.featured-shelf-head > span {
  font-size: 20px;
}

.featured-shelf-track {
  grid-auto-columns: minmax(270px, 330px);
  width: 100%;
  gap: 12px;
  padding: 2px max(20px, calc((100vw - 1200px) / 2)) 8px;
  margin: 0 min(-20px, calc((1200px - 100vw) / 2));
}

.featured-app-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 6px 12px;
  padding: 14px;
}

.featured-card-label {
  grid-column: 2 / 4;
  grid-row: 1;
}

.featured-app-card img {
  grid-column: 1;
  grid-row: 1 / 4;
  width: 58px;
  height: 58px;
  margin-top: 0;
  border-radius: 15px;
}

.featured-app-card strong {
  grid-column: 2 / 4;
  grid-row: 2;
  min-height: 0;
  margin-top: 0;
  font-size: 18px;
  line-height: 1.1;
}

.featured-app-card p {
  display: none;
}

.featured-card-meta {
  grid-column: 2;
  grid-row: 3;
  margin-top: 0;
  padding-top: 0;
}

.featured-card-meta span {
  min-height: 24px;
  font-size: 11px;
}

.featured-app-card b {
  grid-column: 3;
  grid-row: 3;
  min-height: 28px;
  margin-top: 0;
  padding: 0 14px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .app-showcase-banner {
    padding: 16px 0 20px;
  }

  .showcase-copy h2 {
    font-size: 36px;
  }

  .featured-shelf-track {
    grid-auto-columns: minmax(268px, 58vw);
  }
}

@media (max-width: 620px) {
  .app-showcase-banner {
    padding: 14px 0 18px;
  }

  .showcase-copy {
    width: min(100% - 24px, 1200px);
  }

  .showcase-copy h2 {
    font-size: 30px;
  }

  .showcase-copy > p:last-of-type {
    font-size: 14px;
    line-height: 1.45;
  }

  .featured-shelf {
    padding: 10px 12px;
  }

  .featured-shelf-head {
    width: 100%;
  }

  .featured-shelf-track {
    grid-auto-columns: minmax(260px, 82vw);
    padding: 2px 12px 8px;
    margin: 0 -12px;
  }

  .featured-app-card {
    min-height: 146px;
  }
}

.app-showcase-banner {
  padding: 22px 0 26px;
}

.showcase-shell {
  gap: 12px;
}

.showcase-copy {
  padding: 0;
}

.showcase-copy h2 {
  font-size: 42px;
}

.showcase-copy > p:last-of-type {
  max-width: 720px;
}

.featured-shelf {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
}

.featured-shelf-head {
  width: auto;
  position: absolute;
  top: 14px;
  right: max(20px, calc((100vw - 1200px) / 2));
  z-index: 4;
  margin: 0;
}

.featured-shelf-head > span {
  display: none;
}

.featured-shelf-controls {
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 24px rgba(35, 45, 72, 0.12);
  backdrop-filter: blur(14px);
}

.featured-shelf-track {
  grid-auto-columns: minmax(520px, 62vw);
  gap: 18px;
  margin: 0;
  padding: 4px max(20px, calc((100vw - 1200px) / 2)) 12px;
  scroll-snap-type: x mandatory;
}

.featured-app-card {
  min-height: 188px;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 18px;
  padding: 24px;
  scroll-snap-align: start;
}

.featured-app-card img {
  grid-row: 1 / 5;
  width: 92px;
  height: 92px;
  border-radius: 22px;
}

.featured-card-label {
  grid-column: 2 / 4;
  grid-row: 1;
}

.featured-app-card strong {
  grid-column: 2 / 4;
  grid-row: 2;
  max-width: 520px;
  font-size: 28px;
  line-height: 1.08;
}

.featured-app-card p {
  grid-column: 2 / 4;
  grid-row: 3;
  display: -webkit-box;
  max-width: 640px;
  margin-top: 0;
  color: rgba(29, 29, 31, 0.66);
  font-size: 14px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.featured-card-meta {
  grid-column: 2;
  grid-row: 4;
}

.featured-app-card b {
  grid-column: 3;
  grid-row: 4;
}

@media (max-width: 900px) {
  .app-showcase-banner {
    padding: 18px 0 22px;
  }

  .featured-shelf-track {
    grid-auto-columns: minmax(410px, 86vw);
    gap: 14px;
  }

  .featured-app-card {
    min-height: 178px;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    padding: 20px;
  }

  .featured-app-card img {
    width: 76px;
    height: 76px;
    border-radius: 19px;
  }

  .featured-app-card strong {
    font-size: 23px;
  }
}

@media (max-width: 620px) {
  .app-showcase-banner {
    padding: 16px 0 20px;
  }

  .showcase-copy h2 {
    font-size: 30px;
  }

  .featured-shelf-head {
    top: 10px;
    right: 12px;
  }

  .featured-shelf-controls button {
    width: 30px;
    height: 30px;
  }

  .featured-shelf-track {
    grid-auto-columns: minmax(310px, calc(100vw - 34px));
    gap: 12px;
    padding: 2px 12px 10px;
  }

  .featured-app-card {
    min-height: 168px;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 6px 12px;
    padding: 16px;
  }

  .featured-app-card img {
    width: 64px;
    height: 64px;
    border-radius: 17px;
  }

  .featured-app-card strong {
    font-size: 20px;
  }

  .featured-app-card p {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

  .featured-card-meta span:nth-child(2) {
    display: none;
  }
}

.app-showcase-banner {
  padding: 34px 0 42px;
}

.showcase-shell {
  gap: 22px;
}

.showcase-copy h2 {
  font-size: 46px;
}

.showcase-copy > p:last-of-type {
  margin-top: 12px;
  font-size: 16px;
}

.featured-shelf {
  padding-top: 4px;
}

.featured-shelf::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  bottom: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.featured-shelf-track {
  grid-auto-columns: minmax(620px, 68vw);
  gap: 22px;
  padding: 12px max(20px, calc((100vw - 1200px) / 2)) 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.featured-shelf-track::-webkit-scrollbar {
  display: none;
}

.featured-app-card {
  min-height: 230px;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 10px 22px;
  padding: 30px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.66),
    0 18px 42px rgba(34, 45, 68, 0.11);
}

.featured-app-card img {
  width: 108px;
  height: 108px;
  border-radius: 26px;
}

.featured-app-card strong {
  max-width: 620px;
  font-size: 32px;
}

.featured-app-card p {
  max-width: 720px;
  font-size: 15px;
}

.featured-shelf-controls {
  background: rgba(255, 255, 255, 0.74);
}

@media (max-width: 900px) {
  .app-showcase-banner {
    padding: 28px 0 34px;
  }

  .showcase-copy h2 {
    font-size: 38px;
  }

  .featured-shelf-track {
    grid-auto-columns: minmax(430px, 88vw);
    gap: 16px;
    padding-top: 10px;
  }

  .featured-app-card {
    min-height: 206px;
    grid-template-columns: 84px minmax(0, 1fr) auto;
    padding: 24px;
  }

  .featured-app-card img {
    width: 84px;
    height: 84px;
    border-radius: 21px;
  }

  .featured-app-card strong {
    font-size: 25px;
  }
}

@media (max-width: 620px) {
  .app-showcase-banner {
    padding: 24px 0 30px;
  }

  .showcase-shell {
    gap: 18px;
  }

  .showcase-copy h2 {
    font-size: 32px;
  }

  .showcase-copy > p:last-of-type {
    font-size: 14px;
  }

  .featured-shelf-track {
    grid-auto-columns: minmax(320px, calc(100vw - 28px));
    gap: 14px;
    padding: 10px 12px 16px;
  }

  .featured-app-card {
    min-height: 194px;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    padding: 18px;
  }

  .featured-app-card img {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .featured-app-card strong {
    font-size: 21px;
  }
}

.app-showcase-banner {
  background:
    linear-gradient(90deg, rgba(0, 122, 255, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(88, 86, 214, 0.035) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 50% 0%, rgba(0, 122, 255, 0.14), transparent 32%),
    radial-gradient(circle at 8% 68%, rgba(52, 199, 89, 0.08), transparent 26%),
    linear-gradient(180deg, #fbfcff 0%, #f5f8fc 100%);
  background-size: 96px 96px, 96px 96px, auto, auto, auto;
  padding: 42px 0 48px;
}

.app-showcase-banner::before {
  background:
    linear-gradient(112deg, transparent 0%, transparent 56%, rgba(0, 122, 255, 0.055) 56%, rgba(0, 122, 255, 0.055) 64%, transparent 64%),
    linear-gradient(112deg, transparent 0%, transparent 72%, rgba(175, 82, 222, 0.05) 72%, rgba(175, 82, 222, 0.05) 78%, transparent 78%);
}

.showcase-shell {
  gap: 26px;
}

.showcase-copy {
  position: relative;
}

.showcase-copy::before {
  content: "Editor's Picks";
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 122, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #007aff;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(32, 49, 78, 0.06);
}

.showcase-copy h2 {
  max-width: 820px;
  color: #14161a;
  font-size: 50px;
  line-height: 0.98;
}

.showcase-copy > p:last-of-type {
  max-width: 760px;
  color: #626a78;
  font-size: 17px;
  line-height: 1.55;
}

.featured-shelf {
  padding-top: 2px;
}

.featured-shelf::before {
  top: 26px;
  bottom: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
}

.featured-shelf-track {
  grid-auto-columns: minmax(720px, 72vw);
  gap: 24px;
  padding: 14px max(22px, calc((100vw - 1200px) / 2)) 22px;
}

.featured-app-card {
  min-height: 250px;
  grid-template-columns: 124px minmax(0, 1fr) auto;
  gap: 12px 26px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  padding: 34px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 24px 58px rgba(37, 48, 72, 0.13);
}

.featured-app-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -52px;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.featured-card-label {
  color: rgba(29, 29, 31, 0.58);
  letter-spacing: 0.04em;
}

.featured-app-card img {
  width: 124px;
  height: 124px;
  border: 5px solid rgba(255, 255, 255, 0.54);
  border-radius: 30px;
  box-shadow: 0 20px 36px rgba(35, 45, 72, 0.2);
}

.featured-app-card strong {
  max-width: 680px;
  font-size: 36px;
}

.featured-app-card p {
  max-width: 720px;
  color: rgba(29, 29, 31, 0.62);
  font-size: 16px;
}

.featured-card-meta span {
  background: rgba(255, 255, 255, 0.68);
  color: rgba(29, 29, 31, 0.7);
}

.featured-app-card b {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(32, 49, 78, 0.08);
}

.featured-shelf-head {
  top: 20px;
}

.featured-shelf-controls {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 231, 239, 0.82);
  box-shadow: 0 14px 34px rgba(35, 45, 72, 0.12);
}

.featured-shelf-controls button {
  background: transparent;
}

.featured-shelf-controls button:hover {
  background: #007aff;
}

@media (max-width: 900px) {
  .app-showcase-banner {
    padding: 34px 0 40px;
  }

  .showcase-copy h2 {
    font-size: 40px;
  }

  .showcase-copy > p:last-of-type {
    font-size: 16px;
  }

  .featured-shelf-track {
    grid-auto-columns: minmax(470px, 88vw);
    gap: 18px;
  }

  .featured-app-card {
    min-height: 226px;
    grid-template-columns: 94px minmax(0, 1fr) auto;
    padding: 26px;
  }

  .featured-app-card img {
    width: 94px;
    height: 94px;
    border-radius: 23px;
  }

  .featured-app-card strong {
    font-size: 28px;
  }
}

@media (max-width: 620px) {
  .app-showcase-banner {
    padding: 28px 0 34px;
  }

  .showcase-copy::before {
    min-height: 28px;
    margin-bottom: 12px;
  }

  .showcase-copy h2 {
    font-size: 34px;
  }

  .showcase-copy > p:last-of-type {
    font-size: 14px;
    line-height: 1.48;
  }

  .featured-shelf-head {
    top: 12px;
    right: 12px;
  }

  .featured-shelf-track {
    grid-auto-columns: minmax(320px, calc(100vw - 28px));
    gap: 14px;
    padding: 10px 12px 18px;
  }

  .featured-app-card {
    min-height: 212px;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 7px 12px;
    padding: 18px;
  }

  .featured-app-card img {
    width: 72px;
    height: 72px;
    border-width: 3px;
    border-radius: 18px;
  }

  .featured-app-card strong {
    font-size: 22px;
  }

  .featured-app-card p {
    font-size: 13px;
  }
}

.featured-shelf-head {
  top: auto;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100vw - 28px));
  height: 0;
  pointer-events: none;
}

.featured-shelf {
  overflow: visible;
}

.featured-shelf-controls {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: none;
}

.featured-shelf-controls button {
  width: 46px;
  height: 46px;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 231, 239, 0.9);
  color: #1d1d1f;
  box-shadow: 0 14px 30px rgba(35, 45, 72, 0.16);
  backdrop-filter: blur(14px);
}

.featured-shelf-track {
  padding-top: 28px;
  padding-bottom: 68px;
  margin-top: -14px;
  margin-bottom: -46px;
}

@media (max-width: 620px) {
  .featured-shelf-head {
    width: calc(100vw - 20px);
  }

  .featured-shelf-controls button {
    width: 38px;
    height: 38px;
  }

  .featured-shelf-track {
    padding-top: 22px;
    padding-bottom: 56px;
    margin-top: -10px;
    margin-bottom: -38px;
  }
}

.featured-recommend-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px 0 8px 0;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.96), rgba(88, 86, 214, 0.96));
  color: #fff;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 122, 255, 0.22);
}

.featured-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-size: 10px;
  line-height: 1;
}

.featured-shelf-track {
  grid-auto-columns: minmax(650px, 66vw);
  gap: 20px;
}

.featured-app-card {
  min-height: 224px;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 10px 22px;
  padding: 30px;
  scroll-snap-align: center;
}

.featured-app-card img {
  width: 108px;
  height: 108px;
  border-radius: 26px;
}

.featured-app-card strong {
  font-size: 32px;
}

.featured-app-card p {
  font-size: 15px;
}

@media (max-width: 900px) {
  .featured-shelf-track {
    grid-auto-columns: minmax(430px, 84vw);
  }

  .featured-app-card {
    min-height: 210px;
    grid-template-columns: 84px minmax(0, 1fr) auto;
    padding: 24px;
  }

  .featured-app-card img {
    width: 84px;
    height: 84px;
    border-radius: 21px;
  }

  .featured-app-card strong {
    font-size: 26px;
  }
}

@media (max-width: 620px) {
  .featured-shelf-track {
    grid-auto-columns: minmax(304px, calc(100vw - 40px));
    gap: 12px;
  }

  .featured-app-card {
    min-height: 198px;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    padding: 16px;
  }

  .featured-app-card img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .featured-app-card strong {
    font-size: 20px;
  }

  .featured-app-card p {
    font-size: 12px;
  }

  .featured-recommend-badge {
    min-height: 24px;
    padding: 0 9px;
    font-size: 9px;
  }
}

.featured-shelf-track {
  scroll-padding-left: max(20px, calc((100vw - min(650px, 66vw)) / 2));
  scroll-padding-right: max(20px, calc((100vw - min(650px, 66vw)) / 2));
  padding-left: max(20px, calc((100vw - min(650px, 66vw)) / 2));
  padding-right: max(20px, calc((100vw - min(650px, 66vw)) / 2));
}

.featured-shelf-head {
  width: calc(100vw - 28px);
  top: calc(50% + 34px);
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 900px) {
  .featured-shelf-track {
    scroll-padding-left: max(16px, calc((100vw - min(430px, 84vw)) / 2));
    scroll-padding-right: max(16px, calc((100vw - min(430px, 84vw)) / 2));
    padding-left: max(16px, calc((100vw - min(430px, 84vw)) / 2));
    padding-right: max(16px, calc((100vw - min(430px, 84vw)) / 2));
  }

  .featured-shelf-head {
    width: calc(100vw - 22px);
    top: calc(50% + 30px);
  }
}

@media (max-width: 620px) {
  .featured-shelf-track {
    scroll-padding-left: max(12px, calc((100vw - min(304px, calc(100vw - 40px))) / 2));
    scroll-padding-right: max(12px, calc((100vw - min(304px, calc(100vw - 40px))) / 2));
    padding-left: max(12px, calc((100vw - min(304px, calc(100vw - 40px))) / 2));
    padding-right: max(12px, calc((100vw - min(304px, calc(100vw - 40px))) / 2));
  }

  .featured-shelf-head {
    width: calc(100vw - 16px);
    top: calc(50% + 26px);
  }
}

.featured-shelf-track {
  scroll-padding-left: max(20px, calc((100vw - 1200px) / 2 + 20px));
  scroll-padding-right: max(20px, calc((100vw - 1200px) / 2 + 20px));
  padding-left: max(20px, calc((100vw - 1200px) / 2 + 20px));
  padding-right: max(20px, calc((100vw - 1200px) / 2 + 20px));
}

@media (max-width: 900px) {
  .featured-shelf-track {
    scroll-padding-left: 18px;
    scroll-padding-right: 18px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 620px) {
  .featured-shelf-track {
    scroll-padding-left: 12px;
    scroll-padding-right: 12px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.featured-shelf-head {
  display: none;
}

.featured-shelf-track {
  --featured-gap: 16px;
  --featured-card-width: clamp(340px, 34vw, 470px);
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: unset;
  grid-template-columns: 1fr;
  gap: var(--featured-gap);
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 24px 0 36px;
  scroll-padding-left: 0;
  scroll-padding-right: 0;
  scroll-snap-type: none;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.featured-shelf-lane {
  display: flex;
  width: max-content;
  gap: var(--featured-gap);
  animation: featured-marquee-left 72s linear infinite;
  will-change: transform;
}

.featured-shelf-lane.is-reverse {
  margin-left: calc((var(--featured-card-width) + var(--featured-gap)) * -0.52);
  animation-name: featured-marquee-right;
  animation-duration: 82s;
}

.featured-shelf-set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--featured-gap);
}

.featured-shelf-track:hover .featured-shelf-lane {
  animation-play-state: paused;
}

.featured-shelf-track .featured-app-card {
  width: var(--featured-card-width);
  min-height: 156px;
  flex: 0 0 var(--featured-card-width);
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 6px 14px;
  padding: 28px 18px 18px;
  scroll-snap-align: unset;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.36),
    0 8px 18px rgba(37, 48, 72, 0.08);
}

.featured-shelf-track .featured-app-card img {
  grid-column: 1;
  grid-row: 1 / 4;
  width: 72px;
  height: 72px;
  margin-top: 0;
  border-width: 3px;
  border-radius: 18px;
}

.featured-shelf-track .featured-card-label {
  grid-column: 2 / 3;
  grid-row: 1;
}

.featured-shelf-track .featured-app-card strong {
  grid-column: 2 / 3;
  grid-row: 2;
  width: 210px;
  max-width: 100%;
  min-height: 0;
  margin-top: 0;
  font-size: 21px;
  line-height: 1.08;
}

.featured-shelf-track .featured-app-card p {
  grid-column: 2 / 4;
  grid-row: 3;
  display: -webkit-box;
  margin-top: 0;
  font-size: 12px;
  line-height: 1.35;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.featured-shelf-track .featured-card-meta {
  display: none;
}

.featured-shelf-track .featured-app-card b {
  grid-column: 3;
  grid-row: 2;
  min-height: 28px;
  margin-top: 0;
  padding: 0 14px;
}

@keyframes featured-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--featured-gap) / 2)));
  }
}

@keyframes featured-marquee-right {
  from {
    transform: translateX(calc(-50% - (var(--featured-gap) / 2)));
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .featured-shelf-track {
    --featured-card-width: clamp(310px, 72vw, 430px);
    --featured-gap: 14px;
  }
}

@media (max-width: 620px) {
  .featured-shelf-track {
    --featured-card-width: 286px;
    --featured-gap: 10px;
    padding: 20px 0 30px;
  }

  .featured-shelf-track .featured-app-card {
    min-height: 138px;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 5px 10px;
    padding: 24px 14px 14px;
  }

  .featured-shelf-track .featured-app-card img {
    width: 56px;
    height: 56px;
    border-radius: 15px;
  }

  .featured-shelf-track .featured-card-label {
    display: none;
  }

  .featured-shelf-track .featured-app-card strong {
    font-size: 17px;
    grid-column: 2 / 3;
    width: 170px;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .featured-shelf-track .featured-app-card p {
    font-size: 11px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .featured-shelf-lane {
    animation-play-state: paused;
  }
}

@media (max-width: 620px) {
  .trending-section .download-hero {
    min-height: auto;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 4px 14px;
    padding: 16px;
  }

  .trending-section .download-hero::before {
    display: none;
  }

  .trending-section .download-hero .editorial-label {
    grid-column: 2;
    grid-row: 1;
    width: fit-content;
    margin: 0;
  }

  .trending-section .download-hero h3 {
    grid-column: 2;
    grid-row: 2;
    max-width: 100%;
    margin-top: 2px;
    font-size: 20px;
  }

  .trending-section .download-hero p {
    grid-column: 2;
    grid-row: 3;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.35;
  }

  .trending-section .download-hero img {
    width: 82px;
    height: 82px;
    border-radius: 20px;
  }

  .trending-section .download-hero-image-frame {
    position: static;
    grid-column: 1;
    grid-row: 1 / 4;
    width: 82px;
    height: 82px;
    border-radius: 20px;
  }
}

.app-showcase-banner {
  border-bottom: 0;
}

.app-showcase-banner::after {
  display: none;
}

@media (max-width: 620px) {
  .store-section:has(> .store-section-head > a) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 0;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head {
    display: contents;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head::before {
    display: none;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > .section-heading-copy {
    position: relative;
    order: 1;
    max-width: 100%;
    border-top: 1px solid rgba(214, 218, 226, 0.92);
    padding-top: 18px;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > .section-heading-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 74px;
    height: 2px;
    border-radius: 999px;
    background: #007aff;
  }

  .store-section:has(> .store-section-head > a) > :not(.store-section-head) {
    order: 2;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > a {
    position: static;
    order: 3;
    width: 100%;
    max-width: none;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: stretch;
    margin: 0;
    background: transparent;
    padding: 0;
    text-align: center;
    transform: none;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > a > span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0, 122, 255, 0.09);
    padding: 0 14px;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > a:hover {
    background: transparent;
  }

  .store-section:has(> .store-section-head > a) > .store-section-head > a:hover > span {
    background: #007aff;
    color: #fff;
  }
}

@media (max-width: 620px) {
  .store-section:has(> .store-section-head > a) > .store-section-head > .section-heading-copy::before {
    display: block;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .container.store-section.home-screen {
    padding-right: 0;
    padding-left: 0;
  }

  .social-showcase {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .social-lead-card {
    min-height: 250px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 8px 18px;
    padding: 22px;
  }

  .social-lead-card > span {
    grid-column: 2 / 4;
    grid-row: 1;
  }

  .social-lead-card img {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: center;
    width: 92px;
    height: 92px;
    margin-top: 0;
  }

  .social-lead-card h3 {
    grid-column: 2 / 4;
    grid-row: 2;
    margin-top: 0;
    font-size: 30px;
  }

  .social-lead-card p {
    grid-column: 2 / 3;
    grid-row: 3;
    max-width: none;
    margin-top: 0;
    -webkit-line-clamp: 2;
  }

  .social-lead-card b {
    grid-column: 3;
    grid-row: 3;
    align-self: center;
    margin-top: 0;
  }

  .social-app-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .social-mosaic-item {
    min-height: 140px;
  }

  .trending-section .download-hero {
    min-height: auto;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 6px 16px;
    padding: 18px;
  }

  .trending-section .download-hero::before {
    display: none;
  }

  .trending-section .download-hero .editorial-label {
    display: none;
  }

  .trending-section .download-hero h3 {
    grid-column: 2;
    grid-row: 1;
    max-width: 100%;
    margin-top: 0;
    font-size: 24px;
    line-height: 1.12;
  }

  .trending-section .download-hero p {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    font-size: 13px;
    line-height: 1.35;
  }

  .trending-section .download-hero-image-frame {
    position: static;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 96px;
    height: 96px;
    border-radius: 22px;
  }

  .trending-section .download-hero img {
    width: 96px;
    height: 96px;
    border-radius: 22px;
  }

  .download-nav.detail-download-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .game-board,
  .games-section .game-board {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .game-card {
    min-height: 0;
    justify-content: flex-start;
  }

  .game-card-image-frame {
    margin-top: 0;
  }

  .article-hero h1 {
    font-size: 30px;
  }

  .detail-side-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.store-hero h2,
.category-hero h1,
.store-section-head h2,
.spotlight-story h2,
.detail-recommend-sidebar h2,
.detail-bottom-recommendations h2,
.detail-title,
.version-title,
.security-review h2,
.user-reviews h2,
.part-title,
.info-hero h1,
.info-card h2 {
  color: var(--heading);
}

@media (max-width: 900px) {
  body:has(.version-wrap) {
    background: #fff;
  }

  body:has(.version-wrap) .version-wrap {
    width: 100%;
    max-width: none;
    margin-top: 15px;
    padding: 14px 12px 42px;
  }

  body:has(.version-wrap) .version-main {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  body.detail-page {
    overflow-x: hidden;
    background: #fff;
  }

  body.detail-page .site-header {
    display: none;
  }

  body.detail-page .detail-wrap {
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding: 20px 12px 42px;
  }

  body.detail-page .detail-main,
  body.detail-page .detail-bottom-recommendations,
  body.detail-page .detail-recommend-sidebar {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  body.detail-page .detail-main {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  body.detail-page .article,
  body.detail-page .feature-list,
  body.detail-page .whats-new,
  body.detail-page .faq-list,
  body.detail-page .security-review,
  body.detail-page .user-reviews {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  body.detail-page .screens {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 68%);
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body.detail-page .screens::-webkit-scrollbar {
    display: none;
  }

  body.detail-page .screen-shot {
    aspect-ratio: 9 / 16;
    height: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  body.detail-page .detail-recommend-grid,
  body:has(.version-wrap) .detail-recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
  }

  body.detail-page .detail-recommend-card,
  body:has(.version-wrap) .detail-recommend-card {
    min-height: auto;
    align-self: stretch;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 64px 34px auto;
    align-content: start;
    align-items: start;
    gap: 7px 8px;
    padding: 12px;
  }

  body.detail-page .detail-recommend-card img,
  body:has(.version-wrap) .detail-recommend-card img {
    grid-column: 1 / 3;
    grid-row: 1;
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  body.detail-page .detail-recommend-card strong,
  body:has(.version-wrap) .detail-recommend-card strong {
    grid-column: 1 / 3;
    grid-row: 2;
    min-height: 34px;
    font-size: 14px;
    line-height: 1.2;
  }

  body.detail-page .detail-recommend-card small,
  body:has(.version-wrap) .detail-recommend-card small {
    grid-column: 1;
    grid-row: 3;
    align-self: center;
  }

  body.detail-page .detail-recommend-card span,
  body:has(.version-wrap) .detail-recommend-card span {
    grid-column: 2;
    grid-row: 3;
    align-self: center;
    justify-self: end;
  }

}

.store-home {
  --home-section-space: 48px;
}

.store-home > .container.store-section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: var(--home-section-space);
  padding-bottom: var(--home-section-space);
}

.store-home > .container.store-section.home-screen {
  padding-right: 0;
  padding-bottom: var(--home-section-space);
  padding-left: 0;
}

.store-home > .category-section,
.store-home > .trending-section,
.store-home > .article-section {
  margin-top: 0;
  margin-bottom: 0;
}

.store-home > .trending-section,
.store-home > .article-section {
  padding-top: var(--home-section-space);
  padding-bottom: var(--home-section-space);
}

.store-home > .wide-soft-section,
.store-home > .guide-footer-frame {
  margin-top: 0;
  margin-bottom: 0;
}

.store-home > .wide-soft-section {
  padding-top: 0;
  padding-bottom: 0;
}

.store-home > .wide-soft-section > .container.store-section,
.store-home > .guide-footer-frame > .container.store-section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: var(--home-section-space);
  padding-bottom: var(--home-section-space);
}

@media (max-width: 900px) {
  .store-home {
    --home-section-space: 40px;
  }
}

@media (max-width: 620px) {
  .store-home {
    --home-section-space: 30px;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "intro"
      "links"
      "note";
    gap: 18px;
  }

  .footer-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 901px) {
  .container.detail-wrap {
    width: 1180px;
    max-width: calc(100% - 32px);
    grid-template-columns: minmax(0, 1fr) 280px;
    justify-content: stretch;
  }
}

@media (min-width: 901px) and (max-width: 1000px) {
  body.detail-page .detail-recommend-card small {
    display: none;
  }
}

@media (max-width: 900px) {
  .trending-section .download-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trending-section .download-hero {
    min-height: 146px;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 5px 18px;
    padding: 20px;
  }

  .trending-section .download-hero::before {
    display: none;
  }

  .trending-section .download-hero img {
    position: static;
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: center;
    width: 104px;
    height: 104px;
    margin: 0;
    border-radius: 24px;
  }

  .trending-section .download-hero .editorial-label {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    width: fit-content;
    margin: 0;
  }

  .trending-section .download-hero h3 {
    grid-column: 2;
    grid-row: 2;
    max-width: 100%;
    min-width: 0;
    margin-top: 0;
    font-size: clamp(24px, 4.6vw, 30px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .trending-section .download-hero p {
    grid-column: 2;
    grid-row: 3;
    min-width: 0;
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.35;
  }
}

@media (max-width: 620px) {
  .trending-section .download-layout {
    gap: 16px;
  }

  .trending-section .download-hero {
    min-height: 128px;
    grid-template-columns: clamp(86px, 23vw, 104px) minmax(0, 1fr);
    gap: 5px 18px;
    padding: 18px 20px;
  }

  .trending-section .download-hero img {
    width: clamp(86px, 23vw, 104px);
    height: clamp(86px, 23vw, 104px);
    border-radius: 22px;
  }

  .trending-section .download-hero .editorial-label {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    width: fit-content;
    margin: 0;
  }

  .trending-section .download-hero h3 {
    grid-column: 2;
    grid-row: 2;
    font-size: clamp(20px, 5.5vw, 27px);
  }

  .trending-section .download-hero p {
    grid-column: 2;
    grid-row: 3;
    font-size: clamp(13px, 3.7vw, 16px);
  }
}

.detail-main .screens {
  display: flex;
  grid-template-columns: none;
  gap: 12px;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}

.detail-main .screens::-webkit-scrollbar {
  display: none;
}

.screens-carousel {
  position: relative;
  display: block;
  max-width: 100%;
  margin-top: 4px;
}

.screen-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 38px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 218, 226, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d1d1f;
  box-shadow: 0 14px 28px rgba(35, 45, 72, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition: transform 0.16s ease, opacity 0.16s ease, box-shadow 0.16s ease;
}

.screen-carousel-prev {
  left: 10px;
}

.screen-carousel-next {
  right: 10px;
}

.screen-carousel-btn::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.screen-carousel-prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.screen-carousel-next::before {
  transform: translateX(-2px) rotate(45deg);
}

.screen-carousel-btn:hover {
  color: #007aff;
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 18px 34px rgba(35, 45, 72, 0.18);
}

.screen-carousel-btn:disabled {
  opacity: 0.34;
  cursor: default;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(35, 45, 72, 0.08);
}

.detail-main .screen-shot {
  flex: 0 0 max(210px, calc((100% - 36px) / 4));
  aspect-ratio: 9 / 16;
  height: auto;
  min-height: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.detail-main .screen-shot.is-landscape {
  flex-basis: max(340px, calc((100% - 12px) / 2));
  aspect-ratio: 16 / 9;
}

.detail-main .screen-shot.is-square {
  aspect-ratio: 1 / 1;
}

.detail-main .screen-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f8fafc;
}

.detail-main .screen-shot.is-placeholder img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .detail-main .screen-shot {
    flex-basis: max(196px, 34%);
  }

  .detail-main .screen-shot.is-landscape {
    flex-basis: clamp(300px, 58vw, 460px);
  }
}

@media (max-width: 620px) {
  .screen-carousel-btn {
    width: 34px;
    height: 48px;
  }

  .screen-carousel-prev {
    left: 6px;
  }

  .screen-carousel-next {
    right: 6px;
  }

  .detail-main .screens {
    gap: 10px;
  }

  .detail-main .screen-shot {
    flex-basis: 72%;
  }

  .detail-main .screen-shot.is-landscape {
    flex-basis: 88%;
  }
}
