:root {
  color-scheme: light;
  font-family: "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  font-synthesis: none;
  --ink: #17352f;
  --paper: #f6f2e8;
  --signal: #b83b35;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #132f27;
  color: var(--ink);
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #e3a33e;
  outline-offset: 3px;
}

.selection-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
  background:
    radial-gradient(circle at 12% 20%, rgba(203, 222, 185, .15), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(139, 169, 191, .14), transparent 34%),
    #132f27;
}

.selection-shell {
  width: min(100%, 900px);
}

.selection-heading {
  max-width: 650px;
  margin-bottom: 32px;
  color: #f3efe4;
}

.selection-kicker,
.intro-label,
.tutorial-progress,
.result-heading > span {
  margin: 0 0 10px;
  color: #bdcbbf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: .18em;
}

.selection-heading h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Noto Serif CJK SC", serif;
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 500;
  line-height: 1.12;
}

.selection-heading > p:last-child {
  margin: 0;
  color: #b8c7be;
  line-height: 1.75;
}

.demo-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.demo-card {
  position: relative;
  min-height: 270px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 28px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 24px 64px rgba(4, 17, 13, .28);
  transition: transform .22s ease, box-shadow .22s ease;
}

.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 74px rgba(4, 17, 13, .36);
}

.demo-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -58px;
  top: -68px;
  border-radius: 46% 54% 58% 42%;
  opacity: .42;
  transform: rotate(18deg);
}

.demo-card-e {
  background: #f6f0e5;
}

.demo-card-e::after {
  background: linear-gradient(135deg, #cce4d4, #c9dceb 46%, #e7d5eb);
}

.demo-card-f {
  color: #f4eee2;
  background:
    linear-gradient(180deg, rgba(12, 26, 23, .72), rgba(12, 24, 21, .9)),
    url('../assets/forest-background.png') center / cover;
}

.demo-card-f::after {
  border: 1px solid rgba(219, 226, 211, .2);
  background: repeating-linear-gradient(135deg, rgba(219, 226, 211, .16) 0 2px, transparent 2px 14px);
}

.demo-card-index {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 22px;
}

.demo-card-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  gap: 7px;
}

.demo-card-label {
  font-size: 12px;
  letter-spacing: .12em;
}

.demo-card-copy strong {
  font-family: Georgia, "Noto Serif CJK SC", serif;
  font-size: 26px;
  font-weight: 600;
}

.demo-card-copy > span:last-child {
  max-width: 250px;
  font-size: 13px;
  line-height: 1.65;
  opacity: .72;
}

.demo-card-enter {
  position: relative;
  z-index: 1;
  justify-self: end;
  padding-top: 14px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: .1em;
}

.selection-footnote {
  margin: 24px 0 0;
  color: #91a69a;
  font-size: 12px;
  text-align: center;
}

.play-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  background: #dfe7df;
}

#demo-app {
  width: 100%;
  min-height: 100dvh;
  display: grid;
  place-items: center;
}

.phone-shell {
  position: relative;
  width: min(100%, 390px);
  min-height: min(844px, 100dvh);
  overflow: hidden;
  padding: max(20px, env(safe-area-inset-top)) 18px max(20px, env(safe-area-inset-bottom));
}

.text-back {
  min-height: 34px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.primary-action,
.result-actions button {
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  background: #1b4c40;
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
}

.intro-shell,
.tutorial-shell {
  display: flex;
  flex-direction: column;
}

.intro-e,
.tutorial-e {
  background:
    radial-gradient(circle at 80% 16%, rgba(201, 220, 235, .75), transparent 25%),
    radial-gradient(circle at 18% 75%, rgba(230, 214, 232, .72), transparent 28%),
    #f7f1e6;
}

.intro-f,
.tutorial-f {
  color: #f2eee4;
  background:
    linear-gradient(180deg, rgba(10, 25, 20, .6), rgba(9, 20, 18, .9)),
    url('../assets/forest-background.png') center / cover;
}

.intro-number {
  width: 154px;
  height: 154px;
  display: grid;
  place-items: center;
  margin: auto auto 28px;
  border: 1px solid currentColor;
  border-radius: 45% 55% 52% 48%;
  font-family: Georgia, serif;
  font-size: 82px;
  opacity: .88;
  transform: rotate(-4deg);
}

.standalone-intro-monster {
  width: 164px;
  height: 152px;
  margin: auto auto 28px;
  background: url('../assets/workplace-monster-atlas.png') 0% 100% / 200% 200% no-repeat;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, .38));
}

.intro-label {
  color: inherit;
  opacity: .62;
}

.intro-shell h1,
.tutorial-shell h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Noto Serif CJK SC", serif;
  font-size: 36px;
  font-weight: 500;
}

.intro-shell > p:not(.intro-label),
.tutorial-shell > p:not(.tutorial-progress) {
  margin: 0;
  line-height: 1.75;
  opacity: .72;
}

.intro-shell dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 26px 0;
}

.intro-shell dl div {
  padding: 12px 10px;
  border: 1px solid currentColor;
  border-radius: 12px;
}

.intro-shell dt {
  margin-bottom: 4px;
  font-size: 10px;
  opacity: .6;
}

.intro-shell dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.intro-shell .primary-action,
.tutorial-shell .primary-action {
  width: 100%;
}

.intro-f .primary-action,
.tutorial-f .primary-action,
.result-f .result-actions button:first-child {
  background: #c4a166;
  color: #13251f;
}

.tutorial-progress {
  margin-top: auto;
  color: inherit;
  opacity: .58;
}

.tutorial-demo {
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 0;
}

.tutorial-demo i {
  position: relative;
  width: 74px;
  height: 58px;
  border: 1px solid currentColor;
  border-radius: 18px 18px 18px 5px;
  background: rgba(255, 255, 255, .24);
}

.tutorial-demo i:nth-child(2) {
  transform: translateY(-12px);
}

.tutorial-shell .primary-action {
  margin-top: 28px;
}

.e-shell {
  background: #f5f1e8;
  color: #203b35;
}

.e-chat-header {
  display: grid;
  grid-template-columns: 50px 1fr 14px;
  align-items: center;
  gap: 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid #d6dbd4;
}

.e-chat-header > div {
  display: grid;
  gap: 2px;
  text-align: center;
}

.e-chat-header strong {
  font-size: 14px;
}

.e-chat-header span {
  color: #7b8e87;
  font-size: 10px;
}

.unread-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(184, 59, 53, .1);
}

.e-pressure-message,
.e-boundary-message {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}

.e-pressure-message span,
.e-boundary-message span {
  color: #83928c;
  font-size: 9px;
}

.e-pressure-message p,
.e-boundary-message p {
  width: fit-content;
  max-width: 82%;
  margin: 0;
  padding: 9px 12px;
  border-radius: 5px 14px 14px 14px;
  font-size: 12px;
  line-height: 1.4;
}

.e-pressure-message p {
  background: #fff;
  box-shadow: 0 4px 15px rgba(54, 67, 60, .06);
}

.e-pressure-message small {
  color: #a59d94;
  font-size: 9px;
}

.e-boundary-message {
  justify-items: end;
}

.e-boundary-message p {
  border-radius: 14px 5px 14px 14px;
  background: #d7eadc;
}

.e-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 12px;
  margin: 12px 0 9px;
  padding: 10px 12px;
  border: 1px solid #d6ddd5;
  border-radius: 14px;
  background: rgba(255, 255, 255, .55);
}

.e-progress > div:first-child,
.e-steps {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.e-progress span {
  color: #70827b;
  font-size: 9px;
}

.e-progress strong {
  font-family: Georgia, serif;
  font-size: 17px;
}

.progress-track {
  grid-column: 1 / -1;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #dde1dc;
}

.progress-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #709a82;
  transition: width .35s ease;
}

.board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
  touch-action: none;
  user-select: none;
}

.board-cell {
  position: relative;
  aspect-ratio: 1;
  min-width: 0;
  overflow: visible;
  padding: 0;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease, filter .15s ease;
}

.board-cell:disabled {
  cursor: default;
}

.bubble-cell {
  display: grid;
  place-items: center;
  padding: 5px;
  border: 1px solid rgba(64, 78, 72, .13);
  border-radius: 14px 14px 14px 5px;
  box-shadow: inset 0 1px rgba(255, 255, 255, .72), 0 4px 8px rgba(57, 72, 65, .05);
}

.bubble-cream { background: #fffaf0; }
.bubble-green { background: #dcebdd; }
.bubble-blue { background: #dceaf2; }
.bubble-yellow { background: #f3e8b9; }
.bubble-purple { background: #e9ddeb; }
.bubble-orange { background: #f2dfc7; }
.bubble-empty { background: rgba(232, 228, 218, .42); }

.bubble-copy {
  color: #3f514b;
  font-size: clamp(10px, 2.6vw, 11px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.bubble-tail {
  position: absolute;
  left: 2px;
  bottom: -3px;
  width: 8px;
  height: 8px;
  border-left: 1px solid rgba(64, 78, 72, .13);
  background: inherit;
  transform: skewY(-28deg);
}

.special-label {
  position: absolute;
  inset: auto 3px 3px;
  padding: 2px;
  border-radius: 4px;
  background: #285c50;
  color: #fff;
  font-size: 9px;
  letter-spacing: .02em;
}

.bubble-cell.is-selected {
  box-shadow: 0 0 0 3px #6f9b87, inset 0 1px rgba(255, 255, 255, .72);
  transform: translateY(-2px);
}

.special-legend {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  color: #73827d;
  font-size: 9px;
}

.special-legend span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 4px;
  border-radius: 50%;
  background: #749b87;
  vertical-align: 1px;
}

.event-status {
  min-height: 18px;
  margin: 8px 0 0;
  font-size: 9px;
  text-align: center;
  opacity: .68;
}

.event-match .is-active-event,
.event-specialCreate .is-active-event,
.event-specialTrigger .is-active-event {
  animation: match-pulse .42s ease-in-out infinite alternate;
}

.event-clear .is-active-event {
  animation: clear-away .24s ease-in both;
  box-shadow: 0 0 0 2px rgba(184, 59, 53, .72);
}

.event-swap .is-active-event,
.event-invalidSwap .is-active-event {
  animation: swap-shift .22s ease-in-out infinite alternate;
}

.event-fall .board-cell,
.event-refill .board-cell {
  animation: settle-in .24s ease-out both;
}

@keyframes match-pulse {
  to { transform: scale(1.07); filter: brightness(1.08); }
}

@keyframes clear-away {
  to { transform: scale(.76); opacity: .18; }
}

@keyframes swap-shift {
  to { transform: translateY(-3px); }
}

@keyframes settle-in {
  from { transform: translateY(-7px); opacity: .72; }
}

.f-shell {
  color: #eef0e6;
  background:
    linear-gradient(180deg, rgba(8, 22, 18, .68), rgba(7, 17, 15, .94)),
    url('../assets/forest-background.png') center / cover;
}

.f-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 5px);
}

.f-board-frame,
.f-shell > .event-status {
  position: relative;
  z-index: 1;
}

.f-revision-header,
.f-revision-progress,
.revision-foe {
  position: relative;
  z-index: 1;
}

.f-revision-header {
  display: grid;
  grid-template-columns: 52px 1fr 58px;
  align-items: center;
  gap: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(226, 232, 218, .24);
}

body[data-demo-standalone="true"] .f-revision-header {
  grid-template-columns: 1fr 58px;
}

.f-revision-header > div {
  text-align: center;
}

.f-revision-header h1 {
  margin: 0;
  font-family: Georgia, "Noto Serif CJK SC", serif;
  font-size: 20px;
  font-weight: 500;
}

.f-revision-header small {
  color: #aab8aa;
  font-size: 10px;
}

.f-mute {
  min-height: 34px;
  padding: 0 6px;
  border: 1px solid rgba(226, 232, 218, .28);
  border-radius: 8px;
  background: rgba(13, 31, 26, .72);
  color: #eef0e6;
  font-size: 10px;
  cursor: pointer;
}

.f-mute[aria-pressed="true"] {
  color: #c8a59b;
  border-color: rgba(184, 59, 53, .55);
}

.f-revision-progress {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 7px;
  margin: 9px 0 5px;
}

.f-revision-progress p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 5px;
  margin: 0;
  padding: 7px 8px;
  border: 1px solid rgba(226, 232, 218, .16);
  border-radius: 7px;
  background: rgba(13, 31, 26, .62);
}

.f-revision-progress span {
  color: #aab8aa;
  font-size: 10px;
}

.f-revision-progress strong {
  font-family: Georgia, "Noto Serif CJK SC", serif;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.revision-foe {
  display: grid;
  justify-items: center;
  height: 128px;
  margin-bottom: 4px;
}

.revision-monster {
  width: 116px;
  height: 108px;
  background: url('../assets/workplace-monster-atlas.png') 0% 100% / 200% 200% no-repeat;
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, .38));
  transform-origin: 50% 58%;
  transition: transform .24s ease, opacity .24s ease, filter .24s ease;
}

.revision-foe p {
  position: absolute;
  right: 5px;
  bottom: 5px;
  max-width: 180px;
  margin: 0;
  padding: 5px 8px;
  border-radius: 9px 9px 2px 9px;
  background: rgba(239, 232, 213, .94);
  color: #263d34;
  font-size: 11px;
  line-height: 1.3;
}

.monster-progress-0 {
  transform: scale(1);
}

.monster-progress-1 {
  animation: revision-shake .5s ease-in-out infinite alternate;
}

.monster-progress-2 {
  transform: scale(.84) rotate(-5deg);
  animation: revision-shake .34s ease-in-out infinite alternate;
}

.monster-progress-2::after,
.monster-progress-3::after {
  content: "";
  position: absolute;
  width: 62px;
  height: 62px;
  margin: 42px 0 0 76px;
  background: url('../assets/revision-loop-fx-atlas.png') 0% 100% / 200% 200% no-repeat;
}

.monster-progress-3 {
  opacity: .42;
  transform: scale(.66) rotate(-12deg);
}

.victory-curl-away {
  animation: victory-curl-away 300ms ease-in forwards;
}

@keyframes revision-shake {
  from { translate: -2px 0; }
  to { translate: 2px -1px; }
}

@keyframes victory-curl-away {
  to { transform: scale(.12) rotate(320deg); opacity: 0; filter: blur(3px); }
}

.f-board-frame {
  position: relative;
}

.archive-cell.is-tutorial-route {
  box-shadow: 0 0 0 3px #d0b274, 0 0 20px rgba(208, 178, 116, .7);
  animation: tutorial-route-pulse .7s ease-in-out infinite alternate;
}

@keyframes tutorial-route-pulse {
  to { transform: translateY(-2px) scale(1.04); }
}

.revision-overlay,
.revision-hit-fragments,
.revision-hit-burst {
  position: absolute;
  z-index: 2;
  inset: -1px;
  pointer-events: none;
  background-image: url('../assets/revision-loop-fx-atlas.png');
  background-repeat: no-repeat;
  background-size: 200% 200%;
}

.revision-intact { background-position: 0% 0%; opacity: .88; }
.revision-torn { background-position: 100% 0%; opacity: .82; }
.revision-hit-fragments { z-index: 4; background-position: 0% 100%; }
.revision-hit-burst { z-index: 5; background-position: 100% 100%; }

.event-obstacleHit .revision-hit-fragments,
.event-obstacleHit .revision-hit-burst,
.event-specialTrigger .revision-hit-burst {
  animation: revision-fx-pop .22s ease-out both;
}

@keyframes revision-fx-pop {
  from { transform: scale(.45); opacity: 0; }
  to { transform: scale(1.28); opacity: 1; }
}

.f-tutorial-tip {
  position: absolute;
  z-index: 10;
  left: 15px;
  right: 15px;
  display: grid;
  gap: 3px;
  padding: 9px 11px;
  border: 1px solid rgba(208, 178, 116, .62);
  border-radius: 10px;
  background: rgba(9, 23, 19, .94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  color: #eef0e6;
  text-align: center;
}

.tutorial-route-tip { bottom: 11px; }
.tutorial-special-tip { top: 50%; transform: translateY(-50%); }

.f-tutorial-tip strong { font-size: 12px; }
.f-tutorial-tip span { color: #bcc8bd; font-size: 10px; line-height: 1.35; }

.f-tutorial-tip button {
  min-height: 38px;
  margin-top: 4px;
  border: 0;
  border-radius: 8px;
  background: #b44a3d;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.revision-combo {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 5px;
  border-radius: 999px;
  background: #b44a3d;
  color: #fff;
  font-size: 10px;
  opacity: 1;
  animation: revision-combo-pop .22s ease-out both;
}

@keyframes revision-combo-pop {
  from { transform: scale(.6); }
  to { transform: scale(1); }
}

.f-board-frame {
  padding: 8px;
  border: 1px solid rgba(227, 232, 219, .26);
  background: rgba(8, 20, 17, .74);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

.f-board-frame .board {
  gap: 4px;
}

.archive-cell {
  border: 1px solid rgba(221, 229, 215, .12);
  border-radius: 5px;
  background: rgba(31, 54, 45, .8);
}

.archive-cell::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(229, 232, 221, .05);
  pointer-events: none;
}

.archive-cell.is-selected {
  box-shadow: 0 0 0 2px #d0b274, 0 0 18px rgba(208, 178, 116, .28);
  transform: translateY(-2px);
}

.creature-sprite {
  display: block;
  background-repeat: no-repeat;
}

.creature-sprite {
  position: absolute;
  inset: 2px;
  background-size: 300% 200%;
  filter: saturate(.82) contrast(1.05);
}

.f-special {
  position: absolute;
  z-index: 3;
  left: 3px;
  bottom: 3px;
  padding: 2px 3px;
  border-radius: 2px;
  background: #d0b274;
  color: #15261f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
}

.event-obstacleHit .is-active-event {
  animation: obstacle-hit .12s linear infinite alternate;
  box-shadow: 0 0 0 2px rgba(176, 51, 43, .75);
}

@keyframes obstacle-hit {
  from { transform: translateX(-2px); }
  to { transform: translateX(2px); }
}

.f-shell > .event-status {
  color: #b8c5b9;
}

.result-shell {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.result-e {
  background:
    radial-gradient(circle at 75% 15%, #dce9eb, transparent 30%),
    radial-gradient(circle at 20% 65%, #e8ddeb, transparent 32%),
    #f6f0e5;
}

.result-f {
  color: #f0eee6;
  background:
    linear-gradient(180deg, rgba(8, 22, 18, .7), rgba(7, 17, 15, .96)),
    url('../assets/forest-background.png') center / cover;
}

.result-heading {
  padding: 22px 0 17px;
  border-bottom: 1px solid currentColor;
}

.result-heading > span {
  color: inherit;
  opacity: .56;
}

.result-heading h1 {
  margin: 0 0 8px;
  font-family: Georgia, "Noto Serif CJK SC", serif;
  font-size: 29px;
  font-weight: 500;
}

.result-heading p,
.result-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  opacity: .7;
}

.result-note {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(35, 72, 61, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .42);
}

.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

body[data-demo-standalone="true"] .result-actions {
  grid-template-columns: 1fr;
}

.result-actions button:last-child {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.invalid-demo {
  width: min(calc(100% - 36px), 390px);
  padding: 48px 28px;
  border-radius: 22px;
  background: #f6f0e5;
  text-align: center;
  box-shadow: 0 22px 60px rgba(5, 20, 15, .24);
}

.invalid-demo p {
  margin: 0 0 20px;
  font-family: Georgia, "Noto Serif CJK SC", serif;
  font-size: 25px;
}

.invalid-demo a {
  color: #245347;
}

@media (max-width: 620px) {
  .selection-page {
    display: block;
    padding-top: max(28px, env(safe-area-inset-top));
  }

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

  .demo-card {
    min-height: 230px;
  }
}

@media (max-width: 390px) and (max-height: 620px) {
  .revision-foe {
    height: 88px;
  }

  .revision-monster {
    width: 88px;
    height: 82px;
  }
}

@media (min-width: 500px) {
  .phone-shell {
    border-radius: 30px;
    box-shadow: 0 28px 80px rgba(8, 26, 19, .32);
  }
}

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