:root {
  --blue: #1a73e8;
  --green: #01875f;
  --text: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --surface: #ffffff;
  --subtle: #f8fafd;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  overflow-x: hidden;
}

html[dir="rtl"] body {
  direction: rtl;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: #5f6368;
  font-size: 22px;
  text-decoration: none;
}

.play-mark {
  width: 28px;
  height: 28px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(135deg, #00a173 0 38%, #ffbe00 38% 65%, #ea4335 65%);
}

.store-tabs {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: 30px;
  margin-left: 34px;
  margin-right: auto;
}

.store-tabs a {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  color: #3c4043;
  font-size: 14px;
  text-decoration: none;
}

.store-tabs a.is-active {
  color: var(--green);
  font-weight: 500;
}

.store-tabs a.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--green);
}

.top-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

.icon-button,
.help-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #3c4043;
  cursor: pointer;
}

.icon-button svg,
.help-button svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: #f1f3f4;
  cursor: pointer;
}

.account-avatar span {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.account-avatar span::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c5c8cc;
}

.account-avatar span::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: -3px;
  left: 3px;
  height: 14px;
  border-radius: 50% 50% 0 0;
  background: #c5c8cc;
}

.page {
  width: 100%;
  margin: 0;
  padding: 0 0 72px;
}

.app-hero {
  position: relative;
  overflow: visible;
  background: var(--surface);
  color: var(--text);
}

.app-hero::before {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "stats stats"
    "actions actions"
    "note note";
  gap: 26px 28px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 0;
}

.app-title-block {
  grid-area: title;
  align-self: center;
  min-width: 0;
  max-width: 720px;
}

.app-title-block p,
.content-section p,
.long-description p,
.data-safety > p,
.review-card p {
  overflow-wrap: anywhere;
}

.app-icon {
  grid-area: icon;
  width: 128px;
  height: 128px;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(60, 64, 67, 0.18);
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 500;
}

.developer {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.tagline {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.hero-meta {
  display: contents;
}

.stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  margin: 10px 0 8px;
  color: var(--muted);
}

.stats div {
  min-height: 52px;
  padding: 0 22px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.stats div:first-child {
  border-left: 0;
}

.stats strong {
  display: block;
  color: var(--text);
  font-size: 16px;
}

.stats span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

.action-row {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  max-width: 780px;
  margin-top: 6px;
}

button {
  font: inherit;
}

.install-button,
.store-app-button,
.tool-button {
  min-height: 44px;
  border-radius: 8px;
  cursor: pointer;
}

.install-button {
  position: relative;
  flex: 0 0 200px;
  min-width: 200px;
  overflow: hidden;
  border: 0;
  background: var(--green);
  color: #fff;
  font-weight: 700;
}

.install-button.is-play {
  background: var(--blue);
}

.progress-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
}

.store-app-button {
  min-width: 202px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green);
  font-weight: 700;
}

.tool-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 700;
  line-height: 1.2;
}

.share-icon,
.bookmark-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.share-icon svg,
.bookmark-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.device-note {
  grid-area: note;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.device-note::before {
  content: "";
  width: 18px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-width: 4px;
  box-shadow: 8px 6px 0 -5px currentColor;
}

.ios-help {
  width: min(1120px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--subtle);
}

.ios-help p,
.content-section p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.ios-steps {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  counter-reset: ios-step;
  list-style: none;
}

.ios-steps li {
  position: relative;
  min-height: 34px;
  padding-left: 44px;
  color: #3c4043;
  font-size: 15px;
  line-height: 1.45;
}

html[dir="rtl"] .ios-steps li {
  padding-right: 44px;
  padding-left: 0;
}

.ios-steps li::before {
  counter-increment: ios-step;
  content: counter(ios-step);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e6f4ea;
  color: #137333;
  font-weight: 700;
}

html[dir="rtl"] .ios-steps li::before {
  right: 0;
  left: auto;
}

.screens {
  width: min(1120px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
  margin-top: 48px;
}

.screen-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 240px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.screen-strip img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f1f3f4;
}

.content-section {
  width: min(760px, calc(100% - 48px));
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 46px;
}

.long-description {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.long-description p {
  margin: 0;
  color: #3c4043;
  font-size: 15px;
  line-height: 1.65;
}

.updated-block {
  display: grid;
  gap: 6px;
  margin-top: 24px;
}

.updated-block span {
  color: var(--muted);
  font-size: 13px;
}

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

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  color: #3c4043;
  font-size: 14px;
  text-decoration: none;
}

.data-safety > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.safety-box {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.safety-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
}

.safety-item img {
  width: 28px;
  height: 28px;
  margin-top: 2px;
}

.safety-item strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.safety-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.text-button {
  justify-self: start;
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--green);
  cursor: pointer;
  font-weight: 700;
}

.ghost-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--muted);
  font-size: 0;
}

.ghost-arrow::after {
  content: ">";
  margin: 0;
  font-size: 20px;
}

html[dir="rtl"] .ghost-arrow::after,
html[dir="rtl"] .arrow-button::after {
  transform: scaleX(-1);
}

.reviews-section {
  width: min(820px, calc(100% - 48px));
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 46px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.arrow-button {
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
}

.arrow-button::after {
  content: ">";
  display: inline-block;
  margin-left: 8px;
}

.arrow-button[aria-expanded="true"]::after {
  content: "^";
}

.verified-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.device-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.device-chip {
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.device-chip.is-active {
  border-color: #c4eedc;
  background: #e6f4ea;
  color: #137333;
}

.rating-panel {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 30px;
}

.rating-total strong {
  display: block;
  color: var(--text);
  font-size: 58px;
  font-weight: 500;
  line-height: 1;
}

.star-row {
  display: inline-flex;
  gap: 1px;
  color: #bdc1c6;
  font-size: 15px;
  line-height: 1;
}

.star-row .is-filled {
  color: var(--green);
}

.rating-total .star-row {
  margin: 8px 0;
}

.rating-total span:last-child {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

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

.rating-bar-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.rating-bar-row div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eaed;
}

.rating-bar-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.review-list {
  display: grid;
  gap: 28px;
}

.review-card {
  padding-top: 2px;
}

.review-card.is-extra {
  display: none;
}

.review-list.show-all .review-card.is-extra {
  display: block;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.review-user img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f1f3f4;
}

.review-user strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
}

.more-button {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: var(--muted);
  font-size: 13px;
}

.review-card p {
  margin: 0;
  color: #3c4043;
  font-size: 15px;
  line-height: 1.55;
}

.helpful-copy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.helpful-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.helpful-row button {
  min-width: 52px;
  height: 32px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.developer-response {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid #d2e3fc;
  background: #f8fafd;
}

html[dir="rtl"] .developer-response {
  border-right: 3px solid #d2e3fc;
  border-left: 0;
}

.developer-response div {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

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

.app-support {
  max-width: 820px;
}

.support-list {
  border-top: 1px solid var(--line);
}

.support-item {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
}

.support-item span {
  color: var(--muted);
  font-size: 13px;
}

.support-item strong {
  color: #3c4043;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.related-section {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 48px;
}

.related-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 172px;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 0 10px;
}

.related-card {
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 7px;
  color: var(--text);
  text-decoration: none;
}

.related-card img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
}

.related-card strong {
  min-height: 40px;
  overflow: hidden;
  color: #202124;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.related-card span,
.related-card em {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-card em::after {
  content: " *";
  color: var(--green);
}

.report-link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(1120px, calc(100% - 48px));
  margin: 42px auto 0;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.report-link::before {
  content: "!";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 8px auto 0;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 40px;
  max-width: 620px;
}

.footer-columns h3 {
  margin: 0 0 14px;
  color: #3c4043;
  font-size: 14px;
  font-weight: 500;
}

.footer-columns a,
.footer-meta a {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  text-decoration: none;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  align-items: center;
  margin-top: 34px;
  font-size: 12px;
}

.footer-meta a {
  display: inline-block;
  line-height: 1.4;
}

.footer-region {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
}

.footer-region img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.footer-flag {
  font-size: 18px;
  line-height: 1;
}

.mobile-nav {
  display: none;
}

.language-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(32, 33, 36, 0.22);
}

.language-panel {
  position: fixed;
  left: 50%;
  bottom: 36px;
  z-index: 60;
  width: min(420px, calc(100% - 32px));
  max-height: min(560px, calc(100vh - 72px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(60, 64, 67, 0.24);
  opacity: 0;
  transform: translate(-50%, 18px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-panel.is-open {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.language-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 12px 0 20px;
  border-bottom: 1px solid var(--line);
}

.language-panel-head h2 {
  margin: 0;
  font-size: 18px;
}

.language-close {
  position: relative;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.language-close::before,
.language-close::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 12px;
  width: 16px;
  height: 2px;
  background: #5f6368;
}

.language-close::before {
  transform: rotate(45deg);
}

.language-close::after {
  transform: rotate(-45deg);
}

.language-close:hover,
.language-option:hover,
.language-option:focus-visible {
  background: #f1f3f4;
}

.language-options {
  display: grid;
  max-height: min(480px, calc(100vh - 136px));
  overflow-y: auto;
  padding: 8px 0;
}

.language-option {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 8px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

html[dir="rtl"] .language-option {
  text-align: right;
}

.language-radio {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 2px solid #5f6368;
  border-radius: 50%;
}

.language-option.is-active .language-radio {
  border-color: var(--green);
}

.language-option.is-active .language-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.language-option-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.language-option-copy strong,
.language-option-copy em {
  overflow-wrap: anywhere;
}

.language-option-copy strong {
  font-size: 14px;
  font-weight: 500;
}

.language-option-copy em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(32, 33, 36, 0.42);
}

.install-drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  max-width: 640px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 18px 18px 0 0;
  background: #fff;
  box-shadow: 0 -12px 28px rgba(60, 64, 67, 0.24);
  transform: translateY(110%);
  transition: transform 180ms ease;
}

.install-drawer.is-open {
  transform: translateY(0);
}

.drawer-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.drawer-head img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.drawer-head h2 {
  margin-bottom: 4px;
  font-size: 18px;
}

.drawer-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 760px) {
  .store-tabs {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 54px;
  }

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

  .brand {
    gap: 9px;
    font-size: 22px;
  }

  .play-mark {
    width: 28px;
    height: 28px;
  }

  .top-actions {
    gap: 8px;
  }

  .icon-button,
  .help-button {
    width: 40px;
    height: 40px;
  }

  .icon-button svg,
  .help-button svg {
    width: 24px;
    height: 24px;
  }

  .page {
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .app-hero {
    min-height: 0;
  }

  .app-hero::before {
    content: none;
  }

  .hero-content {
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "stats stats"
      "actions actions"
      "note note";
    gap: 22px 18px;
    width: calc(100% - 32px);
    min-height: 0;
    padding: 32px 0 0;
  }

  .hero-meta {
    display: contents;
  }

  .app-icon {
    width: 88px;
    height: 88px;
    border-radius: 20px;
  }

  h1 {
    font-size: 30px;
  }

  .stats {
    width: 100%;
    max-width: 100%;
    margin: 6px 0;
  }

  .stats div {
    min-height: 52px;
    padding: 0 8px;
  }

  .stats span {
    font-size: 12px;
  }

  .action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
    max-width: 100%;
    margin-top: 0;
  }

  .install-button,
  .store-app-button {
    flex: 0 0 auto;
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .tool-button {
    justify-content: flex-start;
    min-height: 40px;
    padding: 0 2px;
    white-space: nowrap;
  }

  .screen-strip {
    grid-auto-columns: calc((100vw - 48px) / 2);
  }

  .ios-help,
  .screens,
  .content-section,
  .reviews-section,
  .related-section,
  .report-link {
    width: calc(100% - 32px);
  }

  .content-section,
  .reviews-section,
  .related-section,
  .app-support {
    max-width: 100%;
    min-width: 0;
  }

  .section-heading {
    align-items: flex-start;
  }

  .arrow-button {
    max-width: 44%;
    white-space: normal;
    text-align: right;
  }

  .rating-panel {
    grid-template-columns: 96px 1fr;
    gap: 16px;
  }

  .rating-total strong {
    font-size: 44px;
  }

  .helpful-row {
    flex-wrap: wrap;
  }

  .safety-box {
    padding: 18px;
  }

  .related-strip {
    grid-auto-columns: 148px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: 48px;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 -1px 2px rgba(60, 64, 67, 0.04);
  }

  .mobile-nav a {
    display: grid;
    place-items: center;
    gap: 2px;
    min-width: 0;
    padding: 3px 0 2px;
    color: #3c4043;
    font-size: 12px;
    line-height: 1.1;
    text-decoration: none;
  }

  .mobile-nav a.is-active {
    color: var(--green);
    font-weight: 500;
  }

  .mobile-nav svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-nav span {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
