.download-button {
  gap: 10px;
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 1rem;
  line-height: 1;
}

.mobile-download-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 24;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(189, 242, 109, 0.18);
  border-radius: 22px;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.mobile-download-bar p {
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.45;
}

.mobile-download-bar .button {
  width: 100%;
}

body {
  padding-bottom: 120px;
}

@media (min-width: 920px) {
  body {
    padding-bottom: 0;
  }

  .mobile-download-bar {
    display: none;
  }
}
