:root {
  --brand: #fed600;
  --brand-soft: #ffe873;
  --ink: #121213;
  --muted: #6b6b57;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(120% 120% at 50% 0%, var(--brand-soft) 0%, var(--brand) 60%);
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
    sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 28px;
  padding: 40px 32px 28px;
  text-align: center;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 24px 48px -12px rgba(0, 0, 0, 0.22);
}

.icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.35);
}

h1 {
  margin: 20px 0 8px;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.tagline {
  margin: 0 auto 28px;
  max-width: 320px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.stores {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.badge {
  display: inline-flex;
  transition:
    transform 0.12s ease,
    filter 0.12s ease;
}

.badge img {
  display: block;
  height: 56px;
  width: auto;
}

.badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.badge:active {
  transform: translateY(0);
}

.foot {
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
}

.foot a {
  color: var(--muted);
  text-decoration: none;
}

.foot a:hover {
  text-decoration: underline;
}

.foot span {
  margin: 0 8px;
  opacity: 0.5;
}
