.mvy-pwa-install {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 99999;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 42px rgba(2, 6, 23, .16);
  backdrop-filter: blur(12px);
  color: rgba(10, 14, 20, .92);
}

.mvy-pwa-install__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  font-weight: 950;
  letter-spacing: -.04em;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 10px 24px rgba(47, 107, 255, .16);
}

.mvy-pwa-install__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.mvy-pwa-install__copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.mvy-pwa-install__copy strong {
  font-size: 14px;
  line-height: 1.2;
}

.mvy-pwa-install__copy span {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(10, 14, 20, .66);
}

.mvy-pwa-install__copy small {
  font-size: 11px;
  color: rgba(10, 14, 20, .50);
}

.mvy-pwa-install__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mvy-pwa-install__primary,
.mvy-pwa-install__close {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.mvy-pwa-install__primary {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  background: linear-gradient(135deg, #2f6bff, #8b5cf6);
  box-shadow: 0 12px 26px rgba(47, 107, 255, .20);
}

.mvy-pwa-install__primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(47, 107, 255, .24);
}

.mvy-pwa-install__close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, .06);
  color: rgba(10, 14, 20, .70);
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 560px) {
  .mvy-pwa-install {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .mvy-pwa-install__actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .mvy-pwa-install__primary {
    flex: 1 1 auto;
  }
}
