:root {
  /* Italian-inspired brand palette */
  --navy: #122A4F;
  --navy-deep: #0C1E3A;
  --brand-yellow: #F9C846;
  --brand-yellow-dark: #E0A800;
  --on-yellow: #1A1300;
  --green: #1F8A5B;
  --red: #D7263D;
  --ink: #16202E;
  --muted: #5C6B7E;
  --surface: #FFFFFF;
  --surface-alt: #F4F6FB;
  --border: #E4E9F2;
  --shadow: 0 18px 40px rgba(12, 30, 58, 0.18);
  --radius-card: 24px;
  --radius-btn: 14px;
  --maxw: 460px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(
      1200px 600px at 50% -10%,
      rgba(249, 200, 70, 0.18),
      transparent 60%
    ),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.shell {
  width: 100%;
  max-width: var(--maxw);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-yellow);
  color: var(--on-yellow);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(249, 200, 70, 0.35);
}

.brand__name {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.card {
  width: 100%;
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 28px 24px 26px;
  text-align: center;
  animation: rise 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface-alt);
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

h1 {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}

h1 .hl {
  color: var(--brand-yellow-dark);
}

.sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 auto 22px;
  max-width: 34ch;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: none;
  border-radius: var(--radius-btn);
  padding: 15px 18px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn:active {
  transform: scale(0.985);
}

.btn--primary {
  background: var(--brand-yellow);
  color: var(--on-yellow);
  box-shadow: 0 10px 22px rgba(249, 200, 70, 0.4);
}

.btn--primary:hover {
  background: var(--brand-yellow-dark);
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 20px 0 16px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

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

.store {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: #000;
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  text-decoration: none;
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.store:active {
  transform: scale(0.985);
}

.store:hover {
  opacity: 0.92;
}

.store__icon {
  width: 26px;
  height: 26px;
  flex: none;
}

.store__text {
  text-align: left;
  line-height: 1.1;
}

.store__small {
  font-size: 11px;
  opacity: 0.8;
}

.store__big {
  font-size: 17px;
  font-weight: 700;
}

.store--pending {
  position: relative;
  opacity: 0.65;
}

.store__pending-tag {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--brand-yellow);
}

.hidden {
  display: none !important;
}

footer {
  margin-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

footer a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

.dot-sep {
  margin: 0 8px;
  opacity: 0.5;
}

@media (max-width: 380px) {
  .card {
    padding: 24px 18px 22px;
  }
  h1 {
    font-size: 21px;
  }
}
