:root {
  color-scheme: light;
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
  --ink: #274c49;
  --muted: #687d78;
  --paper: #fffdf8;
  --line: #dcd4b9;
  --green: #579477;
  --gold: #e7af4d;
  --coral: #d97b6c;
  --lavender: #9278ae;
  --shadow: 0 20px 46px rgba(51, 75, 69, .14);
}

* { box-sizing: border-box; }
.animal-portrait { display: block; width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 7px 7px rgba(49, 73, 65, .15)); }
html { min-width: 320px; min-height: 100%; background: #f1f7ef; }
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(244, 198, 100, .25) 0 150px, transparent 152px),
    radial-gradient(circle at 96% 88%, rgba(146, 120, 174, .15) 0 180px, transparent 182px),
    linear-gradient(145deg, #f1f7ef, #fffaf0 58%, #eef6f4);
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .13;
  background-image: radial-gradient(#52796f 1px, transparent 1px);
  background-size: 27px 27px;
  content: "";
}

button { color: inherit; font: inherit; }
button:not(:disabled) { cursor: pointer; }
button:focus-visible { outline: 4px solid rgba(231, 175, 77, .75); outline-offset: 4px; }
h1, h2, p { margin-top: 0; }

.app {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 22px 0 48px;
}
.topbar,
.brand,
.topbar-actions,
.section-heading,
.game-heading,
.story-heading,
.answer-heading,
.feedback,
.result-actions {
  display: flex;
  align-items: center;
}
.topbar { min-height: 66px; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.brand { gap: 12px; padding: 0; text-align: left; background: none; border: 0; }
.brand-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #fff;
  font: 900 30px/1 Georgia, serif;
  background: var(--green);
  border: 5px solid #dceee5;
  border-radius: 50%;
  box-shadow: 0 7px 16px rgba(67, 87, 78, .13);
  transform: rotate(-5deg);
}
.brand strong,
.brand small { display: block; }
.brand strong { font-size: 24px; font-weight: 900; }
.brand small { margin-top: 3px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.topbar-actions { gap: 10px; }
.top-actions { display: flex; align-items: center; gap: 10px; }
.quiet-badge {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 253, 248, .94);
  border: 2px solid var(--line);
  border-radius: 17px;
}
.quiet-badge > span { color: var(--coral); font-size: 20px; }
.top-spark { display: grid; width: 46px; height: 46px; place-items: center; color: var(--gold); font-size: 25px; }
.sound-button,
.back-button {
  min-height: 49px;
  font-weight: 900;
  background: rgba(255, 253, 248, .94);
  border: 2px solid var(--line);
  border-radius: 17px;
}
.sound-button { display: flex; align-items: center; gap: 9px; padding: 0 17px; font-size: 13px; }
.back-button { width: 49px; min-width: 49px; flex-shrink: 0; padding: 0; font-size: 22px; }
.eyebrow {
  margin: 0 0 8px;
  color: #39765f;
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.primary-button,
.secondary-button,
.next-button,
.hint-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 21px;
  font-weight: 900;
  border-radius: 17px;
}
.primary-button,
.next-button {
  color: #fff;
  background: var(--green);
  border: 0;
  box-shadow: 0 7px 0 #3e735b;
}
.secondary-button,
.hint-button { background: #fff9df; border: 2px solid #e5c96f; }

.hero {
  display: grid;
  min-height: 495px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(35px, 5vw, 62px);
  padding: clamp(38px, 5.5vw, 68px);
  overflow: hidden;
  background: rgba(255, 253, 248, .97);
  border: 3px solid var(--line);
  border-radius: 46px;
  box-shadow: var(--shadow);
}
.hero h1 { margin-bottom: 18px; font-size: clamp(47px, 5.8vw, 70px); font-weight: 900; letter-spacing: -.05em; line-height: .98; }
.hero-copy > p:not(.eyebrow) { margin-bottom: 27px; color: var(--muted); font-size: 18px; font-weight: 800; line-height: 1.52; }
.hero-board {
  position: relative;
  min-height: 350px;
  padding: 24px;
  background: linear-gradient(150deg, #e7f5ee, #fff0bd);
  border: 8px solid #fff;
  border-radius: 38px;
  box-shadow: 0 20px 38px rgba(57, 75, 70, .18);
}
.hero-label {
  position: absolute;
  top: 23px;
  left: 24px;
  padding: 8px 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--green);
  border-radius: 999px;
}
.hero-event {
  position: absolute;
  left: 24px;
  z-index: 2;
  display: grid;
  width: 155px;
  min-height: 72px;
  align-items: center;
  grid-template-columns: 45px 1fr;
  gap: 8px;
  padding: 10px;
  font-size: 28px;
  background: #fff;
  border: 3px solid #ded6bd;
  border-radius: 18px;
  box-shadow: 0 7px 14px rgba(63, 83, 76, .12);
}
.hero-event small { color: var(--ink); font-size: 11px; font-weight: 900; line-height: 1.25; }
.hero-event-one { top: 75px; transform: rotate(-2deg); }
.hero-event-two { top: 205px; transform: rotate(2deg); }
.hero-note {
  position: absolute;
  top: 25px;
  left: 24px;
  width: 56%;
  padding: 15px 17px;
  background: #fff;
  border: 3px solid #dfd6bd;
  border-radius: 18px;
  transform: rotate(-3deg);
}
.hero-note small,
.hero-note strong { display: block; }
.hero-note small { color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.hero-note strong { margin-top: 7px; font-size: 16px; line-height: 1.3; }
.hero-arrow {
  position: absolute;
  top: 158px;
  left: 84px;
  z-index: 2;
  color: var(--gold);
  font: 900 42px/1 Georgia, serif;
  transform: rotate(90deg);
}
.hero-animal {
  position: absolute;
  right: 14px;
  bottom: 11px;
  width: 66%;
  max-width: 240px;
}
.hero-animal svg,
.animal-wrap svg,
.result-animal svg { display: block; width: 100%; height: auto; }
.hero-question {
  position: absolute;
  right: 22px;
  top: 18px;
  display: grid;
  width: 65px;
  height: 65px;
  place-items: center;
  color: #fff;
  font: 900 34px/1 Georgia, serif;
  background: var(--coral);
  border: 5px solid #f6d5cd;
  border-radius: 50%;
  transform: rotate(8deg);
}
.hero-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-facts > span { display: flex; min-height: 47px; align-items: center; gap: 6px; padding: 8px 12px; color: var(--muted); background: #f3f2e9; border-radius: 15px; }
.hero-facts strong { color: var(--ink); font-size: 19px; }
.hero-facts small { font-size: 11px; font-weight: 900; }

.how-section,
.levels-section { margin-top: 48px; }
.section-heading { justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.section-heading h2 { margin: 0; font-size: clamp(32px, 4vw, 45px); font-weight: 900; }
.section-heading > p { max-width: 440px; margin: 0; color: var(--muted); font-size: 14px; font-weight: 800; line-height: 1.45; text-align: right; }
.steps-grid,
.levels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.steps-grid > article {
  display: grid;
  min-height: 132px;
  align-items: center;
  grid-template-columns: 62px 1fr;
  gap: 15px;
  padding: 21px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 25px;
}
.steps-grid > article > b {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: #fff;
  font: 900 27px/1 Georgia, serif;
  background: var(--green);
  border: 5px solid #dceee5;
  border-radius: 50%;
}
.steps-grid > article:nth-child(2) > b { background: var(--gold); border-color: #fff0be; }
.steps-grid > article:nth-child(3) > b { background: var(--lavender); border-color: #e8def6; }
.steps-grid > article strong,
.steps-grid > article small { display: block; }
.steps-grid > article strong { margin-bottom: 7px; font-size: 18px; }
.steps-grid > article small { color: var(--muted); font-size: 13px; font-weight: 800; line-height: 1.4; }

.level-card {
  position: relative;
  min-height: 360px;
  padding: 26px;
  overflow: hidden;
  text-align: left;
  background: var(--paper);
  border: 3px solid var(--line);
  border-radius: 29px;
  box-shadow: 0 8px 0 #d8d0b7;
  transition: transform .18s ease, border-color .18s ease;
}
.level-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.level-top,
.level-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.level-top > b { color: var(--accent); font: 900 38px/1 Georgia, serif; }
.level-top > small { color: var(--gold); font-size: 12px; font-weight: 900; }
.level-preview {
  display: grid;
  height: 112px;
  align-items: center;
  grid-template-columns: 50px 28px 1fr;
  margin: 17px 0;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent) 12%, white);
  border-radius: 20px;
}
.level-preview > i { padding-left: 9px; font-size: 27px; font-style: normal; }
.level-preview > em { color: var(--accent); font-size: 24px; font-style: normal; font-weight: 900; }
.level-preview > span { align-self: end; width: 108px; justify-self: center; }
.level-copy,
.level-copy > small,
.level-copy > strong,
.level-copy > span { display: block; }
.level-copy > small { color: var(--accent); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.level-copy > strong { margin: 6px 0; font-size: 22px; line-height: 1.1; }
.level-copy > span { min-height: 58px; color: var(--muted); font-size: 13px; font-weight: 800; line-height: 1.4; }
.level-footer { margin-top: 18px; font-size: 11px; font-weight: 900; }
.level-footer > b { color: var(--accent); }
.level-number { color: var(--level-accent); font: 900 42px/1 Georgia, serif; }
.level-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  font-size: 25px;
  background: var(--level-accent);
  border-radius: 18px;
}
.level-card h3 { max-width: 82%; margin: 24px 0 6px; font-size: 25px; line-height: 1.08; }
.level-card > small { color: var(--level-accent); font-weight: 900; }
.level-card > p { margin: 16px 0 24px; color: var(--muted); font-size: 14px; font-weight: 800; line-height: 1.45; }
.level-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.level-meta span { font-size: 12px; font-weight: 900; }
.level-stars { color: var(--gold); letter-spacing: 2px; }
.parent-note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding: 17px 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  background: rgba(255, 253, 248, .85);
  border: 2px dashed var(--line);
  border-radius: 22px;
}
.parent-note > span { font-size: 25px; }

.game-shell,
.result-card {
  padding: clamp(22px, 4vw, 45px);
  background: var(--paper);
  border: 3px solid var(--line);
  border-radius: 42px;
  box-shadow: var(--shadow);
}
.game-heading { justify-content: space-between; gap: 20px; }
.game-heading h1 { margin-bottom: 7px; font-size: clamp(34px, 4.6vw, 51px); font-weight: 900; letter-spacing: -.035em; line-height: 1; }
.game-heading p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); font-weight: 800; }
.round-badge {
  display: grid;
  min-width: 82px;
  height: 82px;
  place-items: center;
  align-content: center;
  color: #fff;
  font-family: Georgia, serif;
  background: var(--accent);
  border: 6px solid color-mix(in srgb, var(--accent) 25%, white);
  border-radius: 50%;
}
.round-badge strong { font-size: 29px; line-height: 1; }
.round-badge small { margin-top: 4px; font-size: 10px; }
.progress-track { height: 12px; margin: 23px 0; overflow: hidden; background: #ece9df; border-radius: 999px; }
.progress-track span { display: block; height: 100%; background: var(--accent); border-radius: inherit; transition: width .25s ease; }
.play-layout { display: grid; align-items: stretch; grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr); gap: 17px; }
.story-column,
.answer-column { min-width: 0; padding: 22px; border: 2px solid var(--line); border-radius: 29px; }
.story-column { background: #f3f8f2; }
.answer-column { background: #fffcf5; }
.story-heading,
.answer-heading { justify-content: space-between; gap: 15px; }
.story-heading > span { color: var(--muted); font-size: 12px; font-weight: 900; }
.events-list { display: grid; gap: 8px; margin-top: 12px; }
.event-card {
  display: grid;
  min-height: 88px;
  align-items: center;
  grid-template-columns: 49px 1fr;
  gap: 12px;
  padding: 13px 15px;
  background: #fff;
  border: 3px solid #d9ddd2;
  border-radius: 20px;
  transition: border-color .2s ease, background .2s ease;
}
.event-card.key { background: #fff6ce; border-color: var(--gold); box-shadow: 0 0 0 5px rgba(231, 175, 77, .15); }
.event-card > span { display: grid; width: 47px; height: 47px; place-items: center; font-size: 25px; background: #f3f0e7; border-radius: 15px; }
.event-card small,
.event-card strong { display: block; }
.event-card small { margin-bottom: 4px; color: var(--muted); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.event-card strong { font-size: 14px; line-height: 1.35; }
.event-arrow { display: grid; height: 17px; place-items: center; color: var(--gold); font-size: 18px; font-weight: 900; }
.mood-card {
  display: grid;
  min-height: 143px;
  align-items: center;
  grid-template-columns: 122px 1fr;
  gap: 14px;
  margin-top: 14px;
  padding: 10px 17px 8px 6px;
  overflow: hidden;
  background: color-mix(in srgb, var(--mood) 13%, white);
  border: 3px solid color-mix(in srgb, var(--mood) 48%, white);
  border-radius: 23px;
}
.animal-wrap { align-self: end; width: 128px; max-width: 100%; }
.mood-card small,
.mood-card strong,
.mood-card span { display: block; }
.mood-card small { color: var(--muted); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.mood-card strong { margin: 5px 0; font-size: 20px; }
.mood-card span { color: var(--mood); font-size: 13px; font-weight: 900; }

.answer-heading { align-items: flex-start; }
.answer-heading h2 { margin: 0; font-size: 22px; line-height: 1.15; }
.answer-heading > span {
  display: grid;
  min-width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  font: 900 26px/1 Georgia, serif;
  background: var(--coral);
  border-radius: 50%;
}
.reasons-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 17px; }
.reason-card {
  display: grid;
  min-width: 0;
  min-height: 108px;
  align-items: center;
  grid-template-columns: 43px minmax(0, 1fr) 30px;
  gap: 9px;
  padding: 12px;
  text-align: left;
  background: #fff;
  border: 3px solid #ddd8c8;
  border-radius: 20px;
  box-shadow: 0 5px 0 #d8d2c2;
}
.reason-card:nth-child(odd):last-child { grid-column: 1 / -1; }
.reason-card:hover:not(:disabled) { border-color: var(--accent); }
.reason-icon { display: grid; width: 43px; height: 43px; place-items: center; font-size: 22px; background: #f4f1e8; border-radius: 13px; }
.reason-card strong { min-width: 0; overflow-wrap: anywhere; font-size: 13px; line-height: 1.3; }
.reason-card b {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--muted);
  background: #f0eee6;
  border-radius: 50%;
}
.reason-card.wrong { opacity: .62; border-color: #dda59c; box-shadow: 0 5px 0 #c98c82; }
.reason-card.wrong b { color: #fff; background: var(--coral); }
.reason-card.hinted { background: #fff8d7; border-color: var(--gold); animation: glow 1.2s ease-in-out infinite alternate; }
.reason-card.correct { background: #ecf8f0; border-color: var(--green); box-shadow: 0 5px 0 #76a98e; }
.reason-card.correct b { color: #fff; background: var(--green); }
@keyframes glow { to { box-shadow: 0 0 0 6px rgba(231, 175, 77, .22); } }

.feedback {
  min-height: 83px;
  gap: 12px;
  margin-top: 17px;
  padding: 12px;
  background: #f3f3ec;
  border: 2px solid #dddcd2;
  border-radius: 21px;
}
.feedback.success { background: #edf8f0; border-color: #9fc7ac; }
.feedback.retry { background: #fff2ee; border-color: #e5b1a8; }
.feedback.hint { background: #fff8d9; border-color: #ead079; }
.feedback-icon {
  display: grid;
  min-width: 47px;
  height: 47px;
  place-items: center;
  font-size: 23px;
  background: #fff;
  border-radius: 14px;
}
.feedback > div { min-width: 0; flex: 1; }
.feedback strong,
.feedback small,
.feedback em { display: block; }
.feedback strong { font-size: 14px; }
.feedback small { margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 800; line-height: 1.35; }
.feedback em { margin-top: 6px; color: #39765f; font-size: 12px; font-weight: 900; line-height: 1.35; }
.feedback .hint-button,
.feedback .next-button { min-width: 124px; flex-shrink: 0; padding: 0 14px; font-size: 12px; }

.result-card { display: grid; min-height: 590px; align-items: center; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 65px); }
.result-art {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: linear-gradient(150deg, #e5f3eb, #fff1c0);
  border: 7px solid #fff;
  border-radius: 35px;
  box-shadow: 0 18px 35px rgba(57, 75, 70, .17);
}
.result-animal { position: absolute; bottom: 24px; width: 57%; }
.result-one { left: -8px; }
.result-two { right: -7px; transform: scaleX(-1); }
.result-event {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 2;
  color: var(--coral);
  font: 900 62px/1 Georgia, serif;
  transform: translateX(-50%);
}
.result-support {
  position: absolute;
  top: 105px;
  left: 50%;
  z-index: 3;
  padding: 10px 17px;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
  background: var(--green);
  border-radius: 999px;
  transform: translateX(-50%);
}
.result-copy h1 { margin-bottom: 13px; font-size: clamp(40px, 5vw, 60px); line-height: 1; letter-spacing: -.045em; }
.result-copy > p { color: var(--muted); font-weight: 800; line-height: 1.5; }
.result-stars { margin: 18px 0; color: var(--gold); font-size: 39px; letter-spacing: 5px; }
.result-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.result-stats span { padding: 13px 8px; text-align: center; background: #f2f2e9; border-radius: 17px; }
.result-stats strong,
.result-stats small { display: block; }
.result-stats strong { font-size: 24px; }
.result-stats small { color: var(--muted); font-size: 10px; font-weight: 900; }
.result-copy blockquote { margin: 17px 0; padding: 13px 16px; color: #39765f; font-weight: 900; line-height: 1.35; background: #eef7f1; border-left: 5px solid var(--green); border-radius: 10px 17px 17px 10px; }
.result-actions { flex-wrap: wrap; gap: 11px; }
.error-card { margin-top: 100px; padding: 30px; text-align: center; background: var(--paper); border: 3px solid var(--line); border-radius: 30px; }
.error-card > span { display: block; font: 900 55px/1 Georgia, serif; }
.error-card strong,
.error-card small { display: block; margin-top: 10px; }

@media (max-width: 930px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-board { width: min(540px, 100%); margin: 0 auto; }
  .hero-facts { justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .levels-grid { grid-template-columns: repeat(2, 1fr); }
  .level-card:last-child { grid-column: 1 / -1; }
  .play-layout { grid-template-columns: 1fr; }
  .result-card { grid-template-columns: 1fr; }
  .result-art { width: min(480px, 100%); margin: 0 auto; }
}

@media (max-width: 680px) {
  .app { width: min(100% - 20px, 1120px); padding-top: 12px; }
  .topbar { min-height: 53px; margin-bottom: 13px; }
  .brand-mark { width: 46px; height: 46px; font-size: 24px; border-width: 4px; }
  .brand strong { font-size: 18px; }
  .brand small,
  .sound-button span:last-child { display: none; }
  .sound-button { width: 47px; min-height: 46px; justify-content: center; padding: 0; }
  .quiet-badge { width: 47px; min-width: 47px; min-height: 46px; justify-content: center; padding: 0; font-size: 0; }
  .hero { min-height: auto; padding: 33px 20px; border-radius: 31px; }
  .hero h1 { font-size: clamp(42px, 13vw, 54px); }
  .hero-board { min-height: 300px; }
  .hero-note { width: 64%; }
  .hero-animal { width: 70%; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .section-heading > p { text-align: left; }
  .levels-grid { grid-template-columns: 1fr; }
  .level-card:last-child { grid-column: auto; }
  .game-shell,
  .result-card { padding: 20px 14px; border-radius: 29px; }
  .game-heading { align-items: flex-start; }
  .round-badge { min-width: 64px; height: 64px; border-width: 4px; }
  .round-badge strong { font-size: 23px; }
  .story-column,
  .answer-column { padding: 15px; border-radius: 23px; }
  .mood-card { grid-template-columns: 102px 1fr; padding-right: 10px; }
  .animal-wrap { width: 108px; }
  .reasons-grid { grid-template-columns: 1fr; }
  .reason-card:nth-child(odd):last-child { grid-column: auto; }
  .reason-card { min-height: 86px; }
  .feedback { align-items: stretch; flex-wrap: wrap; }
  .feedback > div { min-width: calc(100% - 62px); }
  .feedback .hint-button,
  .feedback .next-button { width: 100%; }
  .result-art { min-height: 340px; }
  .result-copy { text-align: center; }
  .result-copy blockquote { text-align: left; }
  .result-actions { flex-direction: column; }
  .result-actions button { width: 100%; }
}

@media (max-width: 390px) {
  .game-heading h1 { font-size: 31px; }
  .game-heading p:not(.eyebrow) { font-size: 13px; }
  .story-heading { align-items: flex-start; flex-direction: column; gap: 2px; }
  .event-card { grid-template-columns: 44px 1fr; padding: 11px; }
  .event-card > span { width: 42px; height: 42px; }
  .mood-card { grid-template-columns: 88px 1fr; }
  .animal-wrap { width: 94px; }
  .mood-card strong { font-size: 17px; }
  .reason-card { grid-template-columns: 40px minmax(0, 1fr) 28px; padding: 10px; }
  .reason-icon { width: 40px; height: 40px; }
}

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