:root {
  --pink: #f46091;
  --pink-2: #ff8aad;
  --deep: #2a1721;
  --muted: #7e6872;
}

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

html {
  scroll-behavior: smooth;
  background: #fff6fa;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: Inter, "HarmonyOS Sans SC", "Microsoft YaHei", system-ui, sans-serif;
  color: var(--deep);
  background: #fff6fa;
  overflow-x: hidden;
  position: relative;
}

.bg-rotator {
  position: fixed;
  inset: -28px;
  z-index: 0;
  overflow: hidden;
  background: #fff6fa;
}

.bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(1.08) brightness(1.03);
  transform: scale(1.02);
  animation: bg-fade 32s infinite;
}

.bg-slide:nth-child(1) {
  background-image: url("../assets/bg-1.webp");
  opacity: 1;
  animation-delay: 0s;
}

.bg-slide:nth-child(2) {
  background-image: url("../assets/bg-2.webp");
  animation-delay: 8s;
}

.bg-slide:nth-child(3) {
  background-image: url("../assets/bg-3.webp");
  animation-delay: 16s;
}

.bg-slide:nth-child(4) {
  background-image: url("../assets/bg-4.webp");
  animation-delay: 24s;
}

@keyframes bg-fade {
  0% { opacity: 0; transform: scale(1.02); }
  8% { opacity: 1; }
  25% { opacity: 1; }
  34% { opacity: 0; transform: scale(1.035); }
  100% { opacity: 0; transform: scale(1.02); }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 248, 251, 0.42), rgba(255, 238, 246, 0.10) 48%, rgba(255, 250, 252, 0.26)),
    radial-gradient(circle at 18% 16%, rgba(255, 216, 230, 0.24) 0, transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(255, 242, 248, 0.20) 0, transparent 36%);
}

body::after {
  content: "";
  position: fixed;
  inset: -40px;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.52), transparent 36%),
    radial-gradient(circle at 10% 92%, rgba(255, 171, 201, 0.22), transparent 30%),
    radial-gradient(circle at 92% 70%, rgba(255, 199, 218, 0.18), transparent 28%);
  backdrop-filter: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.30;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.petal {
  position: fixed;
  top: -8vh;
  width: 18px;
  height: 11px;
  z-index: 4;
  pointer-events: none;
  border-radius: 80% 20% 80% 20%;
  background: linear-gradient(135deg, #ff8caf, #ffe1ea);
  box-shadow: 0 6px 18px rgba(244, 96, 145, 0.22);
  opacity: 0.74;
  animation: petal-fall linear infinite;
}

.petal:nth-child(1) { left: 5%; animation-duration: 14s; animation-delay: -8s; }
.petal:nth-child(2) { left: 18%; animation-duration: 18s; animation-delay: -1s; }
.petal:nth-child(3) { left: 38%; animation-duration: 16s; animation-delay: -10s; }
.petal:nth-child(4) { left: 72%; animation-duration: 17s; animation-delay: -4s; }
.petal:nth-child(5) { left: 88%; animation-duration: 13s; animation-delay: -7s; }
.petal:nth-child(6) { left: 96%; animation-duration: 19s; animation-delay: -12s; }

@keyframes petal-fall {
  0% { transform: translate3d(0, -10vh, 0) rotate(0deg); }
  50% { transform: translate3d(-38px, 52vh, 0) rotate(180deg); }
  100% { transform: translate3d(34px, 112vh, 0) rotate(360deg); }
}

.page {
  position: relative;
  z-index: 5;
  width: min(1540px, calc(100% - 80px));
  margin: 0 auto;
  padding: 28px 0 46px;
}

.nav {
  height: 66px;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  text-decoration: none;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--pink);
  text-shadow: 0 18px 38px rgba(244, 96, 145, 0.20);
  white-space: nowrap;
}

.menu {
  justify-self: center;
  height: 54px;
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  padding: 0 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 238, 245, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 50px rgba(171, 88, 120, 0.10), inset 0 1px 0 rgba(255,255,255,0.92);
  backdrop-filter: blur(2px);
}

.menu a {
  position: relative;
  color: #35252d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 760;
}

.menu a.active {
  color: var(--pink);
}

.menu a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: 34px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--pink-2));
}

.btn-primary {
  border: 0;
  cursor: pointer;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.03em;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 132, 168, 0.78) 0%, rgba(240, 90, 139, 0.68) 50%, rgba(233, 73, 125, 0.74) 100%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 38px rgba(235, 76, 126, 0.30), inset 0 1px 0 rgba(255,255,255,0.58), inset 0 -18px 32px rgba(201, 35, 95, 0.12);
  backdrop-filter: blur(2px);
}

.hero {
  min-height: 520px;
  padding: 46px 0 18px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 62px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(56px, 5.25vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #2a1721;
}

.hero h1 .accent {
  color: transparent;
  background: linear-gradient(135deg, #ec4f83 0%, #ff7da2 55%, #d94b78 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}

.divider {
  width: 98px;
  height: 22px;
  margin: 24px 0 18px;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #f46091 0 38px, transparent 38px 60px, #f46091 60px 98px);
}

.divider::after {
  content: "✿";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--pink);
  background: transparent;
  font-size: 15px;
  line-height: 1;
}

.hero p {
  max-width: 570px;
  color: #493943;
  font-size: 17px;
  line-height: 1.92;
  font-weight: 650;
}

.actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.btn-primary,
.btn-secondary {
  min-width: 172px;
  height: 56px;
  font-size: 16px;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.btn-secondary {
  cursor: pointer;
  color: #503642;
  font-weight: 850;
  border-radius: 999px;
  border: 1px solid rgba(231, 78, 125, 0.34);
  background: linear-gradient(135deg, rgba(255,255,255,0.36), rgba(255, 238, 246, 0.18));
  box-shadow: 0 16px 46px rgba(163, 76, 110, 0.10), inset 0 1px 0 rgba(255,255,255,0.86);
  backdrop-filter: blur(2px);
}

.quick-tags {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 13px 14px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255, 238, 246, 0.18));
  backdrop-filter: blur(2px);
  box-shadow: 0 18px 42px rgba(174, 85, 121, 0.11), inset 0 1px 0 rgba(255,255,255,0.90);
}

.quick-tags span {
  padding: 0 16px;
  color: #594650;
  font-size: 14px;
  font-weight: 820;
  border-right: 1px solid rgba(52, 32, 43, 0.12);
  white-space: nowrap;
}

.quick-tags span:last-child {
  border-right: 0;
}

.product-stage {
  position: relative;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 70px 34px -30px 42px;
  z-index: -1;
  border-radius: 44px;
  background: rgba(95, 36, 72, 0.22);
  border: 1px solid rgba(255,255,255,0.24);
  filter: blur(20px);
  transform: rotate(-2.8deg) skewX(-1.2deg) translateY(30px);
}

.product-frame {
  position: relative;
  padding: 20px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,0.44), rgba(255,255,255,0.16));
  border: 1px solid rgba(255,255,255,0.84);
  box-shadow:
    0 42px 70px rgba(92, 40, 74, 0.30),
    0 18px 36px rgba(244, 96, 145, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.95);
  backdrop-filter: blur(3px);
  transform: perspective(960px) rotateY(-9.5deg) rotateX(3.6deg) rotateZ(-1.9deg) translateY(-7px);
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.product-frame:hover {
  box-shadow:
    0 48px 84px rgba(92, 40, 74, 0.34),
    0 22px 42px rgba(244, 96, 145, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.98);
}

.product-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 34px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0) 38%, rgba(255,255,255,0.20));
  mix-blend-mode: screen;
}

.launcher-shot {
  display: block;
  width: 100%;
  aspect-ratio: 800 / 480;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: 0 26px 70px rgba(111, 44, 75, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 228, 238, 0.65), rgba(255,255,255,0.40)),
    url("../assets/oaoi-launcher-home-sakura.webp");
  background-size: cover;
  background-position: center;
}

.launcher-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
  transition: transform 520ms ease;
  will-change: transform;
}

.product-frame:hover .launcher-shot img {
  transform: scale(1.025);
}

.showcase {
  position: relative;
  margin-top: 22px;
  padding: 16px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255, 238, 246, 0.18));
  border: 1px solid rgba(255,255,255,0.80);
  box-shadow: 0 22px 56px rgba(170, 78, 116, 0.12), inset 0 1px 0 rgba(255,255,255,0.86);
  backdrop-filter: blur(2px);
}

.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
}

.shot {
  flex: 0 0 calc((100% - 64px) / 5);
  aspect-ratio: 800 / 480;
  overflow: hidden;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 228, 238, 0.38), rgba(215, 161, 182, 0.30));
  border: 1px solid rgba(255,255,255,0.74);
  box-shadow: 0 12px 26px rgba(101, 47, 70, 0.12);
}

.shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.download {
  margin-top: 22px;
  min-height: 96px;
  display: grid;
  grid-template-columns: 1.05fr 1.95fr;
  align-items: center;
  gap: 28px;
  padding: 18px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.36), rgba(255, 238, 246, 0.20));
  border: 1px solid rgba(255,255,255,0.84);
  box-shadow: 0 22px 56px rgba(170, 78, 116, 0.12), inset 0 1px 0 rgba(255,255,255,0.90);
  backdrop-filter: blur(2px);
}

.download-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.download-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.52), rgba(255, 238, 246, 0.24));
  border: 1px solid rgba(255,255,255,0.58);
  box-shadow: 0 16px 36px rgba(238, 79, 131, 0.18), inset 0 1px 0 rgba(255,255,255,0.62);
}

.download-logo img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.download h2 {
  font-size: 26px;
  line-height: 1.1;
}

.download h2 span {
  color: var(--pink);
}

.download p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.platform {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.42), rgba(255, 238, 246, 0.20));
  border: 1px solid rgba(255,255,255,0.84);
  color: #2f2229;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(164, 72, 111, 0.08), inset 0 1px 0 rgba(255,255,255,0.88);
  backdrop-filter: blur(2px);
}

.platform-icon {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.platform small {
  display: block;
  margin-top: 4px;
  color: #947d88;
  font-size: 12px;
  font-weight: 750;
}

.changelog {
  margin-top: 22px;
  min-height: 150px;
  max-height: 218px;
  padding: 20px 28px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.42), rgba(255, 238, 246, 0.22));
  border: 1px solid rgba(255,255,255,0.84);
  box-shadow: 0 22px 56px rgba(170, 78, 116, 0.12), inset 0 1px 0 rgba(255,255,255,0.90);
  backdrop-filter: blur(2px);
}

.changelog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.changelog h2 {
  color: var(--pink);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.changelog-head span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.changelog-list {
  max-height: 142px;
  padding-right: 14px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 96, 145, 0.72) transparent;
}

.changelog-list::-webkit-scrollbar {
  width: 6px;
}

.changelog-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(244, 96, 145, 0.72);
}

.log-item {
  position: relative;
  padding-left: 18px;
}

.log-item + .log-item {
  margin-top: 10px;
}

.log-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(244, 96, 145, 0.10);
}

.log-item h3 {
  color: var(--pink);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.log-item p {
  margin-top: 4px;
  color: #765f6b;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.recommend-page {
  width: min(1180px, calc(100% - 80px));
}

.recommend-hero {
  padding: 64px 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 38px;
}

.recommend-eyebrow {
  color: var(--pink);
  font-size: 15px;
  font-weight: 900;
}

.recommend-hero h1 {
  margin-top: 14px;
  max-width: 840px;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.recommend-hero h1 span {
  color: transparent;
  background: linear-gradient(135deg, #ec4f83 0%, #ff7da2 62%, #d94b78 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.recommend-lead {
  margin-top: 18px;
  max-width: 780px;
  color: #493943;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 650;
}

.recommend-actions {
  margin-top: 30px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.recommend-panel,
.recommend-section {
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.40), rgba(255, 238, 246, 0.20));
  border: 1px solid rgba(255,255,255,0.84);
  box-shadow: 0 22px 56px rgba(170, 78, 116, 0.12), inset 0 1px 0 rgba(255,255,255,0.90);
  backdrop-filter: blur(2px);
}

.recommend-panel {
  min-height: 260px;
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 18px;
}

.recommend-panel img {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(238, 79, 131, 0.20);
}

.recommend-panel strong {
  color: #35252d;
  font-size: 18px;
  line-height: 1.7;
}

.recommend-panel span {
  color: #7e6872;
  font-size: 13px;
  font-weight: 800;
}

.recommend-section {
  margin-top: 22px;
  padding: 28px;
}

.recommend-section h2 {
  color: var(--pink);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.recommend-section h3 {
  color: #3b2932;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.recommend-section p {
  margin-top: 14px;
  color: #604d58;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 650;
}

.recommend-section a {
  color: var(--pink);
  font-weight: 900;
  text-decoration: none;
}

.question-list,
.compact-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.question-list span,
.compact-list span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #5c4651;
  font-size: 14px;
  font-weight: 820;
  background: rgba(255,255,255,0.36);
  border: 1px solid rgba(255,255,255,0.78);
}

.recommend-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
}

.fit-list {
  margin-top: 18px;
  padding-left: 20px;
  color: #604d58;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 650;
}

.note-box {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(255,255,255,0.78);
}

.faq-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-grid article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(255,255,255,0.78);
}

.faq-grid p {
  font-size: 14px;
  line-height: 1.75;
}

.recommend-ending {
  text-align: center;
}

.recommend-ending p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  margin-top: 18px;
  color: #493943;
  text-align: center;
  font-size: 13px;
  font-weight: 750;
}

footer p + p {
  margin-top: 8px;
}

.footer-disclaimer {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  color: #493943;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 650;
  white-space: nowrap;
}

.shot-preview {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 48px 92px;
  opacity: 0;
  pointer-events: none;
  background: rgba(42, 23, 33, 0.28);
  backdrop-filter: blur(8px);
  transition: opacity 180ms ease;
}

.shot-preview.is-open {
  opacity: 1;
  pointer-events: auto;
}

.shot-preview img {
  width: min(1080px, 86vw);
  max-height: 78vh;
  display: block;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: 0 32px 90px rgba(45, 18, 32, 0.34);
}

.preview-close,
.preview-nav {
  position: fixed;
  z-index: 21;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.78);
  color: var(--pink);
  background: rgba(255,255,255,0.54);
  box-shadow: 0 16px 40px rgba(85, 36, 58, 0.18);
  backdrop-filter: blur(6px);
}

.preview-close {
  top: 28px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

.preview-nav {
  top: 50%;
  width: 48px;
  height: 64px;
  transform: translateY(-50%);
  border-radius: 999px;
  font-size: 36px;
}

.preview-prev { left: 30px; }
.preview-next { right: 30px; }

@media (max-width: 1180px) {
  .page { width: min(100% - 36px, 980px); }
  .nav { grid-template-columns: 1fr; }
  .menu { display: none; }
  .hero { grid-template-columns: 1fr; gap: 38px; }
  .product-frame { transform: none; }
  .download { grid-template-columns: 1fr; }
  .recommend-page { width: min(100% - 36px, 920px); }
  .recommend-hero,
  .recommend-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page { width: min(100% - 24px, 560px); padding-top: 18px; }
  .brand { font-size: 24px; }
  .hero { padding-top: 34px; }
  .hero h1 { font-size: 46px; }
  .hero p { font-size: 15px; }
  .actions { flex-direction: column; align-items: stretch; }
  .quick-tags { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .quick-tags span { border-right: 0; padding: 6px 10px; }
  .showcase { padding: 14px; }
  .gallery-strip { gap: 12px; }
  .shot { flex-basis: calc((100% - 12px) / 2); }
  .platforms { grid-template-columns: 1fr; }
  .download-info { align-items: flex-start; }
  .shot-preview { padding: 32px 18px; }
  .shot-preview img { width: 92vw; max-height: 72vh; border-radius: 18px; }
  .preview-nav { width: 40px; height: 54px; }
  .preview-prev { left: 10px; }
  .preview-next { right: 10px; }
  .recommend-page { width: min(100% - 24px, 560px); }
  .recommend-hero { padding-top: 34px; gap: 24px; }
  .recommend-hero h1 { font-size: 40px; }
  .recommend-lead { font-size: 15px; }
  .recommend-actions { flex-direction: column; align-items: stretch; }
  .recommend-section,
  .recommend-panel {
    padding: 20px;
    border-radius: 22px;
  }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-disclaimer { white-space: normal; }
}
