:root {
  color-scheme: dark;
  --bg: #080808;
  --panel: #111111;
  --panel-2: #191919;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f5f5f2;
  --muted: #aaa9a3;
  --accent: #ff3b30;
  --accent-soft: rgba(255, 59, 48, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Pretendard, "Noto Sans KR", system-ui, -apple-system, sans-serif;
}

body {
  min-height: 100dvh;
  overscroll-behavior: none;
}

button, input { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
img { user-select: none; -webkit-user-drag: none; }
.is-hidden { display: none !important; }

.title-screen {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 59, 48, 0.16), transparent 32%),
    linear-gradient(180deg, #111 0%, #050505 70%);
}

.title-card {
  width: min(100%, 480px);
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 15, 15, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.title-kicker, .record-kicker, .header-label {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.title-card h1 {
  margin: 9px 0 8px;
  font-size: clamp(30px, 9vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  white-space: pre-line;
}

.title-description, .adult-warning {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.creator-credit {
  margin: 12px 0 0;
  color: rgba(245,245,242,.5);
  font-size: 12px;
  font-weight: 700;
}
.creator-credit a {
  margin-left: 9px;
  color: rgba(245,245,242,.85);
  text-decoration: none;
}
.creator-credit a:hover,
.creator-credit a:focus-visible { color: #fff; text-decoration: underline; }

.adult-warning {
  margin-top: 26px;
  font-size: 13px;
}

.adult-check {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.adult-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.preload-panel { margin-top: 25px; }
.preload-row { display: flex; justify-content: space-between; font-size: 13px; }
.preload-track {
  overflow: hidden;
  height: 5px;
  margin-top: 9px;
  border-radius: 999px;
  background: #303030;
}
.preload-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 240ms ease;
}
.preload-count { margin: 7px 0 0; color: var(--muted); font-size: 11px; text-align: right; }

.primary-button, .choice-button, .record-button, .record-close {
  border: 0;
  border-radius: 14px;
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}

.primary-button {
  width: 100%;
  min-height: 52px;
  margin-top: 20px;
  background: var(--accent);
}
.primary-button:disabled { opacity: 0.35; cursor: not-allowed; }

.app {
  min-height: 100dvh;
  display: grid;
  place-items: start center;
  background: #050505;
}

.comic-panel {
  width: min(100%, 720px);
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  background: var(--panel);
}

.game-header {
  min-height: 58px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.96);
  z-index: 3;
}
.record-button {
  min-height: 44px;
  padding: 9px 14px;
  background: var(--panel-2);
  border: 1px solid var(--line);
}
.record-button.is-receiving { animation: record-receive 440ms ease; }

.image-frame {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}

.prologue-panel {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 6vh, 54px);
  padding: 30px 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.055), transparent 34%),
    #050505;
}
.prologue-panel[hidden] { display: none; }
.prologue-text {
  width: min(100%, 540px);
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(17px, 4.8vw, 23px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: -.015em;
  text-align: center;
  white-space: pre-line;
  word-break: keep-all;
  animation: prologue-appear 900ms ease both;
}
.prologue-guide {
  width: min(100%, 540px);
  padding: 15px 17px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  animation: prologue-appear 900ms ease 180ms both;
}
.prologue-guide-title {
  margin: 0 0 9px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
}
.prologue-guide-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.25em;
  font-size: clamp(12px, 3.35vw, 14px);
  line-height: 1.55;
  word-break: keep-all;
}
.comic-panel.is-prologue .story-box { display: none; }
.comic-panel.is-prologue .comic-image,
.comic-panel.is-prologue .camera-flash,
.comic-panel.is-prologue .collection-toast,
.comic-panel.is-prologue .character-speech { visibility: hidden; }

.comic-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  transition: opacity 420ms ease, transform 460ms cubic-bezier(.22,.75,.18,1);
}
.comic-image.is-entering { opacity: 0; transform: scale(1.008); }
.transition-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}
.transition-image.is-visible { opacity: 1; }
.transition-image.is-visible.is-fading { opacity: 0; }
.image-frame.is-collected-dissolve .comic-image {
  transition-duration: 820ms, 820ms;
  transition-timing-function: ease-in-out, ease-in-out;
}
.image-frame.is-collected-dissolve .transition-image { transition-duration: 820ms; }

.camera-flash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #fff;
  opacity: 0;
  z-index: 3;
}
.camera-flash.is-flashing { animation: camera-flash 420ms ease-out; }

.character-speech {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 18px 18px 18px 5px;
  color: #fff;
  background: rgba(18, 18, 18, .48);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 300ms cubic-bezier(.22, .75, .18, 1);
  pointer-events: none;
  font-size: 16px;
  line-height: 1.45;
  word-break: keep-all;
}
.character-speech::after {
  content: '';
  position: absolute;
  left: -1px;
  bottom: -8px;
  width: 15px;
  height: 15px;
  border-left: 1px solid rgba(255, 255, 255, .2);
  background: rgba(18, 18, 18, .48);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.character-speech.is-visible { opacity: 1; transform: translateY(0); }
.character-speech.is-typing span::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  vertical-align: -.12em;
  background: rgba(255, 255, 255, .82);
  animation: speech-caret 720ms steps(1) infinite;
}

.collection-toast {
  position: absolute;
  left: 50%;
  bottom: 18px;
  translate: -50% 12px;
  width: max-content;
  max-width: calc(100% - 30px);
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.82);
  opacity: 0;
  pointer-events: none;
  font-size: 13px;
  font-weight: 750;
  transition: opacity 180ms ease, translate 180ms ease;
  z-index: 5;
}
.collection-toast.is-visible { opacity: 1; translate: -50% 0; }

.story-box {
  height: 74px;
  min-height: 74px;
  max-height: 74px;
  overflow-y: auto;
  padding: 9px 15px;
  border-top: 1px solid var(--line);
  background: var(--panel);
}
.story-text { margin: 0; line-height: 1.42; word-break: keep-all; font-size: 16px; }
.progress-message { margin: 5px 0 0; color: #ffb3ae; font-size: 12px; font-weight: 700; }

.choices {
  height: 64px;
  min-height: 64px;
  max-height: 64px;
  overflow-y: auto;
  display: grid;
  grid-auto-rows: minmax(46px, max-content);
  align-content: start;
  gap: 8px;
  padding: 10px 12px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #0b0b0b;
  transition: height 320ms cubic-bezier(.22,.75,.18,1), min-height 320ms cubic-bezier(.22,.75,.18,1), max-height 320ms cubic-bezier(.22,.75,.18,1);
}
.choices.is-compact { height: 64px; min-height: 64px; max-height: 64px; }
.choices.is-medium { height: 116px; min-height: 116px; max-height: 116px; }
.choices.is-tall { height: 164px; min-height: 164px; max-height: 164px; }
.choices.is-scroll { height: 176px; min-height: 176px; max-height: 176px; }
.choices.is-all {
  width: 100%;
  height: auto;
  min-height: 116px;
  max-height: none;
  overflow: visible;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(46px, auto);
  align-content: start;
}
.choice-button {
  min-height: 46px;
  padding: 10px 14px;
  background: var(--accent);
  text-align: center;
  line-height: 1.3;
}
.choice-button.is-secondary { background: var(--panel-2); border: 1px solid var(--line); }
.choice-button.is-locked { background: #292929; color: #777; cursor: not-allowed; }
.choice-button:active:not(:disabled) { transform: scale(0.985); }

.record-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: end center;
  background: rgba(0, 0, 0, 0.86);
  opacity: 1;
  visibility: visible;
  transition: opacity 280ms ease, visibility 280ms ease;
}
.record-modal.is-hidden {
  display: grid !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.record-sheet {
  width: min(100%, 760px);
  height: min(92dvh, 900px);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(92, 69, 49, .45);
  border-radius: 24px 24px 0 0;
  color: #32271f;
  background: #e8ddcb;
  transform: translateY(0);
  transition: transform 340ms cubic-bezier(.22, .75, .18, 1);
}
.record-modal.is-hidden .record-sheet { transform: translateY(34px); }
.record-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(92, 69, 49, .26);
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(106,79,54,.08) 50%, transparent 50.5%),
    #f1e8da;
}
.record-header > div { min-width: 0; }
.record-header h2 { margin: 4px 0 0; color: #2d2118; font-family: Georgia, "Times New Roman", serif; font-size: 29px; }
.record-progress {
  grid-column: 1 / -1;
  width: min(100%, 620px);
  margin: 2px auto 0;
}
.record-progress-row { display: flex; justify-content: center; align-items: baseline; gap: 12px; text-align: center; }
.record-summary { color: #705b49; font-size: 15px; font-weight: 700; }
.record-progress-row strong { color: #4f3828; font-size: 21px; }
.record-progress-track {
  position: relative;
  overflow: visible;
  height: 11px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(91,67,47,.17);
}
.record-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8b4e38, #c48263);
  box-shadow: 0 0 12px rgba(122,74,52,.25);
  transition: width 360ms cubic-bezier(.22,.75,.18,1);
}
.record-unlock-marker {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  width: 3px;
  height: 21px;
  border-radius: 999px;
  background: #4f3828;
  box-shadow: 0 0 0 3px rgba(255, 248, 236, .72);
  transform: translate(-50%, -50%);
  transition: left 360ms ease, background 240ms ease;
}
.record-unlock-marker span {
  position: absolute;
  left: 50%;
  bottom: 18px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #fff8ee;
  background: #4f3828;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.25;
  white-space: nowrap;
  transform: translateX(-50%);
}
.record-unlock-marker.is-unlocked,
.record-unlock-marker.is-unlocked span { background: #9b563d; }
.record-unlock-note {
  min-height: 17px;
  margin: 22px 0 0;
  color: #705b49;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}
.record-close { min-height: 44px; padding: 9px 14px; color: #fff8ee; background: #604636; }

.record-grid {
  min-height: 0;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: max-content;
  align-content: start;
  column-gap: 14px;
  row-gap: 22px;
  padding: 20px 16px calc(26px + env(safe-area-inset-bottom));
  background:
    linear-gradient(90deg, transparent 48.8%, rgba(79,57,40,.14) 49.7%, rgba(255,255,255,.28) 50.4%, transparent 51.2%),
    repeating-linear-gradient(0deg, rgba(94,69,48,.025) 0 1px, transparent 1px 5px),
    #e8ddcb;
}
.record-item {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  height: auto;
  min-width: 0;
  min-height: auto;
  padding: 0;
  overflow: hidden;
  aspect-ratio: auto;
  border: 1px solid rgba(105,78,54,.18);
  border-radius: 10px;
  background: #f9f4eb;
  box-shadow: 0 7px 16px rgba(69,48,33,.18), 0 1px 2px rgba(69,48,33,.14);
  transform: none;
  contain: none;
}
.record-item::before {
  content: none;
}
.record-item img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 832 / 1216;
  display: block;
  object-fit: contain;
  background: #111;
  border-radius: inherit;
  transition: opacity 180ms ease;
}
.record-item.is-locked {
  border-color: rgba(105,78,54,.13);
  background: rgba(249,244,235,.8);
  box-shadow: 0 5px 13px rgba(69,48,33,.11);
}
.record-item.is-locked img {
  opacity: .92;
  transform: none;
}
.record-item.is-locked::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(214,200,184,.08));
}
.record-item.is-collected { cursor: zoom-in; }

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: #000;
  cursor: default;
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.image-viewer.is-hidden {
  display: grid !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.viewer-stage {
  position: relative;
  width: min(100vw, 68.422dvh);
  height: min(100dvh, 146.154vw);
  overflow: hidden;
  background: #000;
  transform: scale(1);
  opacity: 1;
  transition: transform 340ms cubic-bezier(.22, .75, .18, 1), opacity 260ms ease;
  cursor: zoom-in;
}
.viewer-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 380ms cubic-bezier(.22, .75, .18, 1);
}
.viewer-canvas > #viewer-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.viewer-stage.is-zoomed { cursor: zoom-out; }
.viewer-stage.is-zoomed .viewer-canvas { transform: scale(2.25); }
.image-viewer.is-hidden .viewer-stage { transform: scale(.965); opacity: 0; }
.viewer-back {
  position: absolute;
  top: calc(12px + env(safe-area-inset-top));
  left: 12px;
  z-index: 3;
  min-width: 58px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(12,12,12,.64);
  color: #fff;
  font-weight: 750;
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: opacity 220ms ease, transform 220ms ease;
}
.image-viewer.is-hidden .viewer-back { opacity: 0; transform: translateX(-8px); }
.milk-effects {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.milk-splash {
  position: absolute;
  left: var(--milk-x);
  top: var(--milk-y);
  z-index: 2;
  width: var(--milk-size);
  height: auto;
  max-height: 72%;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, .24));
  transform: translate(-50%, -75%) scale(.2) rotate(var(--milk-rotate));
  transform-origin: 50% 18%;
  animation:
    milk-land 720ms cubic-bezier(.18, .82, .28, 1.16) var(--milk-delay) forwards,
    milk-fade 1300ms ease calc(var(--milk-delay) + 2300ms) forwards;
}
.milk-button {
  position: absolute;
  right: 12px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 5;
  min-width: 68px;
  min-height: 44px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #3d3020;
  background: rgba(255, 245, 213, .88);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-weight: 850;
  cursor: pointer;
}
.milk-button.is-active { animation: milk-button-pop 460ms ease; }
.image-viewer.is-hidden .milk-button { opacity: 0; transform: translateY(8px); }
.is-modal-open { overflow: hidden; }

.paid-code-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.76);
  backdrop-filter: blur(10px);
  opacity: 1;
  visibility: visible;
  transition: opacity 220ms ease, visibility 220ms ease;
}
.paid-code-modal.is-hidden {
  display: grid !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.paid-code-card {
  width: min(100%, 390px);
  padding: 25px 22px 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(20,20,20,.96);
  box-shadow: 0 24px 80px rgba(0,0,0,.62);
  transform: translateY(0) scale(1);
  transition: transform 260ms cubic-bezier(.22,.75,.18,1);
}
.paid-code-modal.is-hidden .paid-code-card { transform: translateY(12px) scale(.97); }
.paid-code-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}
.paid-code-card h2 { margin: 8px 0 7px; font-size: 24px; }
.paid-code-description { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.paid-code-label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 700; }
.paid-code-input {
  width: 100%;
  min-height: 50px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .2em;
  text-align: center;
  text-transform: uppercase;
  background: #090909;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  outline: none;
}
.paid-code-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.paid-code-error { margin: 9px 0 0; color: #ff796f; font-size: 12px; text-align: center; }
.paid-code-actions { display: grid; grid-template-columns: 1fr 1.35fr; gap: 9px; margin-top: 18px; }
.paid-code-actions button { min-height: 46px; border: 0; border-radius: 12px; color: #fff; font-weight: 800; }
.paid-code-cancel { background: #303030; }
.paid-code-submit { background: var(--accent); }

.capture-flyer {
  position: fixed;
  z-index: 35;
  padding: 7px 7px 13px;
  pointer-events: none;
  background: #fbf7f0;
  box-shadow: 0 16px 36px rgba(0,0,0,.38);
  transform-origin: center;
}
.capture-flyer img { width: 100%; height: 100%; display: block; object-fit: contain; background: #000; }

@keyframes camera-flash {
  0% { opacity: 0; }
  10% { opacity: 0.95; }
  35% { opacity: 0.3; }
  100% { opacity: 0; }
}

@keyframes prologue-appear {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes record-receive {
  0%, 100% { transform: scale(1); box-shadow: none; }
  45% { transform: scale(1.12); box-shadow: 0 0 0 7px rgba(255,59,48,.14); }
}

@keyframes speech-caret {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes milk-land {
  0% { opacity: 0; transform: translate(-50%, -115%) scale(.18) rotate(var(--milk-rotate)); }
  48% { opacity: .68; transform: translate(-50%, -42%) scale(1.08) rotate(var(--milk-rotate)); }
  72% { transform: translate(-50%, -53%) scale(.96) rotate(var(--milk-rotate)); }
  100% { opacity: .62; transform: translate(-50%, -50%) scale(1) rotate(var(--milk-rotate)); }
}

@keyframes milk-fade {
  from { opacity: .62; }
  to { opacity: 0; }
}

@keyframes milk-button-pop {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(.9); }
  72% { transform: scale(1.08); }
}

@media (min-width: 700px) {
  .app { padding: 22px; }
  .comic-panel {
    min-height: calc(100dvh - 44px);
    max-height: calc(100dvh - 44px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
  }
  .record-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px 18px; padding-inline: 22px; }
}

@media (max-height: 700px) {
  .game-header { min-height: 50px; padding-block: 6px; }
  .story-box { height: 64px; min-height: 64px; max-height: 64px; padding-block: 7px; }
  .story-text { font-size: 15px; }
  .character-speech { bottom: 10px; padding: 10px 13px; font-size: 15px; }
  .choices { padding-top: 7px; }
  .choices.is-compact { height: 58px; min-height: 58px; max-height: 58px; }
  .choices.is-medium { height: 104px; min-height: 104px; max-height: 104px; }
  .choices.is-tall { height: 138px; min-height: 138px; max-height: 138px; }
  .choices.is-scroll { height: 150px; min-height: 150px; max-height: 150px; }
  .choices.is-all { height: auto; min-height: 104px; max-height: none; }
  .choice-button { min-height: 42px; padding-block: 8px; font-size: 14px; }
}

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