
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.wrapper {
  position: relative;
  width: 360px;
  max-width: 90%;
}

.logo {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  object-fit: contain;
  z-index: 1;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 80px 30px 40px;
  text-align: center;
}

.title {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.store-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.store-badges a img {
  display: block;
  width: 150px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
}
