:root {
  --phone-width: 152px;
  --spacing-large: 60px;
  --font-size-message: 20px;
  --badge-height: 45px;
  --badge-gap: 10px;
}

body {
  margin: 0;
  padding: 0;
  font-family:
    "Hiragino Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
}

.app-download {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.app-download__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-large);
  padding: var(--spacing-large) 40px;
}

.app-download__phone {
  flex-shrink: 0;
}

.app-download__phone-image {
  width: var(--phone-width);
  height: auto;
  max-width: 100%;
}

.app-download__info {
  text-align: center;
  max-width: 400px;
}

.app-download__message {
  font-size: var(--font-size-message);
  color: #000;
  line-height: 1.2;
  margin: 0 0 10px;
  font-weight: 700;
}

.app-download__qr {
  margin-bottom: 10px;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.app-download__buttons {
  display: flex;
  justify-content: center;
  gap: var(--badge-gap);
  flex-wrap: wrap;
}

.app-download__button {
  display: inline-block;
}

.app-download__button:hover {
  transform: scale(1.05);
}

.app-download__button img {
  height: var(--badge-height);
  width: auto;
}
