/* play-listing v3 2026-08-20 */
:root {
  --play: #01875f;
  --play-hover: #137333;
  --ink: #202124;
  --muted: #5f6368;
  --line: #e8eaed;
  --bg: #fff;
  --chip: #f1f3f4;
  --star: #01875f;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: Roboto, "Google Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--play); text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1040px, calc(100% - 2rem)); margin: 0 auto; }

.topbar {
  position: sticky; top: 0; z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.topbar-inner { display: flex; align-items: center; gap: 1rem; min-height: 56px; }
.play-mark {
  display: flex; align-items: center; gap: .5rem;
  color: var(--ink); font-weight: 500; font-size: 1.15rem;
}
.play-mark span { color: #5f6368; font-weight: 400; }
.search {
  flex: 1; max-width: 720px; margin-left: auto;
  background: var(--chip); border-radius: 8px; padding: .55rem .9rem;
  color: var(--muted); font-size: .9rem;
}

.app-head { display: grid; grid-template-columns: 96px 1fr; gap: 1.1rem; padding: 1.4rem 0 1rem; }
.app-icon { width: 96px; height: 96px; border-radius: 22px; }
.app-head h1 { font-size: 1.55rem; font-weight: 400; line-height: 1.25; margin-bottom: .2rem; }
.dev { color: var(--play); font-size: .95rem; font-weight: 500; display: inline-block; margin-bottom: .35rem; }
.contains { color: var(--muted); font-size: .8rem; }

.stats {
  display: flex; gap: 0;
  margin: .3rem 0 1rem; color: var(--muted); font-size: .75rem;
}
.stat { padding: 0 1rem; border-right: 1px solid var(--line); text-align: center; min-width: 88px; }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat b { display: block; color: var(--ink); font-size: .95rem; font-weight: 500; }
.stat .star { color: var(--star); }

.install {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: .55rem 1.6rem; border-radius: 8px;
  background: var(--play); color: #fff !important; font-weight: 500; font-size: .9rem; border: 0; cursor: pointer;
}
.install:hover { background: var(--play-hover); }
.install-row { display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; }
.ghost {
  min-height: 40px; padding: .55rem 1rem; border-radius: 8px;
  border: 1px solid var(--line); color: var(--play); font-weight: 500; background: #fff;
}

.shots {
  display: flex; gap: .75rem; overflow-x: auto; padding: .4rem 0 1.2rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.shots img {
  height: 280px; width: auto; border-radius: 12px; flex: 0 0 auto;
  scroll-snap-align: start; border: 1px solid var(--line);
}

h2 { font-size: 1.15rem; font-weight: 500; margin: 0 0 .8rem; }
h3 { font-size: 1rem; font-weight: 500; margin: 1rem 0 .4rem; }
section.block { padding: 1.1rem 0 1.3rem; border-top: 1px solid var(--line); }
p { color: var(--muted); margin: 0 0 .75rem; }
p strong { color: var(--ink); font-weight: 500; }
ol, ul { padding-left: 1.15rem; color: var(--muted); }
li { margin: .3rem 0; }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin: .8rem 0; }
.chip { background: var(--chip); color: var(--ink); border-radius: 8px; padding: .35rem .7rem; font-size: .82rem; }
.updated { color: var(--muted); font-size: .82rem; margin-top: .5rem; }

.reviews-head { display: grid; grid-template-columns: 120px 1fr; gap: 1.2rem; align-items: center; margin-bottom: 1.2rem; }
.score { font-size: 3.2rem; font-weight: 400; line-height: 1; }
.bars { display: grid; gap: .28rem; }
.bar { display: grid; grid-template-columns: 12px 1fr; gap: .5rem; align-items: center; font-size: .75rem; color: var(--muted); }
.bar i { display: block; height: 8px; background: var(--chip); border-radius: 8px; overflow: hidden; }
.bar i span { display: block; height: 100%; background: var(--play); }

.review { display: grid; grid-template-columns: 40px 1fr; gap: .75rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.review img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review .who { font-weight: 500; color: var(--ink); }
.review .meta { font-size: .78rem; color: var(--muted); margin: .15rem 0 .4rem; }
.review p { margin: 0; }
.helpful { font-size: .78rem; color: var(--muted); margin-top: .45rem; }

.facts { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.fact { background: var(--chip); border-radius: 8px; padding: .8rem .9rem; }
.fact b { display: block; color: var(--ink); margin-bottom: .2rem; font-weight: 500; }

details { border-top: 1px solid var(--line); padding: .7rem 0; }
summary { cursor: pointer; font-weight: 500; color: var(--ink); }
details p { margin-top: .45rem; }

footer { border-top: 1px solid var(--line); padding: 1.4rem 0 5rem; font-size: .8rem; color: var(--muted); }

.sticky-cta {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50;
  min-height: 48px; justify-content: center;
}
@media (max-width: 720px) {
  .app-head { grid-template-columns: 72px 1fr; }
  .app-icon { width: 72px; height: 72px; border-radius: 16px; }
  .shots img { height: 220px; }
  .facts, .reviews-head { grid-template-columns: 1fr; }
  .install-row .install { flex: 1; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
  .search { display: none; }
}
