:root {
  --green: #173f2c;
  --green-2: #2d6848;
  --sage: #a9bf9d;
  --mint: #dfeade;
  --paper: #fbf7ed;
  --cream: #fffdf6;
  --ink-soft: #5f6963;
  --peach: #eda77c;
  --gold: #e3bb54;
  --line: rgba(23, 63, 44, 0.22);
  --shadow: 0 24px 60px rgba(38, 55, 43, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--green);
  background:
    radial-gradient(circle at 16% 10%, rgba(169, 191, 157, 0.34), transparent 28%),
    radial-gradient(circle at 82% 30%, rgba(237, 167, 124, 0.12), transparent 24%),
    linear-gradient(160deg, #f6f8f0 0%, #fffaf1 52%, #eef6ef 100%);
  font-family:
    "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
}

button,
input {
  font: inherit;
}

.app-shell {
  width: min(100%, 520px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 20px;
}

.screen {
  min-height: calc(100vh - 64px);
}

.is-hidden {
  display: none;
}

.brand-bar,
.card-topline,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--green);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
}

.brand-bar {
  justify-content: flex-start;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-art {
  width: min(74vw, 330px);
  aspect-ratio: 1;
  margin: 46px auto 26px;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0.9;
  mix-blend-mode: multiply;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  transform: scale(2.35) translateY(12%);
}

.eyebrow {
  margin: 0 0 16px;
  color: #6b806f;
  font-size: 18px;
  font-weight: 700;
}

.home-copy h1 {
  margin: 0;
  max-width: 11em;
  font-size: clamp(40px, 11vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

.home-copy h2 {
  margin: 26px 0 0;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0;
}

.home-copy p:last-child {
  margin: 28px 0 0;
  color: #66706b;
  font-size: 21px;
  line-height: 1.78;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-radius: 8px;
  padding: 0 28px;
  cursor: pointer;
}

.primary-button {
  margin-top: 28px;
  color: white;
  background: linear-gradient(120deg, #214b31, #3f704b);
  box-shadow: 0 14px 30px rgba(33, 75, 49, 0.22);
  font-size: 24px;
  font-weight: 800;
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.primary-button.compact,
.ghost-button {
  width: auto;
  min-height: 48px;
  padding: 0 20px;
  font-size: 17px;
}

.ghost-button {
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--green);
  background: rgba(255, 255, 255, 0.56);
}

.home-note {
  margin: 18px 0 0;
  color: #7b857f;
  font-size: 15px;
  letter-spacing: 1px;
}

.quiz-screen {
  display: flex;
  flex-direction: column;
}

.screen.is-hidden {
  display: none;
}

.quiz-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.quiz-header h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.35;
}

.progress-pill {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.progress-track {
  height: 9px;
  margin: 28px 0 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 63, 44, 0.12);
}

.progress-fill {
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: var(--peach);
  transition: width 0.25s ease;
}

.answer-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.answer-option {
  position: relative;
  display: block;
}

.answer-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.answer-option span {
  display: block;
  min-height: 76px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.82);
  color: #334a3c;
  font-size: 18px;
  line-height: 1.45;
  box-shadow: 0 10px 24px rgba(48, 64, 54, 0.08);
}

.answer-option input:checked + span {
  border-color: rgba(23, 63, 44, 0.78);
  background: #edf4e8;
  box-shadow: inset 0 0 0 2px rgba(23, 63, 44, 0.28);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
}

.reset-card {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 28px 26px 22px;
  border: 1px solid rgba(23, 63, 44, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 52%, rgba(223, 234, 222, 0.7), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 22px 22px, 22px 22px, auto;
  box-shadow: var(--shadow);
}

.card-topline {
  font-size: 18px;
}

.card-hero {
  margin-top: 28px;
}

.english-name {
  display: inline-block;
  margin: 0 0 5px;
  padding: 0 8px 7px;
  border-bottom: 6px solid var(--peach);
  font-size: 43px;
  line-height: 0.95;
  font-weight: 900;
  transform: rotate(-3deg);
}

.card-hero h1 {
  margin: 0;
  font-size: clamp(54px, 14vw, 74px);
  line-height: 1.08;
  letter-spacing: 0;
}

.card-body {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.hand-note {
  padding: 22px 18px;
  border-radius: 38% 44% 41% 36% / 28% 35% 31% 38%;
  background: rgba(223, 234, 222, 0.7);
  transform: rotate(-2deg);
}

.hand-note p {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 800;
}

.hand-note p:last-child {
  margin-bottom: 0;
  font-size: 21px;
}

.mascot-stage {
  position: relative;
  min-height: 265px;
}

.mascot-aura {
  position: absolute;
  inset: 58px 8px 20px;
  border-radius: 50%;
  background: rgba(237, 167, 124, 0.2);
}

.mascot {
  position: absolute;
  right: 8px;
  bottom: 40px;
  width: 168px;
  height: 150px;
  border: 3px solid rgba(23, 63, 44, 0.28);
  border-radius: 46% 54% 52% 48% / 58% 56% 44% 42%;
  background: #e9efd5;
  box-shadow: inset 10px -16px 0 rgba(23, 63, 44, 0.06);
}

.mascot::before,
.mascot::after {
  content: "";
  position: absolute;
  top: -20px;
  width: 46px;
  height: 48px;
  border-radius: 50%;
  background: inherit;
  border-top: 3px solid rgba(23, 63, 44, 0.24);
}

.mascot::before {
  left: 28px;
}

.mascot::after {
  right: 28px;
}

.eye {
  position: absolute;
  top: 62px;
  width: 9px;
  height: 18px;
  border-radius: 999px;
  background: var(--green);
}

.eye.left {
  left: 58px;
}

.eye.right {
  right: 58px;
}

.mouth {
  position: absolute;
  left: 50%;
  top: 92px;
  width: 28px;
  height: 15px;
  border-bottom: 4px solid var(--green);
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}

.product-cup {
  position: absolute;
  right: 68px;
  bottom: 12px;
  display: grid;
  width: 56px;
  height: 66px;
  place-items: center;
  border: 3px solid rgba(23, 63, 44, 0.58);
  border-radius: 8px 8px 16px 16px;
  color: white;
  background: #73946e;
  font-size: 24px;
  font-weight: 900;
}

.doodle {
  position: absolute;
  border: 3px solid var(--gold);
}

.doodle.one {
  top: 24px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-left-color: transparent;
  transform: rotate(-18deg);
}

.doodle.two {
  left: 18px;
  bottom: 20px;
  width: 56px;
  height: 10px;
  border-color: var(--peach);
  border-width: 0 0 4px;
  border-radius: 50%;
}

.result-sentence {
  margin: 12px 0 0;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #304b3a;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800;
}

.result-explain {
  margin: 14px 0 18px;
  color: #526057;
  font-size: 16px;
  line-height: 1.72;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.card-meta.bottom {
  border-bottom: 1px solid var(--line);
}

.card-meta span,
.reset-action span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.card-meta strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
}

.meta-icon {
  position: relative;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(169, 191, 157, 0.35);
}

.leaf-icon::before {
  content: "";
  position: absolute;
  inset: 15px 18px 13px 18px;
  border: 3px solid var(--green);
  border-radius: 100% 0 100% 0;
  transform: rotate(-24deg);
}

.clock-icon::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 3px solid var(--green);
  border-radius: 50%;
}

.clock-icon::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 20px;
  width: 12px;
  height: 14px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
}

.reset-action {
  padding: 14px 0 12px;
}

.reset-action p {
  margin: 0;
  color: #405545;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.card-footer {
  margin-top: 10px;
  font-size: 14px;
}

.result-controls {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.result-controls .ghost-button,
.result-controls .primary-button {
  flex: 1;
  justify-content: center;
  margin-top: 0;
}

.result-card-image {
  display: block;
  width: min(100%, 500px);
  height: auto;
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.result-card-image.is-hidden {
  display: none;
}

.detail-panel {
  width: min(100%, 500px);
  margin: 18px auto 0;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 246, 0.88);
  box-shadow: 0 16px 38px rgba(38, 55, 43, 0.12);
}

.detail-panel.is-hidden {
  display: none;
}

.detail-panel h2 {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.25;
}

.detail-panel section {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.detail-panel span {
  display: block;
  margin-bottom: 8px;
  color: #6b806f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.detail-panel p {
  margin: 0;
  color: #3f5146;
  font-size: 17px;
  line-height: 1.72;
  white-space: pre-line;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.detail-grid strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 10;
  padding: 11px 16px;
  border-radius: 999px;
  color: white;
  background: rgba(23, 63, 44, 0.92);
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: 0.22s ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.result-screen[data-role="popup"] .mascot {
  border-radius: 42% 58% 48% 52% / 48% 46% 54% 52%;
  background: #e3ead9;
}

.result-screen[data-role="air"] .mascot {
  height: 136px;
  background: #ecf1d7;
  transform: rotate(-4deg);
}

.result-screen[data-role="spin"] .mascot {
  width: 150px;
  height: 172px;
  border-radius: 50% 50% 46% 46% / 44% 44% 58% 58%;
  transform: rotate(7deg);
}

.result-screen[data-role="glow"] .mascot {
  background: #dce8bc;
}

.result-screen[data-role="moon"] .mascot {
  background: #dfeadf;
  border-radius: 48% 52% 46% 54% / 56% 56% 44% 44%;
}

.result-screen[data-zone="focus"] .meta-icon,
.result-screen[data-zone="focus"] .mascot-aura {
  background-color: rgba(169, 191, 157, 0.36);
}

.result-screen[data-zone="recharge"] .meta-icon,
.result-screen[data-zone="recharge"] .mascot-aura {
  background-color: rgba(196, 221, 205, 0.52);
}

.result-screen[data-zone="active"] .meta-icon,
.result-screen[data-zone="active"] .mascot-aura {
  background-color: rgba(237, 167, 124, 0.25);
}

.result-screen[data-zone="sleep"] .meta-icon,
.result-screen[data-zone="sleep"] .mascot-aura {
  background-color: rgba(175, 197, 212, 0.34);
}

@media (max-width: 430px) {
  .app-shell {
    padding: 24px 14px;
  }

  .brand-bar {
    font-size: 14px;
  }

  .home-copy h1 {
    font-size: 42px;
  }

  .home-copy p:last-child {
    font-size: 18px;
  }

  .reset-card {
    min-height: auto;
    padding: 24px 20px 20px;
    border-radius: 20px;
  }

  .card-topline {
    font-size: 14px;
  }

  .english-name {
    font-size: 34px;
  }

  .card-hero h1 {
    font-size: 50px;
  }

  .card-body {
    grid-template-columns: 1fr;
  }

  .hand-note p {
    font-size: 23px;
  }

  .hand-note p:last-child {
    font-size: 18px;
  }

  .mascot-stage {
    min-height: 220px;
  }

  .mascot {
    right: 50%;
    transform: translateX(50%);
  }

  .product-cup {
    right: calc(50% - 28px);
  }

  .result-controls {
    flex-direction: column;
  }
}

/* RESET CARD reference style */
.result-screen {
  padding-bottom: 28px;
}

.result-screen.is-hidden {
  display: none;
}

.result-screen:not(.is-hidden) {
  display: block;
}

.result-screen::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95), transparent 34%),
    radial-gradient(circle at 50% 62%, rgba(169, 191, 157, 0.2), transparent 46%);
}

.result-screen .reset-card {
  width: min(100%, 500px);
  min-height: 690px;
  aspect-ratio: 3 / 4.25;
  margin: 0 auto;
  padding: 28px 28px 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 76% 44%, rgba(223, 234, 222, 0.62), transparent 25%),
    radial-gradient(circle at 26% 42%, rgba(249, 218, 194, 0.4), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 22px 22px, 22px 22px, auto;
}

.result-screen .reset-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(23, 63, 44, 0.08) 0.65px, transparent 0.65px),
    radial-gradient(rgba(237, 167, 124, 0.08) 0.55px, transparent 0.55px);
  background-position: 0 0, 8px 11px;
  background-size: 13px 13px, 17px 17px;
  opacity: 0.55;
  mix-blend-mode: multiply;
}

.result-screen .card-topline,
.result-screen .card-hero,
.result-screen .card-body,
.result-screen .result-sentence,
.result-screen .card-meta,
.result-screen .card-footer {
  position: relative;
  z-index: 1;
}

.result-screen .card-topline {
  font-size: 16px;
  line-height: 1;
}

.result-screen .card-hero {
  margin-top: 26px;
}

.result-screen .english-name {
  padding: 0 10px 7px;
  border-bottom-width: 5px;
  font-family: "Comic Sans MS", "Trebuchet MS", "Microsoft YaHei", sans-serif;
  font-size: 39px;
}

.result-screen .card-hero h1 {
  max-width: 100%;
  font-family: "STXingkai", "KaiTi", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  line-height: 1.02;
  text-shadow:
    0.8px 0 var(--green),
    0 0.8px var(--green);
}

.result-screen[data-role="moon"] .card-hero h1,
.result-screen[data-role="glow"] .card-hero h1 {
  font-size: clamp(64px, 15vw, 92px);
}

.result-screen[data-role="spin"] .card-hero h1,
.result-screen[data-role="popup"] .card-hero h1 {
  font-size: clamp(58px, 13vw, 82px);
}

.result-screen[data-role="air"] .card-hero h1,
.result-screen[data-role="slow"] .card-hero h1 {
  font-size: clamp(62px, 14vw, 88px);
}

.result-screen[data-role="moon"] .english-name::after {
  content: "☾";
  margin-left: 10px;
  color: var(--gold);
  font-size: 0.8em;
}

.result-screen[data-role="glow"] .english-name::after {
  content: "✦";
  margin-left: 9px;
  color: var(--gold);
  font-size: 0.48em;
  vertical-align: super;
}

.result-screen[data-role="air"] .english-name::after {
  content: "〰";
  margin-left: 10px;
  color: var(--sage);
}

.result-screen[data-role="spin"] .english-name::after {
  content: "⌁";
  margin-left: 10px;
  color: var(--peach);
}

.result-screen[data-role="popup"] .english-name::after {
  content: "!";
  margin-left: 10px;
  color: var(--peach);
}

.result-screen[data-role="slow"] .english-name::after {
  content: "…";
  margin-left: 10px;
  color: var(--sage);
}

.result-screen .card-body {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2px;
  margin-top: 12px;
}

.result-screen .hand-note {
  min-height: 255px;
  padding: 26px 16px 18px;
  border-radius: 37% 42% 40% 35% / 24% 35% 32% 36%;
  background: rgba(223, 234, 222, 0.72);
}

.result-screen .hand-note p {
  margin-bottom: 11px;
  font-family: "STXingkai", "KaiTi", "Microsoft YaHei", sans-serif;
  font-size: 26px;
  line-height: 1.45;
}

.result-screen .hand-note p:nth-child(2) {
  text-decoration: underline;
  text-decoration-color: var(--peach);
  text-decoration-thickness: 4px;
  text-underline-offset: 5px;
}

.result-screen .hand-note p:last-child {
  font-size: 22px;
}

.result-screen .mascot-stage {
  min-height: 305px;
}

.result-screen .mascot-aura {
  inset: 62px -4px 28px;
  background: rgba(237, 167, 124, 0.18);
}

.result-screen .mascot {
  right: 10px;
  bottom: 48px;
  width: 178px;
  height: 156px;
}

.result-screen .product-cup {
  right: 74px;
  bottom: 20px;
  width: 58px;
  height: 68px;
}

.product-line {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 2px solid rgba(23, 63, 44, 0.35);
  color: rgba(23, 63, 44, 0.7);
  background: rgba(255, 253, 246, 0.58);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.bottle-a {
  top: 44px;
  right: 8px;
  width: 42px;
  height: 86px;
  border-radius: 10px 10px 14px 14px;
  transform: rotate(12deg);
}

.bottle-a::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 11px;
  width: 18px;
  height: 12px;
  border: 2px solid rgba(23, 63, 44, 0.35);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.stick-a {
  top: 22px;
  left: 14px;
  width: 28px;
  height: 90px;
  border-radius: 5px;
  transform: rotate(-9deg);
  writing-mode: vertical-rl;
  letter-spacing: 1px;
}

.speech-bubble {
  position: absolute;
  z-index: 3;
  top: 54px;
  left: 6px;
  min-width: 92px;
  padding: 10px 12px;
  border: 2px solid rgba(23, 63, 44, 0.38);
  border-radius: 46% 54% 48% 52% / 50% 46% 54% 50%;
  background: rgba(255, 253, 246, 0.82);
  color: var(--green);
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: 15px;
  font-weight: 800;
  transform: rotate(7deg);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: -10px;
  width: 15px;
  height: 15px;
  border-right: 2px solid rgba(23, 63, 44, 0.38);
  border-bottom: 2px solid rgba(23, 63, 44, 0.38);
  background: rgba(255, 253, 246, 0.82);
  transform: rotate(38deg);
}

.result-screen[data-role="spin"] .speech-bubble,
.result-screen[data-role="popup"] .speech-bubble,
.result-screen[data-role="air"] .speech-bubble,
.result-screen[data-role="moon"] .speech-bubble {
  display: block;
}

.result-screen[data-role="glow"] .speech-bubble,
.result-screen[data-role="slow"] .speech-bubble {
  display: none;
}

.result-screen .result-sentence {
  margin-top: 4px;
  padding: 12px 0;
  border-top: 1.5px solid var(--line);
  border-bottom: 0;
  font-size: 18px;
}

.result-screen .result-explain,
.result-screen .reset-action {
  display: none;
}

.result-screen .card-meta {
  padding: 14px 0 12px;
  border-top: 1.5px solid var(--line);
}

.result-screen .card-meta.bottom {
  border-bottom: 1.5px solid var(--line);
}

.result-screen .card-meta span {
  margin-bottom: 7px;
  font-size: 12px;
}

.result-screen .card-meta strong {
  font-size: 30px;
}

.result-screen .card-meta strong#moment {
  font-size: 38px;
}

.result-screen .card-meta:first-of-type strong {
  text-decoration: underline;
  text-decoration-color: var(--peach);
  text-decoration-thickness: 5px;
  text-underline-offset: 5px;
}

.result-screen .card-footer {
  margin-top: 12px;
  font-size: 13px;
}

.result-screen .result-controls {
  width: min(100%, 500px);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 430px) {
  .result-screen .reset-card {
    min-height: 650px;
    padding: 22px 18px 16px;
  }

  .result-screen .card-topline {
    font-size: 13px;
  }

  .result-screen .english-name {
    font-size: 32px;
  }

  .result-screen[data-role] .card-hero h1 {
    font-size: 52px;
  }

  .result-screen .card-body {
    grid-template-columns: 1fr;
  }

  .result-screen .hand-note {
    min-height: auto;
    padding: 20px 18px;
  }

  .result-screen .hand-note p {
    font-size: 22px;
  }

  .result-screen .hand-note p:last-child {
    font-size: 18px;
  }

  .result-screen .mascot-stage {
    min-height: 220px;
  }

  .result-screen .mascot {
    right: 50%;
    width: 150px;
    height: 132px;
    transform: translateX(50%);
  }

  .result-screen .product-cup {
    right: calc(50% - 28px);
  }
}
