* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f5f6f7;
  color: #202124;
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  background: #f5f6f7;
  padding: 32px 26px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 28px;
}

.app-logo {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  object-fit: cover;
}

.app-info h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 500;
}

.brand {
  margin-top: 2px;
  color: #009b6b;
  font-size: 24px;
  font-weight: 500;
}

.verified {
  margin-top: 4px;
  color: #5f6368;
  font-size: 15px;
}

.stats {
  margin: 38px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.stat span {
  display: block;
  margin-top: 5px;
  color: #5f6368;
  font-size: 15px;
}

.divider {
  width: 1px;
  height: 38px;
  background: #e2e5e9;
}

.install-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 65px;
  border-radius: 7px;
  background: #009b6b;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
}

.install-btn small {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
}

.actions {
  margin: 28px 0;
  display: flex;
  gap: 28px;
  align-items: center;
}

.actions button {
  border: 0;
  background: transparent;
  color: #00875f;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.actions span {
  font-size: 24px;
  line-height: 1;
}

.gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.gallery img {
  width: 158px;
  height: 280px;
  object-fit: cover;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.gallery::-webkit-scrollbar {
  height: 8px;
}

.gallery::-webkit-scrollbar-track {
  background: #d7d7d7;
  border-radius: 20px;
}

.gallery::-webkit-scrollbar-thumb {
  background: #9e9e9e;
  border-radius: 20px;
}

.about {
  margin-top: 30px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title h2 {
  margin: 0;
  font-size: 22px;
}

.section-title span {
  font-size: 34px;
  color: #5f6368;
}

.about p {
  margin-top: 20px;
  color: #5f6368;
  font-size: 17px;
  line-height: 1.45;
}