.mgo-opening[hidden] {
  display: none !important;
}

.mgo-opening {
  --mgo-night: #071228;
  --mgo-ink: #12213d;
  --mgo-cyan: #67f4e8;
  --mgo-blue: #5d7cff;
  --mgo-violet: #b77aff;
  --mgo-coral: #ff7d86;
  --mgo-gold: #ffd36c;
  position: fixed;
  inset: 0;
  z-index: 14000;
  display: grid;
  place-items: center;
  padding: clamp(8px, 2vw, 28px);
  color: #fff;
  font-family: inherit;
}

.mgo-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(67, 231, 221, 0.25), transparent 28%),
    radial-gradient(circle at 86% 88%, rgba(185, 100, 255, 0.24), transparent 32%),
    linear-gradient(145deg, #050b1c, #101a3b 53%, #090e20);
  animation: mgo-fade 500ms ease both;
}

.mgo-backdrop::before,
.mgo-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mgo-backdrop::before {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 82%);
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.mgo-backdrop::after {
  background: linear-gradient(110deg, transparent 10%, rgba(110, 242, 231, 0.08) 47%, transparent 58%);
  transform: translateX(-110%);
  animation: mgo-aurora 8s ease-in-out infinite;
}

.mgo-dialog {
  position: relative;
  width: min(1320px, 100%);
  height: min(850px, calc(100vh - clamp(16px, 4vw, 56px)));
  min-height: 590px;
  display: grid;
  grid-template-rows: 72px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: clamp(22px, 3vw, 42px);
  background: rgba(8, 17, 38, 0.92);
  box-shadow:
    0 44px 130px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(115, 243, 231, 0.06) inset,
    0 0 80px rgba(78, 126, 255, 0.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  animation: mgo-dialog-in 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mgo-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(20px, 3vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(5, 12, 29, 0.72);
}

.mgo-sound-toggle {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #c7d4e9;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}

.mgo-sound-toggle[aria-pressed="true"] {
  color: #07152d;
  border-color: var(--mgo-cyan);
  background: var(--mgo-cyan);
}

.mgo-route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 19px;
}

.mgo-route > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7184a7;
}

.mgo-route > span b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 8px;
}

.mgo-route > span em {
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.mgo-route > span.is-current {
  color: #fff;
}

.mgo-route > span.is-current b {
  color: #07152d;
  border-color: var(--mgo-gold);
  background: var(--mgo-gold);
  box-shadow: 0 0 18px rgba(255, 211, 108, 0.28);
}

.mgo-route > span.is-done {
  color: var(--mgo-cyan);
}

.mgo-route > i {
  color: #536683;
  font-size: 10px;
  font-style: normal;
}

.mgo-header > div:first-child {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.mgo-header > div:first-child > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(103, 244, 232, 0.48);
  border-radius: 50%;
  color: var(--mgo-cyan);
  font-size: 9px;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(103, 244, 232, 0.16);
}

.mgo-header b {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.mgo-header small {
  padding-left: 11px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  color: #94a6c8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.mgo-languages {
  display: flex;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.mgo-languages button {
  width: 43px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  color: #8ea0c0;
  background: transparent;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}

.mgo-languages button[aria-pressed="true"] {
  color: #09152d;
  background: var(--mgo-cyan);
  box-shadow: 0 5px 18px rgba(103, 244, 232, 0.28);
}

.mgo-jump {
  min-height: 40px;
  padding: 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: #dbe5fa;
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.mgo-main {
  min-height: 0;
}

.mgo-ready,
.mgo-story,
.mgo-choice {
  height: 100%;
  min-height: 0;
  animation: mgo-scene-in 650ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.mgo-ready {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
  background:
    radial-gradient(circle at 75% 30%, rgba(103, 244, 232, 0.12), transparent 28%),
    linear-gradient(115deg, #091731, #0d1730);
}

.mgo-ready-art {
  position: relative;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
}

.mgo-ready-art::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 48%, #0d1730 98%),
    linear-gradient(180deg, transparent 55%, rgba(6, 13, 31, 0.82));
}

.mgo-ready-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% center;
  transform: scale(1.025);
  filter: saturate(1.14) contrast(1.04);
  animation: mgo-ken-burns 12s ease-out both;
}

.mgo-ready-art i {
  position: absolute;
  z-index: 3;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mgo-cyan);
  box-shadow: 0 0 18px 5px rgba(103, 244, 232, 0.4);
  animation: mgo-float 4.2s ease-in-out infinite;
}

.mgo-ready-art i:nth-of-type(1) { top: 19%; left: 16%; }
.mgo-ready-art i:nth-of-type(2) { top: 37%; left: 68%; animation-delay: -1.6s; background: var(--mgo-gold); }
.mgo-ready-art i:nth-of-type(3) { top: 71%; left: 45%; animation-delay: -3s; background: var(--mgo-violet); }

.mgo-ready-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  padding: clamp(34px, 5vw, 78px) clamp(30px, 5vw, 74px) clamp(34px, 5vw, 78px) 12px;
}

.mgo-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 17px;
  color: var(--mgo-cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.mgo-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--mgo-cyan), transparent);
}

.mgo-ready h1,
.mgo-story h2,
.mgo-choice h2 {
  margin: 0;
  color: #fff;
  text-wrap: balance;
  outline: none;
}

.mgo-ready h1 {
  font-size: clamp(41px, 5vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-shadow: 0 11px 34px rgba(0, 0, 0, 0.35);
}

.mgo-ready-copy > p:not(.mgo-kicker) {
  max-width: 490px;
  margin: 23px 0 27px;
  color: #c5d2ea;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 600;
  line-height: 1.8;
}

.mgo-ready-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.mgo-start {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 0 22px;
  border: 0;
  border-radius: 18px;
  color: #0b1930;
  background: linear-gradient(105deg, var(--mgo-cyan), #c6ffb9 56%, var(--mgo-gold));
  box-shadow: 0 15px 36px rgba(91, 240, 224, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mgo-start:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(91, 240, 224, 0.31);
}

.mgo-start > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #17264d;
  font-size: 17px;
}

.mgo-start b {
  font-size: 15px;
}

.mgo-start i {
  font-style: normal;
  font-size: 21px;
}

.mgo-silent {
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 15px;
  color: #d5def0;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.mgo-ready-copy > small {
  display: block;
  margin-top: 15px;
  color: #7f91b3;
  font-size: 10px;
  font-weight: 700;
}

.mgo-story {
  display: grid;
  grid-template-columns: minmax(420px, 1.13fr) minmax(400px, 0.87fr);
  background: #09142c;
}

.mgo-story-art {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.mgo-story-art::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 58%, #09142c 100%),
    linear-gradient(180deg, transparent 55%, rgba(4, 10, 24, 0.7));
}

.mgo-story-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.05);
  animation: mgo-story-image 4.4s ease-out both;
}

.mgo-scan {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: -20%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(104, 246, 232, 0.16), transparent);
  transform: skewX(-12deg);
  animation: mgo-scan 3.6s ease-in-out both;
}

.mgo-story-art figcaption {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: #fff;
}

.mgo-story-art figcaption span {
  font-size: clamp(37px, 5vw, 70px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.mgo-story-art figcaption b {
  color: var(--mgo-cyan);
  font-size: 10px;
  letter-spacing: 0.17em;
}

.mgo-story-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  padding: clamp(32px, 5vw, 76px) clamp(30px, 5vw, 74px) clamp(32px, 5vw, 76px) 18px;
}

.mgo-story-progress {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}

.mgo-story-progress > span {
  display: flex;
  gap: 7px;
}

.mgo-story-progress > b {
  margin-left: 6px;
  color: #a8bad6;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.mgo-story-progress i {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
}

.mgo-story-progress i.is-done {
  background: rgba(103, 244, 232, 0.46);
}

.mgo-story-progress i.is-current {
  width: 68px;
  background: linear-gradient(90deg, var(--mgo-cyan), var(--mgo-gold));
  box-shadow: 0 0 16px rgba(103, 244, 232, 0.22);
}

.mgo-story h2 {
  font-size: clamp(31px, 3.55vw, 54px);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.mgo-story-copy > p:not(.mgo-kicker) {
  max-width: 570px;
  margin: 23px 0 30px;
  color: #b9c7e0;
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 600;
  line-height: 1.85;
}

.mgo-story-hint {
  display: block;
  margin: -17px 0 18px;
  color: #8193b4;
  font-size: 9px;
  font-weight: 700;
}

.mgo-story-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mgo-skip-story {
  min-height: 50px;
  padding: 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.37);
  color: #9aabc9;
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.mgo-next-story {
  min-width: 138px;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid rgba(103, 244, 232, 0.48);
  border-radius: 15px;
  color: #07152d;
  background: var(--mgo-cyan);
  box-shadow: 0 12px 28px rgba(103, 244, 232, 0.17);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.mgo-next-story span {
  font-size: 20px;
}

.mgo-choice {
  display: grid;
  grid-template-columns: minmax(350px, 0.79fr) minmax(520px, 1.21fr);
  background:
    radial-gradient(circle at 24% 50%, rgba(104, 235, 221, 0.12), transparent 33%),
    #09142c;
}

.mgo-choice-art {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: clamp(25px, 3vw, 44px) 0 clamp(25px, 3vw, 44px) clamp(25px, 3vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 25px 70px 25px 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.mgo-choice-art::after {
  content: "6 CREW / 6 PERSPECTIVES";
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #fff;
  background: rgba(5, 12, 28, 0.76);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.mgo-choice-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.12);
}

.mgo-choice-copy {
  align-self: center;
  padding: clamp(30px, 4vw, 58px) clamp(30px, 5vw, 72px);
}

.mgo-choice h2 {
  font-size: clamp(30px, 3.35vw, 51px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.mgo-choice-lead {
  margin: 15px 0 20px;
  color: #b7c5dc;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 600;
  line-height: 1.75;
}

.mgo-choice-buttons {
  display: grid;
  gap: 12px;
}

.mgo-choice-buttons > button {
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border-radius: 21px;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mgo-choice-buttons > button:hover {
  transform: translateX(5px);
}

.mgo-tutorial {
  border: 1px solid rgba(103, 244, 232, 0.67);
  color: #0a1830;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(110deg, var(--mgo-cyan), #b9ffc6 58%, var(--mgo-gold));
  box-shadow: 0 17px 38px rgba(90, 238, 223, 0.2);
}

.mgo-direct {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: linear-gradient(110deg, rgba(82, 103, 188, 0.28), rgba(180, 104, 244, 0.18));
}

.mgo-choice-buttons span,
.mgo-choice-buttons i,
.mgo-choice-buttons b,
.mgo-choice-buttons small {
  display: block;
}

.mgo-choice-buttons i {
  margin-bottom: 5px;
  color: inherit;
  opacity: 0.72;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.mgo-choice-buttons b {
  font-size: clamp(17px, 1.7vw, 22px);
}

.mgo-choice-buttons small {
  margin-top: 5px;
  color: inherit;
  opacity: 0.74;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.mgo-choice-buttons strong {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 19px;
}

.mgo-choice-bottom {
  display: grid;
  grid-template-columns: auto 28px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.mgo-choice-bottom button {
  min-height: 40px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #9eafca;
  background: transparent;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.mgo-choice-bottom p {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  color: #07152d;
  background: var(--mgo-cyan);
  font-size: 11px;
  font-weight: 900;
}

.mgo-choice-bottom small {
  color: #8293b2;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
}

.opening-replay {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(25, 50, 69, 0.2);
  border-radius: 999px;
  color: #263c4b;
  background: rgba(255, 255, 255, 0.68);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.opening-replay:hover {
  color: #fff;
  border-color: #6a65d8;
  background: #6a65d8;
}

.mgo-opening button:focus-visible,
.opening-replay:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(89, 229, 220, 0.32);
}

@keyframes mgo-fade {
  from { opacity: 0; }
}

@keyframes mgo-dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(0.985); }
}

@keyframes mgo-scene-in {
  from { opacity: 0; transform: translateX(15px); }
}

@keyframes mgo-ken-burns {
  from { transform: scale(1.02); }
  to { transform: scale(1.085) translateX(-1%); }
}

@keyframes mgo-story-image {
  from { opacity: 0.45; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes mgo-scan {
  from { left: -24%; }
  to { left: 115%; }
}

@keyframes mgo-float {
  50% { transform: translateY(-12px) scale(1.3); opacity: 0.66; }
}

@keyframes mgo-aurora {
  0%, 18% { transform: translateX(-110%); }
  60%, 100% { transform: translateX(110%); }
}

@media (max-width: 900px) {
  .mgo-dialog {
    height: min(920px, calc(100vh - 16px));
    min-height: 0;
    grid-template-rows: 60px minmax(0, 1fr);
    border-radius: 24px;
  }

  .mgo-header {
    padding: 0 17px;
  }

  .mgo-sound-toggle {
    min-height: 32px;
    padding: 0 9px;
  }

  .mgo-header > div:first-child > span,
  .mgo-header > div:first-child small {
    display: none;
  }

  .mgo-jump {
    font-size: 9px;
  }

  .mgo-ready,
  .mgo-story,
  .mgo-choice {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .mgo-ready-art,
  .mgo-story-art {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .mgo-ready-art img,
  .mgo-story-art img {
    object-fit: contain;
    object-position: center top;
    transform: none;
    animation: none;
    background: #08152c;
  }

  .mgo-ready-art::before,
  .mgo-story-art::after {
    background: linear-gradient(180deg, transparent 44%, #0b1630 100%);
  }

  .mgo-ready-copy,
  .mgo-story-copy {
    margin-top: -18px;
    padding: 22px 24px 32px;
  }

  .mgo-ready h1 {
    font-size: clamp(38px, 10vw, 60px);
  }

  .mgo-story h2 {
    font-size: clamp(29px, 7vw, 45px);
  }

  .mgo-choice {
    grid-template-columns: minmax(0, 1fr);
  }

  .mgo-choice-art {
    height: 230px;
    margin: 18px 18px 0;
    border-radius: 18px 45px 18px 18px;
  }

  .mgo-choice-copy {
    padding: 24px 22px 34px;
  }

  .mgo-choice-buttons > button {
    min-height: 96px;
  }
}

@media (max-width: 560px) {
  .mgo-opening {
    padding: 0;
  }

  .mgo-dialog {
    width: 100%;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .mgo-header {
    grid-template-columns: 1fr auto auto;
    gap: 8px;
  }

  .mgo-header > div:first-child {
    gap: 5px;
  }

  .mgo-header b {
    font-size: 12px;
  }

  .mgo-header .mgo-jump {
    position: absolute;
    right: 12px;
    bottom: -43px;
    z-index: 7;
    padding: 0 8px;
    background: rgba(5, 12, 28, 0.7);
  }

  .mgo-languages button {
    width: 36px;
  }

  .mgo-sound-toggle {
    width: 36px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .mgo-sound-toggle span {
    color: #c7d4e9;
    font-size: 13px;
  }

  .mgo-sound-toggle[aria-pressed="true"] span {
    color: #07152d;
  }

  .mgo-route {
    gap: 5px;
    margin-bottom: 14px;
  }

  .mgo-route > span {
    gap: 4px;
  }

  .mgo-route > span em {
    max-width: 62px;
    overflow: hidden;
    font-size: 7px;
    text-overflow: ellipsis;
  }

  .mgo-ready-art,
  .mgo-story-art {
    min-height: 0;
  }

  .mgo-ready-copy > p:not(.mgo-kicker),
  .mgo-story-copy > p:not(.mgo-kicker) {
    margin: 15px 0 19px;
    font-size: 13px;
    line-height: 1.65;
  }

  .mgo-ready-actions,
  .mgo-story-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mgo-start,
  .mgo-silent,
  .mgo-next-story,
  .mgo-skip-story {
    width: 100%;
  }

  .mgo-choice-art {
    height: 190px;
  }

  .mgo-choice h2 {
    font-size: 29px;
  }

  .mgo-choice-lead {
    margin: 11px 0 15px;
  }

  .mgo-choice-buttons > button {
    min-height: 88px;
    padding: 13px 15px;
    border-radius: 16px;
  }

  .mgo-choice-buttons small {
    font-size: 10px;
  }

  .mgo-choice-bottom {
    grid-template-columns: 1fr 25px;
  }

  .mgo-choice-bottom small {
    grid-column: 1 / -1;
  }
}

@media (max-height: 680px) and (min-width: 901px) {
  .mgo-dialog {
    min-height: 0;
  }

  .mgo-ready-copy,
  .mgo-story-copy,
  .mgo-choice-copy {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .mgo-ready h1 {
    font-size: 48px;
  }

  .mgo-story h2,
  .mgo-choice h2 {
    font-size: 36px;
  }

  .mgo-choice-buttons > button {
    min-height: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mgo-opening *,
  .mgo-opening *::before,
  .mgo-opening *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
