:root {
  --brand: #07a35a;
  --brand-dark: #057a45;
  --ink: #202124;
  --muted: #5f6368;
  --soft: #f5f7f8;
  --line: #e6e9ec;
  --ios-blue: #007aff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  max-width: 750px;
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
}

.is-loading .loading-screen {
  display: flex;
}

.loading-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.loading-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(7, 163, 90, 0.18);
  border-top-color: var(--brand);
  border-radius: 999px;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.reward-dialog {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.58);
}

.reward-dialog.is-visible {
  display: flex;
}

.reward-dialog__card {
  width: 100%;
  max-width: 690px;
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: 28px 18px 22px;
  border-radius: 16px;
  background: #ffffff;
  color: #0f1115;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.reward-dialog__badge {
  text-align: center;
}

.reward-dialog__badge img {
  width: 176px;
  max-width: 54%;
  height: auto;
}

.reward-dialog__title {
  margin: 18px 0 18px;
  color: #111111;
  font-size: 21px;
  line-height: 1.28;
  text-align: center;
}

.reward-dialog__title span,
.reward-dialog__copy span {
  color: #00875f;
}

.reward-dialog__app {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 94px;
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.16);
}

.reward-dialog__icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.reward-dialog__main {
  min-width: 0;
}

.reward-dialog__name-row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.reward-dialog__name-row strong {
  color: #111111;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.reward-dialog__name-row img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.reward-dialog__main p {
  margin: 9px 0 7px;
  color: #00875f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.reward-dialog__protect {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #4f5358;
  font-size: 11px;
  line-height: 1.2;
}

.reward-dialog__protect img {
  width: 12px;
  height: 12px;
}

.reward-dialog__copy {
  margin: 24px 0 18px;
  color: #111111;
  font-size: 18px;
  line-height: 1.35;
}

.reward-dialog__install {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #00875f;
  color: #ffffff;
  font-size: 17px;
  line-height: 1;
  text-align: center;
}

.reward-dialog__install[aria-disabled='true'] {
  background: #8cb5a8;
  pointer-events: none;
}

.android-page {
  display: none;
  padding: 34px 46px 62px;
}

.is-ready .android-page {
  display: block;
}

.gplay-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.gplay-header__icon {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  border-radius: 13px;
  object-fit: cover;
}

.gplay-header__main {
  min-width: 0;
  flex: 1;
}

.gplay-header__title-row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.gplay-header__title-row h1 {
  margin: 4px 0 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.gplay-header__badge {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.gplay-header__developer {
  margin: 8px 0 6px;
  color: #00875f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.gplay-header__protect {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #5f6368;
  font-size: 10px;
  line-height: 1.2;
}

.gplay-header__protect img {
  width: 12px;
  height: 12px;
}

.gplay-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

.gplay-stat {
  min-height: 45px;
  padding: 0 12px;
  text-align: center;
}

.gplay-stat + .gplay-stat {
  border-left: 1px solid #e6e9ec;
}

.gplay-stat strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #303134;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.gplay-stat strong img {
  width: 11px;
  height: 11px;
}

.gplay-stat span {
  display: block;
  margin-top: 6px;
  color: #80868b;
  font-size: 12px;
  line-height: 1.2;
}

.gplay-stat__choice {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.gplay-stat__age {
  width: 27px;
  height: auto;
  object-fit: contain;
}

.gplay-install-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding: 0 10px;
}

.gplay-install-hero__scan {
  width: 31%;
  min-width: 110px;
  max-width: 250px;
  object-fit: contain;
}

.gplay-install-hero__qr-block {
  width: 25%;
  min-width: 112px;
  max-width: 178px;
  flex: 0 0 auto;
  text-align: center;
}

.gplay-install-hero__qr {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.gplay-install-hero__qr-corners {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.gplay-install-hero__qr-img {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.gplay-install-hero__qr-block p {
  margin: 8px 0 0;
  color: #3c4043;
  font-size: 18px;
  line-height: 1.18;
}

.gplay-install-hero__arrow {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.gplay-install-hero__phone {
  display: flex;
  width: 94px;
  min-height: 165px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  border: 3px solid #2b2c33;
  border-radius: 8px;
  background: #fff;
}

.gplay-install-hero__phone img {
  width: 42px;
  height: 42px;
  border-radius: 9px;
}

.gplay-install-hero__phone span {
  display: block;
  margin-top: 9px;
  font-size: 8px;
  font-weight: 700;
}

.gplay-install-hero__phone button {
  width: 70px;
  height: 24px;
  margin-top: 26px;
  border: 0;
  border-radius: 3px;
  background: #00875f;
  color: #ffdf00;
  font-size: 7px;
  font-weight: 700;
}

.gplay-rapid-button {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 32px;
  padding: 8px 20px;
  border: 0;
  border-radius: 6px;
  background: #00875f;
  color: #fff;
}

.gplay-rapid-button img {
  width: 14px;
  height: 20px;
}

.gplay-rapid-button span {
  display: block;
  text-align: left;
}

.gplay-rapid-button strong {
  display: block;
  color: #ffdf00;
  font-size: 16px;
  line-height: 1.05;
}

.gplay-rapid-button em {
  display: block;
  margin-top: 3px;
  color: #d8f2e8;
  font-size: 12px;
  font-style: normal;
  line-height: 1.05;
}

.gplay-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  margin-top: 28px;
}

.gplay-actions button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #00875f;
  font-size: 14px;
  font-weight: 600;
}

.gplay-actions img {
  width: 20px;
  height: 20px;
}

.gplay-actions__bookmark {
  width: 18px;
  height: 22px;
  object-fit: contain;
}

.gplay-screenshots {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-top: 34px;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.gplay-screenshots::-webkit-scrollbar {
  display: none;
}

.gplay-screenshots img {
  width: 120px;
  height: 214px;
  flex: 0 0 auto;
  border-radius: 7px;
  background: #000;
  object-fit: contain;
  scroll-snap-align: start;
}

.gplay-section {
  margin-top: 26px;
}

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

.gplay-section h2,
.gplay-section__head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.gplay-section__head img {
  width: 18px;
  height: 18px;
}

.gplay-about {
  margin-top: 24px;
  color: #7b8087;
  font-size: 14px;
  line-height: 1.18;
}

.gplay-about p {
  margin: 0 0 20px;
}

.gplay-about__lead {
  color: #8a8f95;
}

.gplay-tags-title {
  margin: 28px 0 14px;
  color: #3c4043;
  font-size: 13px;
  font-weight: 600;
}

.gplay-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.gplay-tags span {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid #dadce0;
  border-radius: 999px;
  color: #7b8087;
  font-size: 13px;
  line-height: 1;
}

.gplay-section__desc {
  margin: 24px 0 0;
  color: #7b8087;
  font-size: 14px;
  line-height: 1.35;
}

.gplay-safety-card {
  display: grid;
  gap: 21px;
  margin-top: 18px;
  padding: 22px 25px;
  border: 1px solid #dadce0;
  border-radius: 5px;
}

.gplay-safety-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.gplay-safety-item img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.gplay-safety-item p {
  margin: 0;
  color: #7b8087;
  font-size: 14px;
  line-height: 1.35;
}

.gplay-safety-item span,
.gplay-safety-item a {
  display: block;
}

.gplay-safety-item a {
  color: #6b7177;
  text-decoration: underline;
}

.gplay-reviews {
  padding-top: 8px;
}

.gplay-device-tabs {
  display: flex;
  gap: 9px;
  margin-top: 40px;
}

.gplay-device-tabs button {
  display: inline-flex;
  min-width: 97px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #dadce0;
  border-radius: 999px;
  background: #fff;
  color: #5f6368;
  font-size: 14px;
}

.gplay-device-tabs button.is-active {
  border-color: transparent;
  background: #e4f3ee;
  color: #00875f;
}

.gplay-device-tabs img {
  width: 13px;
  height: 18px;
  object-fit: contain;
}

.gplay-rating-summary {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(210px, 260px);
  gap: 42px;
  align-items: center;
  margin-top: 44px;
}

.gplay-rating-summary__score strong {
  display: block;
  font-size: 64px;
  font-weight: 400;
  line-height: 0.95;
}

.gplay-rating-summary__score > span {
  display: block;
  margin-top: 10px;
  color: #7b8087;
  font-size: 12px;
}

.gplay-stars {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-top: 16px;
}

.gplay-stars img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.gplay-stars--small {
  display: inline-flex;
  margin-top: 0;
  vertical-align: middle;
}

.gplay-stars--small img {
  width: 12px;
  height: 12px;
}

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

.gplay-rating-bars__row {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: center;
}

.gplay-rating-bars__row span {
  color: #5f6368;
  font-size: 11px;
}

.gplay-rating-bars__row i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dedede;
}

.gplay-rating-bars__row b {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #00875f;
}

.gplay-review-list {
  display: grid;
  gap: 32px;
  margin-top: 36px;
}

.gplay-review__top {
  display: grid;
  grid-template-columns: 34px 1fr 16px;
  gap: 16px;
  align-items: center;
}

.gplay-review__avatar {
  display: block;
  width: 32px;
  height: 32px;
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.gplay-review__top strong {
  color: #3c4043;
  font-size: 14px;
  font-weight: 500;
}

.gplay-review__more {
  width: 4px;
  height: 16px;
  justify-self: end;
  object-fit: contain;
}

.gplay-review__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.gplay-review__meta time {
  color: #6f747a;
  font-size: 12px;
}

.gplay-review p {
  margin: 12px 0 0;
  color: #5f6368;
  font-size: 14px;
  line-height: 1.42;
}

.ios-page {
  padding: 29px 49px 92px;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', Arial, sans-serif;
}

.ios-hero {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr) 32px;
  gap: 16px;
  align-items: start;
  padding-bottom: 20px;
}

.ios-hero__icon {
  width: 102px;
  height: 102px;
  border-radius: 21px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.ios-hero__main {
  min-width: 0;
  padding-top: 3px;
}

.ios-hero__main h1 {
  margin: 0;
  color: #0f1115;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.ios-hero__main p {
  margin: 7px 0 27px;
  color: #9b9ba1;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.ios-get {
  display: inline-flex;
  min-width: 51px;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ios-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.ios-share {
  width: 28px;
  height: 28px;
  margin-top: 77px;
  padding: 0;
  border: 0;
  background: transparent;
}

.ios-share img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ios-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px 0 14px;
  border-top: 1px solid #e5e5ea;
  border-bottom: 1px solid #e5e5ea;
}

.ios-metric {
  min-height: 64px;
  text-align: center;
}

.ios-metric + .ios-metric {
  border-left: 1px solid #e5e5ea;
}

.ios-metric span {
  display: block;
  color: #c6c6cc;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
}

.ios-metric strong {
  display: block;
  margin-top: 8px;
  color: #a7a7ad;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.ios-metric em {
  display: block;
  margin-top: 5px;
  color: #b5b5bb;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.ios-stars {
  letter-spacing: 1px;
}

.ios-age-icon,
.ios-developer-icon {
  display: block;
  width: 18px;
  height: 18px;
  margin: 8px auto 5px;
  object-fit: contain;
}

.ios-screenshots {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-top: 18px;
  padding: 0 0 29px;
  border-bottom: 1px solid #e5e5ea;
  scroll-snap-type: x mandatory;
}

.ios-screenshots::-webkit-scrollbar,
.ios-review-strip::-webkit-scrollbar {
  display: none;
}

.ios-screenshots img {
  width: 184px;
  height: 326px;
  flex: 0 0 auto;
  border-radius: 13px;
  object-fit: contain;
  scroll-snap-align: start;
}

.ios-about {
  padding: 15px 0 18px;
  border-bottom: 1px solid #e5e5ea;
}

.ios-about p {
  margin: 0;
  color: #4b4b52;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.32;
}

.ios-about strong,
.ios-about span {
  display: block;
}

.ios-about span {
  margin-top: 14px;
}

.ios-about button {
  display: inline;
}

.ios-about button,
.ios-section-head button,
.ios-review-card button,
.ios-privacy a,
.ios-information button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ios-blue);
  font: inherit;
  text-decoration: none;
}

.ios-developer-row {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5ea;
}

.ios-developer-row strong {
  display: block;
  color: var(--ios-blue);
  font-size: 14px;
  line-height: 1.25;
}

.ios-developer-row span {
  display: block;
  color: #b1b1b6;
  font-size: 12px;
  line-height: 1.25;
}

.ios-developer-row i {
  width: 10px;
  height: 10px;
  border-top: 3px solid #b1b1b6;
  border-right: 3px solid #b1b1b6;
  transform: rotate(45deg);
}

.ios-reviews,
.ios-privacy,
.ios-information {
  padding-top: 21px;
}

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

.ios-section-head h2,
.ios-information h2 {
  margin: 0;
  color: #3a3a3c;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.ios-section-head button {
  flex: 0 0 auto;
  color: var(--ios-blue);
  font-size: 13px;
}

.ios-rating-summary {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}

.ios-rating-summary > div:first-child strong {
  display: block;
  color: #000;
  font-size: 56px;
  font-weight: 500;
  line-height: 0.95;
}

.ios-rating-summary > div:first-child span {
  display: block;
  margin-top: 13px;
  color: #a4a4aa;
  font-size: 12px;
}

.ios-rating-bars {
  display: grid;
  gap: 5px;
  padding-top: 4px;
}

.ios-rating-bars div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px;
  align-items: center;
}

.ios-rating-bars span {
  overflow: hidden;
  color: #a2a2a8;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.ios-rating-bars i {
  display: block;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: #e1e1e5;
}

.ios-rating-bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #9d9da3;
}

.ios-rating-bars em {
  color: #a2a2a8;
  font-size: 11px;
  font-style: normal;
  line-height: 1.1;
  text-align: right;
}

.ios-review-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 35px;
  padding-bottom: 4px;
}

.ios-review-card {
  position: relative;
  width: 100%;
  min-width: 0;
  flex: 0 0 calc(100% - 30px);
  padding: 17px 15px 18px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
}

.ios-review-card h3 {
  margin: 0 0 9px;
  color: #252528;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.ios-review-card div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ios-review-card div span {
  color: #ff9f0a;
  font-size: 13px;
  letter-spacing: 1px;
}

.ios-review-card time {
  color: #b1b1b6;
  font-size: 12px;
}

.ios-review-card p {
  overflow: hidden;
  display: -webkit-box;
  min-height: 38px;
  margin: 7px 58px 0 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #8a8a90;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.36;
}

.ios-review-card button {
  position: absolute;
  right: 15px;
  bottom: 17px;
  color: var(--ios-blue);
  font-size: 12px;
}

.ios-privacy__intro,
.ios-privacy__note {
  margin: 9px 0 0;
  color: #4d4d53;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.42;
}

.ios-privacy-card {
  margin-top: 18px;
  padding: 19px 16px 17px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.ios-privacy-card > img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.ios-privacy-card h3 {
  margin: 7px 0 0;
  color: #151519;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.ios-privacy-card p {
  margin: 13px 0 0;
  color: #b0b0b6;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.ios-privacy-card__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 28px;
  margin-top: 19px;
  text-align: left;
}

.ios-privacy-card__items span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: #3e3e43;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.ios-privacy-card__items img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  object-fit: contain;
}

.ios-privacy__note {
  margin-top: 29px;
}

.ios-information {
  padding-bottom: 24px;
}

.ios-information dl {
  display: grid;
  gap: 16px;
  margin: 13px 0 0;
}

.ios-information dt {
  color: #a4a4aa;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.ios-information dd {
  margin: 2px 0 0;
  color: #3e3e43;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.ios-information button {
  display: block;
  margin: 18px auto 0;
  color: #d6d6db;
  font-size: 12px;
  text-decoration: underline;
}

.ios-tabs {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  padding: 10px 0 calc(11px + env(safe-area-inset-bottom));
  border-top: 1px solid #d9d9de;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.ios-tabs div {
  color: #8e8e93;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.ios-guide-open {
  overflow: hidden;
}

.ios-guide-modal {
  position: fixed;
  z-index: 99;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.ios-guide-modal[hidden] {
  display: none;
}

.ios-guide-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.ios-guide-modal__panel {
  position: relative;
  z-index: 1;
  width: min(86vw, 410px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 24px 18px 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
}

.ios-guide-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
}

.ios-guide-modal__close::before,
.ios-guide-modal__close::after {
  position: absolute;
  top: 15px;
  left: 5px;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: #c4c5cc;
  content: '';
}

.ios-guide-modal__close::before {
  transform: rotate(45deg);
}

.ios-guide-modal__close::after {
  transform: rotate(-45deg);
}

.ios-guide-modal__title {
  margin: 0 40px 20px;
  color: #1d1d1f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.ios-guide-modal__steps {
  display: grid;
  gap: 12px;
}

.ios-guide-modal__step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px;
  padding: 16px 16px 15px;
  border-radius: 17px;
  background: #eaf7ff;
}

.ios-guide-modal__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #087fff;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.ios-guide-modal__content {
  min-width: 0;
}

.ios-guide-modal__content h3 {
  margin: 4px 0 14px;
  color: #111111;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.ios-guide-modal__address-demo,
.ios-guide-modal__view-more-demo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 15px;
  border-radius: 15px;
  background: #f8f8fb;
  box-shadow: 10px 10px 28px rgba(0, 127, 255, 0.18);
}

.ios-guide-modal__address {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 13px 16px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  color: #1d1d1f;
  font-size: 17px;
  line-height: 1;
}

.ios-guide-modal__address span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ios-guide-modal__browser-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 3px solid #98a2ad;
  border-top: 0;
  border-radius: 3px;
}

.ios-guide-modal__browser-icon::before,
.ios-guide-modal__browser-icon::after {
  position: absolute;
  right: -3px;
  left: -3px;
  height: 3px;
  border-radius: 2px;
  background: #98a2ad;
  content: '';
}

.ios-guide-modal__browser-icon::before {
  top: 0;
}

.ios-guide-modal__browser-icon::after {
  top: 7px;
}

.ios-guide-modal__more-button {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 2px solid #087fff;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(0, 127, 255, 0.18);
}

.ios-guide-modal__more-button i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111111;
}

.ios-guide-modal__action-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 14px 18px;
  border: 2px solid #087fff;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 10px 10px 26px rgba(0, 127, 255, 0.22);
  color: #111111;
}

.ios-guide-modal__action-row strong {
  min-width: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
}

.ios-guide-modal__share-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.ios-guide-modal__view-more-demo {
  justify-content: space-between;
  gap: 8px;
  padding: 17px 14px 13px;
}

.ios-guide-modal__faded-action,
.ios-guide-modal__view-more-button {
  display: flex;
  width: 56px;
  flex: 0 0 56px;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}

.ios-guide-modal__faded-action span,
.ios-guide-modal__view-more-button img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.ios-guide-modal__faded-action span {
  background: #e3e4e9;
}

.ios-guide-modal__faded-action em {
  color: #9d9ea6;
  font-size: 12px;
  font-style: normal;
  line-height: 1.05;
}

.ios-guide-modal__view-more-button {
  width: 68px;
  flex-basis: 68px;
}

.ios-guide-modal__view-more-button img {
  display: block;
  object-fit: contain;
}

.ios-guide-modal__view-more-button strong {
  color: #111111;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.05;
}

.ios-guide-modal__plus-icon {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border: 2px solid #222222;
  border-radius: 5px;
}

.ios-guide-modal__plus-icon::before,
.ios-guide-modal__plus-icon::after {
  position: absolute;
  top: 10px;
  left: 5px;
  width: 11px;
  height: 3px;
  border-radius: 2px;
  background: #222222;
  content: '';
}

.ios-guide-modal__plus-icon::after {
  transform: rotate(90deg);
}

@media (max-width: 560px) {
  .android-page {
    padding: 28px 18px 48px;
  }

  .gplay-header {
    gap: 18px;
  }

  .gplay-header__icon {
    width: 70px;
    height: 70px;
  }

  .gplay-header__title-row h1 {
    font-size: 23px;
  }

  .gplay-stats {
    margin-top: 24px;
  }

  .gplay-stat {
    padding: 0 5px;
  }

  .gplay-stat span {
    font-size: 10px;
  }

  .gplay-install-hero {
    gap: 8px;
    margin-top: 24px;
    padding: 0;
  }

  .gplay-install-hero__scan {
    width: 31%;
    min-width: 0;
  }

  .gplay-install-hero__qr-block {
    width: 28%;
    min-width: 92px;
  }

  .gplay-install-hero__qr-block p {
    font-size: 15px;
  }

  .gplay-install-hero__arrow {
    width: 34px;
    height: 34px;
  }

  .gplay-install-hero__phone {
    width: 64px;
    min-height: 116px;
    padding: 10px 5px;
    border-width: 2px;
  }

  .gplay-install-hero__phone img {
    width: 29px;
    height: 29px;
  }

  .gplay-install-hero__phone button {
    width: 50px;
    height: 17px;
    margin-top: 18px;
    font-size: 6px;
  }

  .gplay-actions {
    gap: 34px;
  }

  .gplay-rating-summary {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .gplay-rating-bars {
    max-width: 260px;
  }

  .reward-dialog {
    padding: 16px;
  }

  .reward-dialog__card {
    max-height: calc(100vh - 32px);
    padding: 22px 16px 18px;
    border-radius: 14px;
  }

  .reward-dialog__badge img {
    width: 148px;
    max-width: 58%;
  }

  .reward-dialog__title {
    margin: 14px 0 16px;
    font-size: 18px;
  }

  .reward-dialog__app {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    min-height: 86px;
    padding: 12px;
    border-radius: 12px;
  }

  .reward-dialog__icon {
    width: 62px;
    height: 62px;
  }

  .reward-dialog__name-row strong {
    font-size: 22px;
  }

  .reward-dialog__main p {
    font-size: 14px;
  }

  .reward-dialog__copy {
    margin: 20px 0 16px;
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .ios-page {
    padding: 26px 20px 92px;
  }

  .ios-hero {
    grid-template-columns: 94px minmax(0, 1fr) 28px;
    gap: 14px;
  }

  .ios-hero__icon {
    width: 94px;
    height: 94px;
    border-radius: 20px;
  }

  .ios-hero__main h1 {
    font-size: 21px;
  }

  .ios-hero__main p {
    margin-bottom: 24px;
  }

  .ios-share {
    margin-top: 70px;
  }

  .ios-metric strong {
    font-size: 20px;
  }

  .ios-screenshots img {
    width: 164px;
    height: 291px;
  }

  .ios-rating-summary {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
  }

  .ios-rating-summary > div:first-child strong {
    font-size: 50px;
  }

  .ios-rating-bars div {
    grid-template-columns: 42px 1fr;
  }

  .ios-privacy-card {
    border-radius: 13px;
  }

  .ios-privacy-card__items {
    gap: 15px 18px;
  }

  .ios-privacy-card__items span {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .ios-guide-modal {
    padding: 18px 10px;
  }

  .ios-guide-modal__panel {
    width: 88vw;
    max-height: calc(100vh - 36px);
    padding: 20px 14px 18px;
    border-radius: 16px;
  }

  .ios-guide-modal__title {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .ios-guide-modal__steps {
    gap: 10px;
  }

  .ios-guide-modal__step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 7px;
    padding: 13px 12px;
    border-radius: 15px;
  }

  .ios-guide-modal__badge {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }

  .ios-guide-modal__content h3 {
    margin-bottom: 11px;
    font-size: 16px;
  }

  .ios-guide-modal__address-demo,
  .ios-guide-modal__view-more-demo {
    padding: 12px;
  }

  .ios-guide-modal__address {
    gap: 8px;
    padding: 11px 12px;
    font-size: 15px;
  }

  .ios-guide-modal__more-button {
    width: 42px;
    height: 42px;
  }

  .ios-guide-modal__action-row {
    gap: 12px;
    padding: 12px 14px;
  }

  .ios-guide-modal__action-row strong {
    font-size: 17px;
  }

  .ios-guide-modal__faded-action {
    width: 42px;
    flex-basis: 42px;
  }

  .ios-guide-modal__view-more-button {
    width: 56px;
    flex-basis: 56px;
  }

  .ios-guide-modal__faded-action span,
  .ios-guide-modal__view-more-button img {
    width: 36px;
    height: 36px;
  }

  .ios-guide-modal__faded-action em,
  .ios-guide-modal__view-more-button strong {
    font-size: 10px;
  }

}

@media (max-width: 430px) and (max-height: 700px) {
  .ios-guide-modal {
    padding: 10px 8px;
  }

  .ios-guide-modal__panel {
    width: 92vw;
    max-height: calc(100vh - 20px);
    padding: 14px 10px 12px;
    border-radius: 14px;
  }

  .ios-guide-modal__close {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
  }

  .ios-guide-modal__close::before,
  .ios-guide-modal__close::after {
    top: 13px;
    left: 5px;
    width: 20px;
    height: 3px;
  }

  .ios-guide-modal__title {
    margin: 0 34px 9px;
    font-size: 19px;
  }

  .ios-guide-modal__steps {
    gap: 6px;
  }

  .ios-guide-modal__step {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 6px;
    padding: 8px;
    border-radius: 12px;
  }

  .ios-guide-modal__badge {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }

  .ios-guide-modal__content h3 {
    margin: 0 0 6px;
    font-size: 13px;
    line-height: 1.15;
  }

  .ios-guide-modal__address-demo,
  .ios-guide-modal__view-more-demo {
    gap: 6px;
    padding: 7px;
    border-radius: 10px;
  }

  .ios-guide-modal__address {
    gap: 6px;
    padding: 7px 8px;
    border-radius: 9px;
    font-size: 12px;
  }

  .ios-guide-modal__browser-icon {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }

  .ios-guide-modal__browser-icon::before,
  .ios-guide-modal__browser-icon::after {
    right: -2px;
    left: -2px;
    height: 2px;
  }

  .ios-guide-modal__browser-icon::after {
    top: 5px;
  }

  .ios-guide-modal__more-button {
    width: 30px;
    height: 30px;
    gap: 3px;
  }

  .ios-guide-modal__more-button i {
    width: 4px;
    height: 4px;
  }

  .ios-guide-modal__action-row {
    gap: 8px;
    padding: 8px 10px;
    border-radius: 9px;
  }

  .ios-guide-modal__action-row strong {
    font-size: 14px;
  }

  .ios-guide-modal__share-icon {
    width: 22px;
    height: 22px;
  }

  .ios-guide-modal__view-more-demo {
    padding: 8px 7px 7px;
  }

  .ios-guide-modal__faded-action {
    width: 34px;
    flex-basis: 34px;
  }

  .ios-guide-modal__view-more-button {
    width: 46px;
    flex-basis: 46px;
  }

  .ios-guide-modal__faded-action,
  .ios-guide-modal__view-more-button {
    gap: 4px;
  }

  .ios-guide-modal__faded-action span,
  .ios-guide-modal__view-more-button img {
    width: 28px;
    height: 28px;
  }

  .ios-guide-modal__faded-action em,
  .ios-guide-modal__view-more-button strong {
    font-size: 8px;
  }

  .ios-guide-modal__plus-icon {
    width: 19px;
    height: 19px;
  }

  .ios-guide-modal__plus-icon::before,
  .ios-guide-modal__plus-icon::after {
    top: 7px;
    left: 4px;
    width: 8px;
    height: 2px;
  }
}

@media (max-width: 430px) and (max-height: 600px) {
  .ios-guide-modal {
    padding: 6px;
  }

  .ios-guide-modal__panel {
    max-height: calc(100vh - 12px);
    padding: 10px 8px 8px;
    border-radius: 12px;
  }

  .ios-guide-modal__title {
    margin-bottom: 6px;
    font-size: 17px;
  }

  .ios-guide-modal__steps {
    gap: 5px;
  }

  .ios-guide-modal__step {
    padding: 6px;
  }

  .ios-guide-modal__content h3 {
    margin-bottom: 4px;
    font-size: 12px;
  }
}
