:root {
  color-scheme: light;
  --bg: #fff;
  --text: #2b2d30;
  --muted: #697078;
  --line: #dfe3e8;
  --line-soft: #edf0f3;
  --green: #008b61;
  --green-soft: #e0f3ed;
  --pink: #ff68bc;
  --page-width: 480px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #e3e6ea;
  color: var(--muted);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

button {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: #e3e6ea;
}

.play-page {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 27px 22px 34px;
  overflow-x: hidden;
  background: #fff;
}

.hero {
  padding-bottom: 62px;
}

.app-head {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.app-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.app-info {
  min-width: 0;
}

.app-info h1 {
  margin: 0 0 2px;
  color: var(--text);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.app-info strong {
  display: block;
  color: var(--green);
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
}

.app-info span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 17px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 29px;
}

.stat {
  min-width: 0;
  min-height: 43px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  border-right: 1px solid var(--line-soft);
  padding: 0 4px;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--text);
  font-size: 13px;
  line-height: 17px;
  font-weight: 700;
}

.stat span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 16px;
}

.install-button {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 58px;
  margin-top: 35px;
  border: 0;
  border-radius: 7px;
  background: var(--green);
  color: #e9f6ef;
  font-weight: 700;
  cursor: pointer;
}

.install-button::before {
  content: "";
  position: absolute;
  top: -55%;
  left: -45%;
  width: 34%;
  height: 210%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(22deg);
  animation: install-shine 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes install-shine {
  0% {
    left: -45%;
  }

  46%,
  100% {
    left: 115%;
  }
}

.install-main,
.install-sub {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.install-main {
  color: #ffdf2e;
  font-size: 17px;
  line-height: 20px;
}

.install-main svg {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  color: currentColor;
}

.install-sub {
  margin-top: 3px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  margin-top: 20px;
}

.action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

.action svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.action em {
  font-style: normal;
}

.screenshot-gallery {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.screenshots {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.screenshots::-webkit-scrollbar {
  display: none;
}

.screenshots img {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  height: 190px;
  border-radius: 8px;
}

.screenshot-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #edf0f3;
  border-radius: 50%;
  background: #fff;
  color: #6f777f;
  box-shadow: 0 2px 7px rgba(60, 64, 67, 0.2);
  transform: translateY(-50%);
  cursor: pointer;
}

.screenshot-nav svg {
  width: 18px;
  height: 18px;
}

.screenshot-nav--prev {
  left: 8px;
}

.screenshot-nav--next {
  right: 8px;
}

.section {
  padding-top: 20px;
  max-width: 100%;
  min-width: 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section-title h2 {
  margin: 0;
  color: var(--text);
  font-size: 19px;
  line-height: 24px;
  font-weight: 700;
}

.section-title span {
  color: #60666d;
  font-size: 29px;
  line-height: 1;
}

.about p,
.data-safety p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  overflow-wrap: break-word;
}

.about .feature {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
}

.updated {
  display: grid;
  gap: 7px;
  margin-top: 28px;
}

.updated strong {
  color: var(--text);
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}

.updated span {
  color: var(--muted);
  font-size: 14px;
  line-height: 18px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 28px;
}

.chips span,
.device-tab {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
}

.data-safety {
  padding-top: 28px;
}

.safety-card {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.safety-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.safety-icon,
.safety-icon svg {
  width: 20px;
  height: 20px;
  color: #60666d;
}

.safety-row strong {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  overflow-wrap: break-word;
}

.safety-row small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 16px;
}

.safety-card a {
  color: var(--green);
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  text-decoration: none;
}

.ratings {
  padding-top: 28px;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.device-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.device-tab.active {
  border-color: transparent;
  background: var(--green-soft);
  color: var(--green);
}

.device-tab svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.rating-summary {
  display: grid;
  grid-template-columns: minmax(72px, 94px) minmax(0, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.score strong {
  display: block;
  color: var(--text);
  font-size: 55px;
  line-height: 56px;
  font-weight: 400;
}

.score span {
  display: block;
  color: var(--green);
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 1px;
}

.score small {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 12px;
  line-height: 16px;
}

.bars {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding-top: 8px;
}

.bar-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}

.bar-row span {
  font-size: 12px;
  line-height: 12px;
}

.bar-track {
  height: 8px;
  border-radius: 999px;
  background: #e3e6ea;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.reviews {
  display: grid;
  gap: 34px;
  padding-top: 40px;
}

.review-head {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--avatar);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.review-head strong {
  color: var(--text);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.more {
  color: #5f6368;
  font-size: 23px;
  line-height: 1;
}

.review-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  color: var(--green);
  font-size: 12px;
  line-height: 16px;
}

.review-meta em {
  color: var(--muted);
  font-style: normal;
}

.review p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 19px;
  font-weight: 400;
  overflow-wrap: break-word;
}

@media (max-width: 430px) {
  .play-page {
    padding-inline: 16px;
  }

  .app-info h1 {
    font-size: 22px;
    line-height: 28px;
  }

  .stat span {
    font-size: 11px;
  }

  .score strong {
    font-size: 44px;
    line-height: 46px;
  }

  .rating-summary {
    gap: 14px;
  }

  .screenshots img {
    height: 170px;
  }
}
