:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b0d12;
  color: #f7f8fb;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 10%, rgba(117, 87, 255, 0.25), transparent 38rem),
    #0b0d12;
}

.card {
  width: min(100%, 31rem);
  padding: clamp(28px, 7vw, 48px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(22, 25, 34, 0.9);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.app-icon {
  display: block;
  width: 128px;
  height: 128px;
  margin: 0 auto 24px;
  border-radius: 28px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
}

h1 {
  margin: 0;
  font-size: clamp(32px, 8vw, 44px);
  letter-spacing: -0.04em;
}

.actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.store {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.store:hover,
.store:focus-visible {
  transform: translateY(-1px);
  background: #765cff;
}

html[data-platform="ios"] .android,
html[data-platform="android"] .ios {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .store {
    transition: none;
  }
}
