:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #151218;
  color: #fff;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 65, 150, .28), transparent 32rem),
    #151218;
}

main {
  width: min(100%, 460px);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
  text-align: center;
}

.app-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 25%;
  object-fit: cover;
  box-shadow: 0 14px 36px rgba(226, 57, 168, .28);
}

h1 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -.03em;
}

.description {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .68);
  line-height: 1.5;
}

.inline-link {
  color: #ff73b4;
  font-weight: 600;
  text-underline-offset: 3px;
}

.primary-action {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(100deg, #ff4f9a, #c33cff);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(226, 57, 168, .24);
}

.store-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.store-badge {
  min-width: 0;
  height: 60px;
  display: grid;
  place-items: center;
  transition: opacity .18s ease, transform .18s ease;
}

.store-badge:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.store-badge img {
  display: block;
  width: auto;
  max-width: 100%;
}

.app-store-badge img { height: 40px; }
.google-play-badge img { height: 60px; }

.secondary-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.download-link {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  text-align: left;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.download-link:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2);
  transform: translateY(-1px);
}

.download-link strong { font-size: 14px; }
.download-link span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
}

.hint {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, .44);
}

@media (max-width: 420px) {
  main { padding: 28px 22px; }
  .store-badges,
  .secondary-links { grid-template-columns: 1fr; }
}
