[hidden] { display: none !important; }

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2') format('woff2');
}

:root {
  --primary: #01875f;
  --secondary: #0b57d0;
  --accent: #fbbc04;
  --bg: #ffffff;
  --text: #202124;
  --muted: #5f6368;
  --line: #e0e3e7;
  --surface: #ffffff;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: Roboto, Arial, "Microsoft YaHei", sans-serif;
  background:
    linear-gradient(rgba(255, 255, 255, .92), rgba(255, 255, 255, .92)),
    var(--mobile-bg, none),
    var(--bg);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  letter-spacing: 0;
  overflow-x: hidden;
}

button, input, textarea, select {
  font: inherit;
}

a {
  color: var(--primary);
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}

.play-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3c4043;
  font-size: 21px;
  white-space: nowrap;
}

.play-mark {
  width: 28px;
  height: 28px;
  display: inline-block;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: conic-gradient(from 30deg, #34a853, #4285f4, #fbbc04, #ea4335, #34a853);
  border-radius: 5px;
}

.tabs {
  display: flex;
  gap: 6px;
  align-self: stretch;
  overflow-x: auto;
}

.tabs a {
  display: inline-flex;
  align-items: center;
  height: 64px;
  padding: 0 14px;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.tabs a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.search-link {
  margin-left: auto;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
}

.search-link img {
  width: 22px;
  height: 22px;
}

.announce {
  position: sticky;
  top: 64px;
  z-index: 19;
  padding: 10px 24px;
  color: #3c2f00;
  background: #fff3cd;
  border-bottom: 1px solid #ffe49c;
  text-align: center;
}

.page-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 48px auto 56px;
}

.app-hero {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 8px 0 30px;
}

.app-icon-wrap {
  width: 176px;
  aspect-ratio: 1;
}

.app-icon {
  display: block;
  width: 176px;
  height: 176px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, .3), 0 2px 6px rgba(60, 64, 67, .15);
}

.app-main h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

.app-main {
  min-width: 0;
}

.developer {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
}

.subtitle {
  color: var(--muted);
  margin: 8px 0 0;
  max-width: 720px;
  overflow-wrap: anywhere;
}

.stats-strip {
  display: flex;
  gap: 34px;
  margin: 28px 0;
  color: var(--muted);
}

.stats-strip div {
  min-width: 86px;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.stats-strip div:last-child {
  border-right: 0;
}

.stats-strip strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  line-height: 1.4;
}

.stats-strip span {
  font-size: 13px;
}

.action-row,
.backup-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.backup-row {
  margin-top: 12px;
}

.primary-btn,
.secondary-btn,
.backup-btn {
  min-width: 220px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 600;
}

.primary-btn {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: #fff;
}

.primary-btn::after {
  content: '';
  position: absolute;
  inset: -120% auto auto -60%;
  width: 50%;
  height: 300%;
  transform: rotate(24deg);
  background: rgba(255, 255, 255, .65);
  animation: flash 3.8s ease-in-out infinite;
}

.secondary-btn,
.backup-btn {
  background: #edf4ff;
  color: var(--secondary);
}

.primary-btn:disabled,
.secondary-btn:disabled,
.backup-btn:disabled {
  opacity: .72;
  cursor: wait;
}

.link-btn {
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--secondary);
  padding: 8px 0;
  cursor: pointer;
  font-weight: 600;
}

.security-note,
.social-proof,
.muted {
  color: var(--muted);
}

.security-note {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: 14px;
}

.social-proof {
  margin: 8px 0 0;
  font-size: 14px;
}

.screenshots {
  margin: 20px 0 32px;
  max-width: 100%;
}

.shots-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 156px;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.shot {
  width: 156px;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafd;
}

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

.section-band {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

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

.section-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
}

.description {
  white-space: pre-line;
  max-width: 820px;
  line-height: 1.65;
  margin: 0;
}

.updated {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 22px 0 16px;
  color: var(--muted);
}

.updated strong {
  color: var(--text);
  font-weight: 500;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--primary);
  font-weight: 600;
}

.security-list {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.security-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.security-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.security-item strong {
  display: block;
  font-weight: 500;
  line-height: 1.45;
}

.security-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(280px, 1.2fr);
  gap: 32px;
}

.rating-layout {
  display: grid;
  grid-template-columns: 90px minmax(120px, 1fr);
  gap: 20px;
  align-items: center;
}

.rating-big {
  font-size: 64px;
  line-height: 1;
}

.rating-bars {
  display: grid;
  gap: 8px;
}

.rating-bars span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) var(--w), #e8eaed var(--w));
}

.reviews-list {
  display: grid;
  gap: 12px;
}

.review {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--surface);
}

.review strong {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
}

.review p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.contact-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(60, 64, 67, .24);
  font-weight: 600;
}

.full-mask,
.guide-mask {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, .94);
}

.guide-mask {
  z-index: 90;
  background: rgba(32, 33, 36, .34);
}

.mask-panel,
.guide-panel {
  width: min(460px, 100%);
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 26px;
  box-shadow: 0 8px 30px rgba(60, 64, 67, .18);
}

.mask-panel h1,
.guide-panel h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.2;
}

.mask-panel p,
.guide-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.guide-panel {
  position: relative;
}

.icon-btn {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
}

@keyframes flash {
  0%, 50%, 100% { transform: translateX(0) rotate(24deg); opacity: 0; }
  12% { opacity: .8; }
  28% { transform: translateX(680%) rotate(24deg); opacity: 0; }
}

@media (min-width: 860px) {
  body {
    background:
      linear-gradient(rgba(255, 255, 255, .94), rgba(255, 255, 255, .94)),
      var(--desktop-bg, var(--mobile-bg, none)),
      var(--bg);
    background-size: cover;
    background-position: center top;
  }
}

@media (max-width: 720px) {
  :root {
    --mobile-hero-offset: 102px;
  }

  .topbar {
    gap: 12px;
    min-height: 56px;
    padding: 0 14px;
  }

  .play-logo span:last-child {
    display: none;
  }

  .tabs a {
    height: 56px;
    padding: 0 10px;
    font-size: 14px;
  }

  .announce {
    top: 56px;
  }

  .page-shell {
    width: min(100% - 28px, 1120px);
    margin-top: 28px;
  }

  .app-hero {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 20px;
  }

  .app-icon-wrap,
  .app-icon {
    width: 84px;
    height: 84px;
    border-radius: 18px;
  }

  .app-main h1 {
    font-size: 34px;
  }

  .stats-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% + var(--mobile-hero-offset) - 24px);
    gap: 0;
    justify-content: space-between;
    margin: 22px 0;
    margin-left: calc(var(--mobile-hero-offset) * -1);
  }

  .stats-strip div {
    min-width: 0;
    flex: 1;
    padding: 0 8px;
    text-align: center;
  }

  .action-row,
  .backup-row,
  .link-btn,
  .security-note,
  .social-proof {
    margin-left: calc(var(--mobile-hero-offset) * -1);
    width: calc(100% + var(--mobile-hero-offset));
  }

  .primary-btn,
  .secondary-btn,
  .backup-btn {
    width: 100%;
    min-width: 0;
  }

  .shots-list {
    grid-auto-columns: 132px;
  }

  .shot {
    width: 132px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .footer {
    width: min(100% - 28px, 1120px);
  }
}
