:root {
  --ink: #251722;
  --pink: #ff5eab;
  --hot: #ff2f7d;
  --yellow: #ffd85f;
  --mint: #91f2d0;
  --blue: #7bb6ff;
  --paper: rgba(255, 255, 255, 0.91);
  --shadow: 0 34px 90px rgba(88, 35, 70, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", system-ui, sans-serif;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 50%, rgba(255, 255, 255, 0.9) 0 7%, transparent 24%),
    radial-gradient(circle at 12% 16%, rgba(255, 216, 95, 0.52) 0 13%, transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(123, 182, 255, 0.42) 0 12%, transparent 30%),
    radial-gradient(circle at 80% 84%, rgba(145, 242, 208, 0.52) 0 15%, transparent 32%),
    linear-gradient(135deg, #fff8fb 0%, #ffe8f2 42%, #f4fbff 100%);
}

button {
  font: inherit;
}

.scene {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: clamp(18px, 4vw, 44px);
  place-items: center;
  isolation: isolate;
}

.poster {
  position: relative;
  display: grid;
  width: min(960px, 100%);
  min-height: min(680px, calc(100vh - 36px));
  padding: clamp(24px, 5vw, 58px) clamp(20px, 5vw, 58px);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 74%, rgba(255, 216, 95, 0.2) 0 16%, transparent 31%),
    radial-gradient(circle at 82% 77%, rgba(145, 242, 208, 0.2) 0 14%, transparent 32%),
    linear-gradient(90deg, transparent 0 49%, rgba(255, 47, 125, 0.09) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 0 49%, rgba(123, 182, 255, 0.11) 49% 51%, transparent 51%),
    var(--paper);
  box-shadow: var(--shadow);
  place-items: center;
}

.poster::before {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 2px dashed rgba(255, 94, 171, 0.25);
  border-radius: 22px;
  content: "";
}

.copy {
  z-index: 2;
  width: min(720px, 100%);
  margin-top: clamp(-12px, -2vw, 0px);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 14px;
  border: 2px solid rgba(37, 23, 34, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #7d4568;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  font-size: clamp(0.78rem, 2vw, 0.95rem);
}

h1 {
  position: relative;
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h1::after {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -12px;
  height: clamp(10px, 2vw, 18px);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hot), #ff9f4c, var(--yellow), var(--mint), var(--blue), #ae7dff);
  content: "";
  transform: rotate(-1.4deg);
}

.hint {
  margin: 34px 0 0;
  color: #533043;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  font-size: clamp(1.05rem, 3vw, 1.55rem);
}

.actions {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(440px, 100%);
  min-height: 86px;
  margin-top: clamp(26px, 5vw, 54px);
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.btn {
  min-width: 128px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 0 rgba(37, 23, 34, 0.12), 0 24px 32px rgba(132, 51, 93, 0.18);
  transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease;
  touch-action: manipulation;
}

.btn:hover {
  filter: saturate(1.12);
  transform: translateY(-2px) scale(1.03);
}

.btn:active {
  box-shadow: 0 6px 0 rgba(37, 23, 34, 0.12), 0 12px 18px rgba(132, 51, 93, 0.16);
  transform: translateY(7px) scale(0.98);
}

.yes {
  background: linear-gradient(135deg, #ff4f9f, #ff2f7d);
  animation: yesPulse 2.2s ease-in-out infinite;
}

.no {
  position: relative;
  background: linear-gradient(135deg, #7057ff, #35b7ff);
  will-change: transform, left, top;
}

.no.is-running {
  position: fixed;
  z-index: 20;
}

.again {
  min-width: 152px;
  background: linear-gradient(135deg, #ff4f9f, #ff9969);
  font-size: 1.1rem;
}

.done {
  min-width: 152px;
  background: linear-gradient(135deg, #25cfa2, #49a8ff);
  font-size: 1.1rem;
}

.telegram {
  min-width: 236px;
  background: linear-gradient(135deg, #2aabee, #7d5cff);
  font-size: 1.1rem;
}

.telegram::before {
  margin-right: 8px;
  content: "✈";
}

.telegram:disabled {
  cursor: wait;
  filter: grayscale(0.15) saturate(0.82);
  opacity: 0.72;
}

.ghost {
  min-width: 132px;
  border: 2px solid rgba(37, 23, 34, 0.14);
  background: linear-gradient(135deg, #ffffff, #fff1f8);
  color: #8d4168;
  font-size: 1.1rem;
}

.message {
  min-height: 32px;
  margin: 16px 0 0;
  color: #a32865;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  font-size: clamp(0.98rem, 2vw, 1.2rem);
  font-weight: 700;
  text-align: center;
}

.cat-sticker {
  position: absolute;
  left: clamp(16px, 5vw, 48px);
  bottom: clamp(18px, 5vw, 42px);
  z-index: 1;
  width: clamp(190px, 30vw, 310px);
  padding: 12px 12px 44px;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 248, 0.94)),
    white;
  box-shadow: 0 22px 48px rgba(69, 34, 54, 0.2);
  transform: rotate(-5deg);
  animation: stickerFloat 5s ease-in-out infinite;
}

.cat-sticker::before {
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 47, 125, 0.22), rgba(145, 242, 208, 0.22));
  content: "";
  filter: blur(4px);
}

.cat-sticker img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  object-fit: cover;
}

.sticker-caption {
  position: absolute;
  right: 15px;
  bottom: 13px;
  left: 15px;
  color: #8d4168;
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  font-weight: 900;
  text-align: center;
}

.tape {
  position: absolute;
  width: 74px;
  height: 24px;
  border-radius: 3px;
  background: rgba(255, 216, 95, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.tape-top {
  top: -10px;
  left: 26px;
  transform: rotate(9deg);
}

.tape-bottom {
  right: 22px;
  bottom: -10px;
  background: rgba(145, 242, 208, 0.72);
  transform: rotate(-10deg);
}

.gift-box {
  position: absolute;
  right: clamp(16px, 8vw, 88px);
  bottom: clamp(28px, 7vw, 64px);
  z-index: 1;
  width: clamp(120px, 22vw, 210px);
  height: clamp(110px, 20vw, 190px);
  transform: rotate(8deg);
  animation: giftWiggle 3.6s ease-in-out infinite;
}

.box,
.lid {
  position: absolute;
  left: 8%;
  width: 84%;
  border: 4px solid rgba(37, 23, 34, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 0 43%, rgba(255, 255, 255, 0.44) 43% 57%, transparent 57%),
    linear-gradient(135deg, #ff5eab, #ff87c0);
}

.box {
  bottom: 0;
  height: 64%;
}

.lid {
  top: 25%;
  height: 24%;
  border-radius: 20px;
}

.bow {
  position: absolute;
  top: 1%;
  left: 33%;
  width: 34%;
  height: 40%;
}

.bow::before,
.bow::after {
  position: absolute;
  top: 14%;
  width: 58%;
  height: 58%;
  border: 5px solid #ff2f7d;
  border-radius: 48% 52% 42% 58%;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.bow::before {
  left: -16%;
  transform: rotate(-28deg);
}

.bow::after {
  right: -16%;
  transform: rotate(28deg);
}

.shine {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 8px;
  height: 74%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  transform: translate(-50%, -50%);
}

.floating {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.mini-gift {
  font-size: clamp(2.4rem, 6vw, 5rem);
  filter: drop-shadow(0 14px 18px rgba(88, 35, 70, 0.16));
  animation: bob 4.8s ease-in-out infinite;
}

.gift-one {
  top: 12%;
  right: 6%;
}

.gift-two {
  bottom: 16%;
  left: 8%;
  color: rgba(255, 216, 95, 0.78);
  animation-delay: -2s;
}

.heart {
  color: rgba(255, 47, 125, 0.48);
  font-size: clamp(3rem, 10vw, 8rem);
  animation: bob 4s ease-in-out infinite;
}

.heart-one {
  top: 12%;
  left: 7%;
}

.heart-two {
  right: 8%;
  bottom: 10%;
  animation-delay: -1.5s;
}

.ribbon {
  width: clamp(130px, 24vw, 260px);
  height: clamp(130px, 24vw, 260px);
  border: clamp(14px, 3vw, 26px) solid rgba(255, 94, 171, 0.28);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.ribbon-one {
  top: 60%;
  left: -8%;
  transform: rotate(21deg);
}

.ribbon-two {
  top: -8%;
  right: 16%;
  border-color: rgba(123, 182, 255, 0.22);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(42deg);
}

.sparkles::before,
.sparkles::after {
  position: absolute;
  z-index: -1;
  color: rgba(255, 47, 125, 0.38);
  font-size: clamp(1.8rem, 5vw, 4.4rem);
  content: "✦";
}

.confetti-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.confetti-field span {
  position: absolute;
  width: 12px;
  height: 26px;
  border-radius: 999px;
  background: var(--hot);
  opacity: 0.62;
  animation: confettiDrift 6s ease-in-out infinite;
}

.confetti-field span:nth-child(1) {
  top: 24%;
  left: 15%;
  background: var(--yellow);
}

.confetti-field span:nth-child(2) {
  top: 18%;
  left: 83%;
  background: var(--mint);
  animation-delay: -1s;
}

.confetti-field span:nth-child(3) {
  top: 76%;
  left: 50%;
  background: var(--blue);
  animation-delay: -2.4s;
}

.confetti-field span:nth-child(4) {
  top: 62%;
  left: 73%;
  background: #ae7dff;
  animation-delay: -3.2s;
}

.confetti-field span:nth-child(5) {
  top: 43%;
  left: 8%;
  background: #ff9969;
  animation-delay: -4s;
}

.sparkles::before {
  top: 22%;
  right: 18%;
}

.sparkles::after {
  bottom: 23%;
  left: 22%;
  color: rgba(53, 183, 255, 0.34);
}

.result {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  padding: 22px;
  background: rgba(255, 248, 251, 0.78);
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transition: opacity 220ms ease;
  backdrop-filter: blur(10px);
}

.result.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.sweet-page {
  position: relative;
  width: min(860px, 100%);
  max-height: calc(100vh - 44px);
  padding: clamp(22px, 4vw, 38px);
  overflow: auto;
  border: 3px solid rgba(37, 23, 34, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 216, 95, 0.25) 0 15%, transparent 32%),
    radial-gradient(circle at 8% 88%, rgba(255, 94, 171, 0.2) 0 14%, transparent 30%),
    white;
  box-shadow: var(--shadow);
}

.sweet-page::before,
.sweet-page::after {
  position: absolute;
  color: rgba(255, 47, 125, 0.32);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 1;
  pointer-events: none;
}

.sweet-page::before {
  top: 18px;
  right: 22px;
  content: "♡";
}

.sweet-page::after {
  bottom: 10px;
  left: 24px;
  color: rgba(255, 216, 95, 0.65);
  content: "✧";
}

.quest-progress {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 28px minmax(34px, 90px) 28px minmax(34px, 90px) 28px;
  justify-content: center;
  align-items: center;
  margin: 0 auto clamp(18px, 3vw, 28px);
}

.progress-dot {
  width: 28px;
  aspect-ratio: 1 / 1;
  border: 4px solid #ffe0ef;
  border-radius: 50%;
  background: white;
  box-shadow: 0 8px 18px rgba(88, 35, 70, 0.12);
}

.progress-dot.is-active,
.progress-dot.is-done {
  border-color: #ff5eab;
  background: linear-gradient(135deg, #ff5eab, #ffd85f);
}

.progress-line {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe0ef, #d9f8ee);
}

.quest-step {
  display: none;
}

.quest-step.is-active {
  display: block;
}

.sweet-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(120px, 190px) 1fr;
  gap: clamp(16px, 4vw, 30px);
  align-items: center;
}

.planner-header {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto clamp(20px, 4vw, 30px);
  text-align: center;
}

.planner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto 20px;
}

.planner-card {
  min-height: 132px;
  padding: clamp(16px, 3vw, 22px);
  border: 2px solid rgba(37, 23, 34, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 248, 0.86)),
    white;
  box-shadow: 0 14px 32px rgba(88, 35, 70, 0.1);
}

.wide-card {
  grid-column: 1 / -1;
}

.field-label {
  display: block;
  margin: 0 0 12px;
  color: #7d4568;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.date-input,
.select-input,
.note-input {
  width: 100%;
  border: 2px solid rgba(37, 23, 34, 0.12);
  border-radius: 18px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.date-input,
.select-input {
  min-height: 54px;
  padding: 0 16px;
}

.note-input {
  min-height: 100px;
  padding: 14px 16px;
  resize: vertical;
}

.date-input:focus,
.select-input:focus,
.note-input:focus {
  border-color: rgba(255, 94, 171, 0.6);
  box-shadow: 0 0 0 5px rgba(255, 94, 171, 0.14);
}

.quick-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quick-dates button,
.delivery-option {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.quick-dates button {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff1f8;
  color: #8d4168;
  font-size: 0.88rem;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.quick-dates button:hover {
  background: #ffe0ef;
  transform: translateY(-1px);
}

.delivery-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.delivery-option {
  display: grid;
  min-height: 98px;
  padding: 14px 10px;
  border: 2px solid rgba(37, 23, 34, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  color: #533043;
  place-items: center;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.delivery-option span {
  font-size: 2rem;
  line-height: 1;
}

.delivery-option b {
  font-size: 0.95rem;
}

.delivery-option:hover,
.delivery-option.is-selected {
  border-color: rgba(255, 94, 171, 0.5);
  background: #fff1f8;
  transform: translateY(-2px);
}

.range-input {
  width: 100%;
  accent-color: var(--hot);
}

.surprise-range {
  accent-color: #49a8ff;
}

.range-output {
  min-height: 48px;
  margin: 12px 0 0;
  color: #654258;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.35;
}

.final-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(130px, 210px) 1fr;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  max-width: 780px;
  margin: 0 auto 24px;
}

.final-summary {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.summary-pill {
  padding: 12px 16px;
  border: 2px solid rgba(37, 23, 34, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: #654258;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.35;
}

.result-kittens {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 8px solid #fff1f8;
  border-radius: 28px;
  object-fit: cover;
  filter: drop-shadow(0 18px 18px rgba(255, 47, 125, 0.18));
}

h2 {
  margin: 4px 0 12px;
  font-size: clamp(2rem, 5.8vw, 4.3rem);
  line-height: 0.98;
}

.sweet-note,
.sweet-summary {
  margin: 0;
  color: #654258;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  line-height: 1.55;
}

.sweet-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: clamp(20px, 4vw, 32px) auto 18px;
  max-width: 680px;
}

.sweet-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 12px 14px 12px clamp(18px, 3vw, 28px);
  border: 2px solid rgba(37, 23, 34, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 94, 171, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(88, 35, 70, 0.11);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.sweet-item.is-like {
  border-color: rgba(37, 207, 162, 0.48);
  background:
    linear-gradient(90deg, rgba(145, 242, 208, 0.34), transparent 58%),
    rgba(255, 255, 255, 0.9);
}

.sweet-item.is-dislike {
  border-color: rgba(255, 47, 125, 0.36);
  background:
    linear-gradient(90deg, rgba(255, 94, 171, 0.26), transparent 58%),
    rgba(255, 255, 255, 0.9);
}

.sweet-item:hover {
  transform: translateY(-2px);
}

.sweet-name {
  position: relative;
  display: inline-block;
  width: fit-content;
  font-size: clamp(1.7rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.sweet-name::after {
  position: absolute;
  right: -8px;
  bottom: -10px;
  left: -8px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 94, 171, 0.5);
  content: "";
  transform: rotate(-1deg);
}

.choice-buttons {
  display: flex;
  gap: 10px;
}

.choice {
  display: grid;
  width: clamp(48px, 9vw, 58px);
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1;
  place-items: center;
  box-shadow: 0 8px 0 rgba(37, 23, 34, 0.12), 0 14px 22px rgba(88, 35, 70, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.choice:hover {
  filter: saturate(1.12);
  transform: translateY(-2px) scale(1.05);
}

.choice:active {
  box-shadow: 0 4px 0 rgba(37, 23, 34, 0.12), 0 8px 14px rgba(88, 35, 70, 0.12);
  transform: translateY(4px) scale(0.98);
}

.choice.like {
  background: linear-gradient(135deg, #23d49f, #73db72);
}

.choice.dislike {
  background: linear-gradient(135deg, #ff4f9f, #ff6f61);
}

.choice.is-selected {
  outline: 4px solid rgba(255, 216, 95, 0.78);
  outline-offset: 3px;
}

.sweet-summary {
  min-height: 28px;
  margin: 8px auto 22px;
  max-width: 680px;
  color: #9b2e66;
  font-weight: 900;
  text-align: center;
}

.sweet-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.telegram-hint {
  position: relative;
  z-index: 1;
  margin: 14px auto 0;
  max-width: 520px;
  color: #7d4568;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.telegram-hint[data-state="loading"] {
  color: #35618d;
}

.telegram-hint[data-state="success"] {
  color: #148561;
}

.telegram-hint[data-state="error"] {
  color: #b12d64;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-18px) rotate(6deg);
  }
}

@keyframes stickerFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

@keyframes giftWiggle {
  0%,
  100% {
    transform: rotate(8deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(-8px);
  }
}

@keyframes confettiDrift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(18deg);
  }
}

@keyframes yesPulse {
  0%,
  100% {
    box-shadow: 0 14px 0 rgba(37, 23, 34, 0.12), 0 24px 32px rgba(132, 51, 93, 0.18);
  }
  50% {
    box-shadow: 0 14px 0 rgba(37, 23, 34, 0.12), 0 28px 42px rgba(255, 47, 125, 0.28);
  }
}

@media (max-width: 680px) {
  body {
    overflow: auto;
  }

  .scene {
    min-height: 100svh;
    padding: 12px;
  }

  .poster {
    min-height: calc(100svh - 24px);
    padding: 24px 18px;
    align-content: center;
    border-radius: 20px;
  }

  .actions {
    min-height: 150px;
    flex-wrap: wrap;
    gap: 14px;
  }

  .btn {
    min-width: 118px;
    min-height: 54px;
    font-size: 1.28rem;
  }

  .cat-sticker {
    left: 18px;
    bottom: 18px;
    width: 138px;
    opacity: 0.9;
  }

  .gift-box {
    right: 8px;
    bottom: 26px;
    opacity: 0.88;
  }

  .result {
    padding: 12px;
  }

  .sweet-page {
    max-height: calc(100svh - 24px);
    border-radius: 22px;
  }

  .sweet-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .result-kittens {
    width: min(170px, 56vw);
    margin: 0 auto;
  }

  .sweet-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .planner-grid,
  .delivery-options,
  .final-card {
    grid-template-columns: 1fr;
  }

  .delivery-option {
    min-height: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
