/* IN1001 landing — calm “app store” card layout on a soft canvas */

:root {
  --pl-green: #02875f;
  --pl-green-hover: #026e4d;
  --pl-green-soft: rgba(2, 135, 95, 0.12);
  --pl-ink: #0d0d0d;
  --pl-muted: #5f6368;
  --pl-body-soft: rgba(0, 0, 0, 0.45);
  --pl-body-strong: rgba(0, 0, 0, 0.72);
  --pl-divider: rgba(0, 0, 0, 0.1);
  --pl-ph: #d9d9d9;
  --pl-review-name: #1a1a1a;
  --pl-review-body: #5c5c5c;
  --pl-review-date: #8e8e8e;
  --pl-avatar: #6d8fa5;
  --pl-star-empty: #c9cdd3;
  --pl-bar-track: #e8eaed;
  --pl-pad-x: 16px;
  --pl-max: 375px;
  --pl-canvas: #eef1ef;
  --pl-surface: #ffffff;
  --pl-radius-sm: 8px;
  --pl-radius-md: 12px;
  --pl-radius-lg: 16px;
  --pl-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  --pl-shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --pl-ring: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--pl-canvas);
  color: var(--pl-ink);
  font-family: "Google Sans Flex", "Product Sans", Roboto, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#Kss23a,
#Nhsj8 {
  min-height: 100vh;
}

/* —— Fixed download strip —— */
.play-fixed-download {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.play-fixed-download__inner {
  max-width: var(--pl-max);
  margin: 0 auto;
  padding: 12px var(--pl-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.play-fixed-download__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.play-fixed-download__logo {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--pl-ph);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--pl-ring), var(--pl-shadow);
}

.play-fixed-download__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-fixed-download__meta {
  min-width: 0;
}

.play-fixed-download__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--pl-ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.play-fixed-download__sub {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.25;
  color: var(--pl-body-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.play-fixed-download__btn {
  border: none;
  background: linear-gradient(180deg, #03a06f 0%, var(--pl-green) 100%);
  color: #fff;
  border-radius: 10px;
  height: 36px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(2, 135, 95, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.play-fixed-download__btn:hover {
  background: linear-gradient(180deg, #029a6a 0%, var(--pl-green-hover) 100%);
  box-shadow: 0 3px 10px rgba(2, 135, 95, 0.4);
}

.play-fixed-download__btn:active {
  transform: scale(0.97);
}

/* —— Main column —— */
.play-shell {
  max-width: var(--pl-max);
  margin: 0 auto;
  padding: 62px 0 40px;
  background: transparent;
}

.play-pad {
  padding-left: var(--pl-pad-x);
  padding-right: var(--pl-pad-x);
}

/* —— Top bar (if used) —— */
.play-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 var(--pl-pad-x);
}

.play-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--pl-muted);
  font-size: 20px;
  font-weight: 600;
}

.play-brand svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.play-top-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.play-icon-btn {
  border: none;
  background: none;
  padding: 0;
  color: var(--pl-muted);
  cursor: pointer;
  display: flex;
  border-radius: 50%;
  transition: background 0.15s ease, color 0.15s ease;
}

.play-icon-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--pl-ink);
}

.play-icon-btn svg {
  width: 20px;
  height: 20px;
}

/* —— Hero —— */
.play-hero {
  display: flex;
  gap: 16px;
  padding: 8px var(--pl-pad-x) 0;
  align-items: center;
}

.play-icon-ph {
  width: 68px;
  height: 68px;
  border-radius: var(--pl-radius-lg);
  background: var(--pl-surface);
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: var(--pl-shadow-md), var(--pl-ring);
}

.play-icon-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-hero-text h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--pl-ink);
}

.play-dev {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--pl-green);
  letter-spacing: 0.01em;
}

/* —— Stats row (card) —— */
.play-stats {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 22px var(--pl-pad-x) 0;
  padding: 16px 12px;
  text-align: center;
  background: var(--pl-surface);
  border-radius: var(--pl-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--pl-shadow);
}

.play-stat {
  flex: 1;
  min-width: 0;
}

.play-stat-val {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pl-ink);
  letter-spacing: -0.02em;
}

.play-stat-val--stack {
  flex-direction: column;
  gap: 4px;
}

.play-stat-val--stack svg {
  width: 12px;
  height: 12px;
  fill: var(--pl-ink);
}

.play-stat-val svg {
  width: 17px;
  height: 17px;
  fill: var(--pl-green);
}

.play-stat-sub {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 500;
  color: var(--pl-body-soft);
  line-height: 1.25;
}

.play-stat-mid .play-stat-val svg {
  width: 12px;
  height: 12px;
  fill: var(--pl-ink);
}

.play-stat + .play-stat {
  border-left: 1px solid var(--pl-divider);
}

/* —— Install & share —— */
.play-install-wrap {
  margin-top: 22px;
  padding: 0 var(--pl-pad-x);
}

.play-install {
  width: 100%;
  max-width: 343px;
  margin: 0 auto;
  display: block;
  height: 42px;
  border: none;
  border-radius: var(--pl-radius-sm);
  background: linear-gradient(180deg, #03a06f 0%, var(--pl-green) 100%);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(2, 135, 95, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.play-install:hover {
  background: linear-gradient(180deg, #029a6a 0%, var(--pl-green-hover) 100%);
  box-shadow: 0 6px 16px rgba(2, 135, 95, 0.38);
}

.play-install:active {
  transform: scale(0.985);
}

.play-share-row {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 8px 0;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.play-share-row:hover {
  background: var(--pl-green-soft);
}

.play-share-row svg {
  width: 20px;
  height: 20px;
  fill: var(--pl-green);
}

.play-share-row span {
  font-size: 11px;
  font-weight: 600;
  color: var(--pl-green);
  letter-spacing: 0.02em;
}

.play-device {
  margin-top: 14px;
  margin-left: var(--pl-pad-x);
  margin-right: var(--pl-pad-x);
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--pl-surface);
  border-radius: var(--pl-radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--pl-shadow);
}

.play-device svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--pl-muted);
}

.play-device p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--pl-body-soft);
}

/* —— Screenshot strip —— */
.play-shots {
  margin-top: 22px;
  /* 横向 padding 不要写在本层：部分浏览器里 overflow-x + flex 的 padding
     不会稳定地作为「第一张卡片」的滚动起点，看起来像第一张往左「冲」出留白。
     用 ::before / ::after 做固定宽度的 flex 子项，把边距纳入可滚动宽度，对齐就稳了。 */
  padding: 0 var(--pl-pad-x);
  
}

.play-shots-inner{
  display: flex;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--pl-pad-x);
  scrollbar-width: none;
}

.play-shots::before,
.play-shots::after {
  content: "";
  flex: 0 0 var(--pl-pad-x);
  width: var(--pl-pad-x);
  flex-shrink: 0;
  pointer-events: none;
  scroll-snap-align: none;
}

.play-shots::-webkit-scrollbar {
  display: none;
}

.play-shot {
  flex: 0 0 114px;
  width: 114px;
  height: 198px;
  border-radius: var(--pl-radius-md);
  background: var(--pl-ph);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--pl-shadow-md), var(--pl-ring);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-shot:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}

.play-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* —— Copy sections —— */
.play-section {
  margin-top: 18px;
  margin-left: var(--pl-pad-x);
  margin-right: var(--pl-pad-x);
  padding: 16px 16px 17px;
  max-width: 343px;
  background: var(--pl-surface);
  border-radius: var(--pl-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--pl-shadow);
}

.play-section h2 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--pl-ink);
  letter-spacing: -0.02em;
}

.play-section p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--pl-body-soft);
}

/* —— Data safety —— */
.play-safety {
  margin: 18px var(--pl-pad-x) 0;
  padding: 16px 16px 17px;
  border-radius: var(--pl-radius-lg);
  max-width: 343px;
  background: var(--pl-surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--pl-shadow);
  border-left: 3px solid var(--pl-green);
}

.play-safety-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.play-safety-row + .play-safety-row {
  margin-top: 16px;
}

.play-safety-row svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--pl-green);
  opacity: 0.9;
}

.play-safety-row p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--pl-body-strong);
}

.play-safety-row .play-safety-note {
  margin-top: 4px;
  color: var(--pl-body-soft);
  font-size: 11px;
  line-height: 1.45;
}

/* —— Ratings header —— */
.play-rate {
  margin-top: 26px;
  margin-left: var(--pl-pad-x);
  margin-right: var(--pl-pad-x);
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.play-rate h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--pl-review-name);
  letter-spacing: -0.02em;
}

.play-rate-sub {
  margin: 8px 0 14px;
  font-size: 11px;
  color: var(--pl-review-date);
}

.play-stars-lg {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.play-stars-lg svg {
  width: 28px;
  height: 28px;
  color: var(--pl-star-empty);
}

.play-write {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 343px;
  min-height: 40px;
  padding: 0 16px;
  margin-left: auto;
  margin-right: auto;
  border: none;
  border-radius: var(--pl-radius-sm);
  background: linear-gradient(180deg, #03a06f 0%, var(--pl-green) 100%);
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(2, 135, 95, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.play-write:hover {
  background: linear-gradient(180deg, #029a6a 0%, var(--pl-green-hover) 100%);
}

.play-write:active {
  transform: scale(0.985);
}

/* —— Rating summary + bars —— */
.play-summary {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  margin: 20px var(--pl-pad-x) 0;
  padding: 18px 16px;
  max-width: 343px;
  background: var(--pl-surface);
  border-radius: var(--pl-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--pl-shadow);
}

.play-summary-left {
  flex: 0 0 92px;
  text-align: center;
}

.play-score-big {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--pl-ink);
  letter-spacing: -0.04em;
}

.play-summary-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 8px 0 6px;
}

.play-summary-stars svg {
  width: 13px;
  height: 13px;
  display: block;
  fill: var(--pl-green);
}

.play-summary-meta {
  font-size: 11px;
  font-weight: 500;
  color: var(--pl-body-soft);
}

.play-bars {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.play-bar-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.play-bar-line:last-child {
  margin-bottom: 0;
}

.play-bar-num {
  flex: 0 0 12px;
  font-size: 10px;
  font-weight: 600;
  text-align: right;
  color: var(--pl-muted);
}

.play-bar-track {
  flex: 1;
  height: 9px;
  border-radius: 999px;
  background: var(--pl-bar-track);
  overflow: hidden;
}

.play-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #02a068 0%, var(--pl-green) 100%);
}

/* —— Reviews —— */
.play-review {
  margin: 14px var(--pl-pad-x) 0;
  padding: 16px 16px 18px;
  max-width: 343px;
  background: var(--pl-surface);
  border-radius: var(--pl-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--pl-shadow);
}

.play-review:last-of-type {
  margin-bottom: 8px;
}

.play-review-head {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px 12px;
}

.play-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #8aaabe 0%, var(--pl-avatar) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  box-shadow: 0 2px 6px rgba(109, 143, 165, 0.35);
}

.play-review-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--pl-review-name);
  letter-spacing: -0.02em;
}

.play-kebab {
  border: none;
  background: rgba(0, 0, 0, 0.04);
  padding: 6px;
  border-radius: 999px;
  color: var(--pl-review-body);
  cursor: pointer;
  line-height: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.play-kebab:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--pl-ink);
}

.play-kebab svg {
  width: 20px;
  height: 20px;
}

.play-review-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 12px;
}

.play-review-stars {
  display: flex;
  gap: 2px;
}

.play-review-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--pl-green);
}

.play-review-date {
  font-size: 12px;
  font-weight: 500;
  color: var(--pl-review-date);
}

.play-review-body {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--pl-review-body);
  max-width: 100%;
}

@media (min-width: 420px) {
  .play-shell {
    margin-top: 8px;
    margin-bottom: 24px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
    background: var(--pl-surface);
    padding-top: 70px;
    padding-bottom: 48px;
  }

  .play-fixed-download {
    border-radius: 0 0 14px 14px;
    max-width: var(--pl-max);
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 100%;
  }
}
