@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@600;700;800;900&family=Patrick+Hand&family=Permanent+Marker&display=swap");

:root {
  --ink: #171717;
  --paper: #fff8e8;
  --pink: #ff5c87;
  --lime: #c7ff4a;
  --blue: #63c9ff;
  --yellow: #ffe05a;
  --orange: #ff9848;
  --purple: #8467ff;
  --mint: #72e3a2;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html,
body {
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  margin: 0;
}
body {
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
#three {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
#celebration {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}
.modal {
  pointer-events: auto;
}
#app {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
}

.screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: safe center;
  align-items: center;
  align-items: safe center;
  padding: max(16px, env(safe-area-inset-top))
    max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.screen.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.card {
  width: min(540px, 100%);
  max-width: 100%;
  position: relative;
  z-index: 3;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 25px 31px 22px 34px;
  padding: 54px 34px 42px;
  text-align: center;
  box-shadow: 12px 14px 0 var(--ink);
  transform: rotate(-1deg);
}
.card:before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid var(--ink);
  border-radius: 20px 26px 19px 29px;
  transform: rotate(1deg);
  pointer-events: none;
}
.card:after {
  content: "";
  position: absolute;
  inset: -5px 2px 3px -3px;
  border: 2px solid var(--ink);
  border-radius: 28px 19px 31px 22px;
  transform: rotate(-0.8deg);
  pointer-events: none;
  opacity: 0.8;
}
.card > * {
  position: relative;
  z-index: 2;
}
.tape {
  position: absolute !important;
  top: -25px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 8px 20px;
  box-shadow: 3px 3px 0 var(--ink);
  font: 900 10px "DM Sans";
  white-space: nowrap;
}
.icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  border-radius: 52% 43% 48% 45%;
  font-size: 36px;
  transform: rotate(-7deg);
}
h1,
h2 {
  font-family: "Permanent Marker";
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.05em;
  margin: 12px 0 20px;
}
h1 {
  font-size: clamp(42px, 12vw, 67px);
}
h2 {
  font-size: clamp(34px, 10vw, 57px);
}
p {
  font: clamp(18px, 4.4vw, 24px) / 1.25 "Patrick Hand";
  margin: 10px 0;
}
.sub {
  font: 12px/1.45 "DM Sans";
  color: #706b61;
  margin: 18px auto 0;
  max-width: 380px;
}
.input {
  width: 100%;
  height: 56px;
  margin-top: 16px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: white;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 0 16px;
  outline: 0;
  font: 20px "Patrick Hand";
  color: var(--ink);
}
.input:focus {
  box-shadow:
    6px 6px 0 var(--ink),
    0 0 0 5px #c7ff4a88;
}
.field-hint {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--pink);
  font-weight: 700;
}
.input--error {
  border-color: var(--pink) !important;
  outline-color: var(--pink);
}
.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.btn {
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  border-radius: 10px 8px 11px 7px;
  background: var(--lime);
  padding: 13px 16px;
  min-height: 48px;
  font: 900 13px "DM Sans";
  color: var(--ink);
  transition: 0.15s;
  cursor: pointer;
  touch-action: manipulation;
}
.icon-action {
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  font-size: 20px;
}
.icon-action i {
  pointer-events: none;
}
.icon-action.blue {
  background: var(--blue);
}
.icon-action.pink {
  background: var(--pink);
  color: white;
}
.whatsapp-action {
  background: var(--mint);
}
.btn:hover {
  transform: translate(-2px, -3px) rotate(-1deg);
  box-shadow: 7px 8px 0 var(--ink);
}
.btn.pink {
  background: var(--pink);
  color: white;
}
.btn.blue {
  background: var(--blue);
}
.btn.gray {
  background: #e9e1d3;
}
.btn.purple {
  background: var(--purple);
  color: white;
}
.step {
  display: none;
}
.step.active {
  display: block;
}
.name {
  font: 400 clamp(36px, 11vw, 88px) / 0.85 "Permanent Marker";
  text-shadow: 4px 4px 0 var(--pink);
  margin: 18px 0 27px;
  transform: rotate(-2deg);
  overflow-wrap: anywhere;
}
.found {
  display: inline-block;
  background: var(--mint);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  padding: 6px 10px;
  font: 900 9px "DM Sans";
  transform: rotate(2deg);
}
.error {
  display: none;
  background: #ffd4df;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 11px;
  margin: 16px auto 0;
  font: 700 17px "Patrick Hand";
}
.error.show {
  display: block;
}
.loading {
  font: 18px "Patrick Hand";
  color: #666;
}

.sticker {
  position: absolute;
  z-index: 5;
  font-size: 38px;
  filter: drop-shadow(4px 5px 0 var(--ink));
  user-select: none;
  pointer-events: none;
}
.s1 {
  left: calc(50% - 360px);
  top: calc(50% - 260px);
  transform: rotate(-12deg);
}
.s2 {
  right: calc(50% - 365px);
  top: calc(50% - 210px);
  background: var(--pink);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 7px;
  border-radius: 9px;
  transform: rotate(9deg);
}
.s3 {
  left: calc(50% - 375px);
  bottom: calc(50% - 235px);
  background: var(--lime);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 7px 11px;
  border-radius: 50%;
  transform: rotate(11deg);
}
.s4 {
  right: calc(50% - 370px);
  bottom: calc(50% - 245px);
  background: white;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 7px 12px;
  transform: rotate(-5deg);
  font: 400 22px "Permanent Marker";
}
.badge {
  position: absolute;
  z-index: 5;
  background: var(--orange);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 7px 10px;
  font: 900 9px "DM Sans";
  transform: rotate(6deg);
}
.b1 {
  left: calc(50% - 330px);
  top: calc(50% - 130px);
}
.b2 {
  right: calc(50% - 330px);
  bottom: calc(50% - 125px);
  background: var(--purple);
  color: white;
  transform: rotate(-6deg);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #111a;
  backdrop-filter: blur(5px);
  display: none;
  place-items: center;
  padding: 20px;
}
.modal.open {
  display: grid;
}
.modal-card {
  width: min(500px, 92vw);
  position: relative;
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 12px 14px 0 var(--ink);
  border-radius: 27px 20px 31px 24px;
  padding: 40px 28px;
  text-align: center;
  transform: rotate(1deg);
}
.modal-card h2 {
  font-size: 49px;
}
.modal-card p {
  font-size: 22px;
}
.close {
  position: absolute;
  right: 11px;
  top: 10px;
  width: 32px;
  height: 32px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-size: 14px;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.close i {
  pointer-events: none;
}

/* ===== COLLECTIBLE CARD — trading-card anatomy, doodle skin ===== */
.collectible-wrap {
  perspective: 1200px;
  width: min(348px, 100%);
  flex: 0 1 auto;
  min-height: 0;
}
.collectible {
  width: min(348px, 100%, calc((100dvh - 13.5rem) * 5 / 7));
  max-height: calc(100dvh - 13.5rem);
  aspect-ratio: 5/7;
  position: relative;
  overflow: hidden;
  container-type: inline-size;
  background: var(--paper);
  border: 5px solid var(--ink);
  border-radius: 22px 18px 24px 20px;
  box-shadow: 12px 14px 0 var(--ink);
  transform: rotate(-2deg);
}
.collectible-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 11px;
  z-index: 4;
  background: repeating-linear-gradient(
    90deg,
    var(--pink) 0 18px,
    var(--yellow) 18px 36px,
    var(--lime) 36px 54px,
    var(--blue) 54px 72px,
    var(--orange) 72px 90px,
    var(--purple) 90px 108px
  );
  border-bottom: 3px solid var(--ink);
}
.collectible-frame {
  position: absolute;
  inset: 18px 11px 11px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2.5px solid var(--ink);
  border-radius: 16px 13px 18px 14px;
  padding: 10px 10px 8px;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(23, 23, 23, 0.05) 0 1px,
      transparent 1.5px
    ),
    radial-gradient(
      circle at 78% 70%,
      rgba(23, 23, 23, 0.04) 0 1px,
      transparent 1.5px
    ),
    var(--paper);
  background-size:
    18px 18px,
    22px 22px,
    auto;
}
.collectible-header {
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 7px 10px;
  border-radius: 7px 9px 7px 8px;
  font: 900 8px/1 "DM Sans", sans-serif;
  letter-spacing: 0.14em;
  transform: rotate(-0.5deg);
}
.collectible-header #collectible-hash {
  color: var(--lime);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.collectible-art {
  position: relative;
  align-self: stretch;
  flex: 1;
  min-height: 0;
  margin: 12px 2px 0;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      -22deg,
      transparent 0 7px,
      rgba(23, 23, 23, 0.04) 7px 8px
    ),
    var(--card-accent, var(--lime));
  border: 4px solid var(--ink);
  border-radius: 16px 12px 18px 14px;
  box-shadow: 5px 6px 0 var(--ink);
  display: grid;
  place-items: center;
}
.collectible-tape {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 5px 10px;
  box-shadow: 3px 3px 0 var(--ink);
  font: 900 8px/1 "DM Sans", sans-serif;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.collectible-portrait {
  width: min(142px, 58%);
  aspect-ratio: 1;
  position: relative;
  z-index: 2;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 48% 42% 52% 44%;
  box-shadow: 6px 7px 0 var(--ink);
  display: grid;
  place-items: center;
  font-size: 64px;
  transform: rotate(-5deg);
}
.collectible-portrait:before {
  content: "";
  position: absolute;
  top: 16%;
  left: 18%;
  width: 28%;
  height: 18%;
  background: #fff;
  border-radius: 50%;
  opacity: 0.7;
  transform: rotate(-28deg);
}
.collectible-art .doodle {
  position: absolute;
  z-index: 1;
  font-size: 20px;
  color: var(--ink);
}
.d-note {
  left: 12px;
  bottom: 18px;
  color: var(--pink);
  transform: rotate(-18deg);
}
.d-star {
  right: 14px;
  top: 40px;
  color: var(--purple);
  transform: rotate(12deg);
}
.collectible-seal {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 2.5px dashed var(--ink);
  border-radius: 50%;
  background: #fffdf7;
  display: grid;
  place-items: center;
  font: 400 18px/1 "Permanent Marker", cursive;
  transform: rotate(16deg);
}
.collectible-role {
  position: relative;
  z-index: 4;
  margin-top: -15px;
  background: var(--card-accent, var(--pink));
  color: #fff;
  padding: 7px 16px;
  border: 3px solid var(--ink);
  border-radius: 8px 6px 9px 7px;
  box-shadow: 4px 4px 0 var(--ink);
  font: 900 11px/1 "DM Sans", sans-serif;
  letter-spacing: 0.16em;
  transform: rotate(-2.5deg);
}
.collectible-identity {
  width: 100%;
  margin-top: 14px;
  text-align: center;
}
.collectible-kicker {
  font: 900 8px/1 "DM Sans", sans-serif;
  letter-spacing: 0.18em;
  color: #706b61;
}
.collectible-name {
  margin-top: 6px;
  font: 400 clamp(28px, 12cqi, 40px) / 0.88 "Permanent Marker", cursive;
  text-shadow: 3px 3px 0 var(--blue);
  overflow-wrap: anywhere;
}
.collectible-name:after {
  content: "";
  display: block;
  width: 58%;
  height: 6px;
  margin: 6px auto 0;
  background: var(--pink);
  border-radius: 4px 7px 3px 6px;
  transform: rotate(-2deg);
}
.collectible-name.is-long {
  font-size: clamp(24px, 10cqi, 32px);
}
.collectible-name.is-very-long {
  font-size: clamp(22px, 8.5cqi, 28px);
}
.collectible-footer {
  margin-top: auto;
  padding-top: 10px;
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 900 8px/1 "DM Sans", sans-serif;
  letter-spacing: 0.12em;
}
.collectible-footer:empty {
  display: none;
}
.collectible-stars {
  display: flex;
  gap: 2px;
  color: var(--orange);
  font-size: 12px;
}

@container (max-width: 260px) {
  .collectible-tape {
    display: none;
  }
  .collectible-seal {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .collectible-art .doodle {
    font-size: 14px;
  }
  .collectible-portrait {
    font-size: 40px;
  }
}

.success-panel {
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}
.success-title {
  font: 400 clamp(32px, 10vw, 51px) "Permanent Marker";
  margin: 0 0 8px;
  transform: rotate(-3deg);
}
.success-sub {
  font: clamp(16px, 4.4vw, 23px) "Patrick Hand";
  margin: 0 0 18px;
}
.success-actions {
  margin-top: 28px;
  flex-shrink: 0;
}
.share-status {
  font: 12px "DM Sans";
  min-height: 18px;
  margin-top: 10px;
  color: #666;
}

.refusal-card {
  background: var(--pink) !important;
  color: white;
}
.refusal-card .sub {
  color: white;
}

.color-pink {
  color: var(--pink);
}

/* ===== SCREEN 4 LAYOUT ===== */
.screen4-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: 860px;
  padding: 0 16px;
  flex-shrink: 0;
}

.info-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 18px 18px 20px;
  text-align: left;
  position: relative;
  z-index: 3;
  align-self: center;
}

.info-card-title {
  font: 900 10px/1 "DM Sans", sans-serif;
  letter-spacing: 0.2em;
  color: #706b61;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.info-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: steps;
}

.info-steps li {
  counter-increment: steps;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font: 13px/1.45 "DM Sans", sans-serif;
  color: var(--ink);
  padding-left: 30px;
  position: relative;
}

.info-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background: var(--ink);
  color: var(--yellow);
  font: 900 11px/20px "DM Sans", sans-serif;
  text-align: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-whatsapp-btn {
  align-self: flex-start;
}

.info-card-footer {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 2px dashed rgba(0,0,0,.13);
  font: 11px/1.5 "DM Sans", sans-serif;
  color: #888;
  font-style: italic;
}

/* ===== CARD EDITOR DRAWER ===== */
#screen4 {
  flex-direction: column;
  justify-content: safe center;
  align-items: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px 16px 0;
  scrollbar-width: none;
}
#screen4::-webkit-scrollbar {
  display: none;
}
.card-editor {
  width: min(420px, 100%);
  flex-shrink: 0;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 22px;
  box-shadow: 6px 6px 0 var(--ink);
  margin-top: 12px;
  margin-bottom: calc(20px + env(safe-area-inset-bottom));
  padding: 16px 20px 20px;
}
.card-editor-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-editor-title {
  font: 900 11px/1 "DM Sans", sans-serif;
  letter-spacing: 0.18em;
  color: #706b61;
}
.card-editor-close {
  width: 32px;
  height: 32px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-size: 14px;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.editor-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.editor-section .input {
  margin-top: 0;
}
.editor-label {
  font: 900 10px/1 "DM Sans", sans-serif;
  letter-spacing: 0.12em;
  color: #706b61;
  margin: 0;
}
.color-swatches {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.color-swatch {
  width: 100%;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 0;
  outline: none;
}
.color-swatch:hover {
  transform: scale(1.1);
}
.color-swatch.active {
  box-shadow: 3px 3px 0 var(--ink), 0 0 0 3px var(--ink);
  transform: scale(1.1);
}
.icon-picker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.icon-pick {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: clamp(18px, 5vw, 24px);
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  padding: 0;
  outline: none;
}
.icon-pick:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}
.icon-pick.active {
  background: var(--lime);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

@media (max-width: 700px) {
  .screen4-layout {
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 16px;
  }
  .info-card {
    width: min(420px, 100%);
    border-radius: 20px;
    box-shadow: 5px 5px 0 var(--ink);
    order: -1;
  }
  #screen4 .sticker,
  #screen4 .badge {
    display: none;
  }
  .sticker,
  .badge {
    z-index: 1;
  }
  .s1 {
    left: 4%;
    top: 8%;
  }
  .s2 {
    right: 4%;
    top: 11%;
  }
  .s3 {
    left: 4%;
    bottom: 8%;
  }
  .s4 {
    right: 4%;
    bottom: 8%;
  }
  .b1,
  .b2 {
    display: none;
  }
  .card {
    padding: 44px 18px 28px;
    box-shadow: 7px 8px 0 var(--ink);
  }
  .tape {
    font-size: 9px;
    padding: 6px 12px;
    top: -20px;
  }
  .icon {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }
  .actions {
    margin-top: 18px;
  }
  .btn:not(.icon-action) {
    width: 100%;
    max-width: 280px;
  }
  .icon-action {
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    flex-shrink: 0;
  }
  .collectible {
    box-shadow: 7px 8px 0 var(--ink);
  }
  .collectible-portrait {
    font-size: 48px;
  }
  .collectible-tape {
    font-size: 7px;
    padding: 4px 8px;
  }
  .modal-card {
    padding: 32px 18px 24px;
    box-shadow: 7px 8px 0 var(--ink);
  }
  .modal-card h2 {
    font-size: clamp(32px, 9vw, 42px);
  }
  .modal-card p {
    font-size: 18px;
  }
}

@media (max-height: 760px) {
  .success-title {
    font-size: 32px;
    margin-bottom: 4px;
  }
  .success-sub {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .success-actions {
    margin-top: 20px;
  }
  .collectible {
    width: min(300px, 100%, calc((100dvh - 11.5rem) * 5 / 7));
    max-height: calc(100dvh - 11.5rem);
  }
  .card {
    padding: 36px 18px 24px;
  }
  .icon {
    margin-bottom: 6px;
  }
  h1,
  h2 {
    margin: 8px 0 12px;
  }
}

@media (max-height: 640px) {
  .sticker,
  .badge {
    opacity: 0.55;
  }
  .collectible-frame {
    inset: 14px 8px 8px;
    padding: 8px 8px 6px;
  }
  .collectible-identity {
    margin-top: 8px;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .sticker,
  .badge {
    display: none;
  }
  .card {
    padding: 28px 28px 18px;
  }
  .icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
    margin-bottom: 4px;
  }
  h1 {
    font-size: 40px;
    margin: 4px 0 8px;
  }
  h2 {
    font-size: 32px;
    margin: 4px 0 8px;
  }
  .name {
    font-size: 36px;
    margin: 8px 0 12px;
  }
  .actions {
    margin-top: 12px;
  }
  .btn {
    width: auto;
    min-width: 160px;
  }
  .collectible {
    width: min(220px, calc((100dvh - 5rem) * 5 / 7));
    max-height: calc(100dvh - 5rem);
  }
  .sub {
    display: none;
  }
  p {
    margin: 4px 0;
  }
  .input {
    height: 44px;
    margin-top: 8px;
  }
  .success-title,
  .success-sub {
    display: none;
  }
  .success-actions {
    margin-top: 20px;
  }
}
