:root {
  font-family: 'Barlow', system-ui, sans-serif;
  color: #eef2ec;
  background: #10191e;
  font-synthesis: none;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: radial-gradient(ellipse at 28% 28%, #223039 0, #10191e 65%);
  min-width: 300px;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
  min-height: 44px;
  border: 1px solid #42535a;
  border-radius: 4px;
  background: #1d2c32;
  color: #eaf2eb;
  padding: 0.6rem 0.85rem;
  font-weight: 600;
}
button:hover:not(:disabled) {
  background: #2a4149;
  border-color: #73b3bb;
}
button:disabled {
  opacity: 0.45;
  cursor: default;
}
button:focus-visible,
a:focus-visible,
canvas:focus-visible {
  outline: 3px solid #71e6ed;
  outline-offset: 3px;
}
[hidden] {
  display: none !important;
}
.cabinet {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px;
}
.masthead {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #344047;
}
.wordmark {
  text-decoration: none;
  color: #f0f2e8;
  font:
    900 27px 'Barlow Condensed',
    sans-serif;
  letter-spacing: -1px;
}
.wordmark span {
  color: #f16c61;
}
.edition,
.colophon,
.eyebrow,
.label,
.hint,
.boss-health > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
}
.edition {
  color: #a8b8bc;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58dfd9;
  margin-left: auto;
}
.layout {
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(220px, 1fr);
  gap: 64px;
  align-items: center;
  padding: 28px 0;
}
.game-panel {
  width: 100%;
  background: #0b141a;
  border: 1px solid #42535b;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 70px #0006;
}
.hud {
  display: flex;
  justify-content: space-between;
  padding: 13px 18px;
  min-height: 63px;
  background: #18272e;
  border-bottom: 1px solid #395057;
}
.hud > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.label {
  color: #9dabb0;
  font-size: 10px;
}
.hud > div > span:last-child {
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  font-weight: 700;
}
.health {
  color: #65e0da;
  letter-spacing: 3px;
}
.arena {
  position: relative;
  aspect-ratio: 480 / 760;
  width: 100%;
  max-height: 68dvh;
  background: #0a1820;
}
#game-container {
  position: absolute;
  inset: 0;
}
canvas {
  display: block;
  touch-action: none;
}
.rampage-control {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  min-width: 132px;
  min-height: 56px;
  padding: 7px 11px;
  border: 2px solid #85493f;
  border-radius: 7px;
  background: #291719dd;
  color: #c6a29d;
  box-shadow: 0 5px 0 #10080a99;
  font:
    800 16px 'Barlow Condensed',
    sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
.rampage-control::before,
.rampage-control::after {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
.rampage-control::before {
  content: '!';
  top: -13px;
  right: -11px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 2px solid #fff1a6;
  border-radius: 50%;
  background: #d3261d;
  color: white;
  box-shadow: 0 0 15px #ff2e1c;
  font:
    900 19px/1 'Barlow Condensed',
    sans-serif;
}
.rampage-control::after {
  content: '';
  inset: -8px;
  border: 3px solid #ff4a24;
  border-radius: 11px;
  box-shadow: 0 0 18px #ff2d18aa;
}
.rampage-control span {
  display: block;
}
#rampage-meter {
  margin-top: 5px;
  color: #e47b69;
  font: 700 14px/1 sans-serif;
  letter-spacing: 2px;
}
.rampage-control.is-ready:not(:disabled) {
  border-color: #ffb12f;
  background: #692120;
  color: #fff3c6;
  box-shadow:
    0 0 22px #ff4b2488,
    0 5px 0 #280506;
  animation: rampage-ready 0.48s ease-in-out infinite alternate;
}
.rampage-control.is-ready::before {
  animation: rampage-ready-alert 0.72s ease-in-out infinite;
}
.rampage-control.is-ready::after {
  animation: rampage-ready-ring 0.9s ease-out infinite;
}
.rampage-control.is-ready #rampage-meter {
  color: #fff1a6;
  animation: rampage-ready-meter 0.48s steps(2, jump-none) infinite alternate;
}
.rampage-control.is-active {
  border-color: #fff09b;
  background: #a22318;
  color: white;
  box-shadow: 0 0 30px #ff3b1faa;
}
.rampage-control.is-active:disabled {
  opacity: 1;
}
@keyframes rampage-ready {
  from {
    filter: brightness(1);
    text-shadow: 0 0 2px #ffdb78;
  }
  to {
    filter: brightness(1.42);
    text-shadow: 0 0 10px #fff0a0;
    box-shadow:
      0 0 36px #ff321cdd,
      0 0 9px #ffd064,
      0 5px 0 #280506;
  }
}
@keyframes rampage-ready-ring {
  0% {
    opacity: 0.95;
    transform: scale(0.94);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}
@keyframes rampage-ready-alert {
  0%,
  100% {
    opacity: 1;
    transform: scale(0.86) rotate(-7deg);
  }
  48% {
    opacity: 1;
    transform: scale(1.18) rotate(6deg);
  }
}
@keyframes rampage-ready-meter {
  to {
    color: white;
    text-shadow: 0 0 10px #ffec77;
  }
}
@media (prefers-reduced-motion: reduce) {
  .rampage-control.is-ready,
  .rampage-control.is-ready::before,
  .rampage-control.is-ready::after,
  .rampage-control.is-ready #rampage-meter {
    animation: none;
  }
  .rampage-control.is-ready::before {
    opacity: 1;
  }
  .rampage-control.is-ready::after {
    opacity: 0.8;
  }
}
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  align-items: center;
  padding: 30px;
  overflow-y: auto;
  text-align: center;
  background: linear-gradient(180deg, #091820a8, #09141bf5 42%, #09141be8);
}
.overlay > * {
  flex-shrink: 0;
}
.overlay h2 {
  font:
    800 clamp(28px, 4vw, 42px)/1.02 'Barlow Condensed',
    sans-serif;
  text-transform: uppercase;
  max-width: 320px;
  margin: 24px 0 10px;
}
.overlay p {
  font-size: 16px;
  color: #b3c4c6;
  line-height: 1.5;
  max-width: 285px;
  margin: 0 0 16px;
}
.stamp {
  color: #fa8476;
  border: 2px solid #db6e6280;
  font:
    700 13px 'Barlow Condensed',
    sans-serif;
  letter-spacing: 0.15em;
  padding: 6px 10px;
  transform: rotate(-7deg);
}
.choice-panel {
  width: min(100%, 360px);
  margin: 0 0 14px;
}
.choice-heading {
  display: block;
  margin-bottom: 7px;
  color: #f0c978;
  font:
    700 13px 'Barlow Condensed',
    sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.overlay .choice-intro {
  max-width: 350px;
  margin-bottom: 8px;
  color: #93a9ad;
  font-size: 12px;
  line-height: 1.3;
}
.level-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.level-option,
.measure-option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 46px;
  padding: 0.38rem 0.5rem;
  border-color: #41565d;
  background: #0d1b21df;
  line-height: 1.15;
}
.level-option strong,
.measure-option strong {
  color: #eaf2eb;
  font-size: 12px;
}
.level-option span,
.measure-option span {
  margin-top: 3px;
  color: #91a9ad;
  font-size: 10px;
}
.level-option[aria-pressed='true'],
.measure-option[aria-pressed='true'] {
  border-color: #f17a68;
  background: #3a2426e8;
  box-shadow: inset 0 0 0 1px #f17a68;
}
.level-option:disabled strong,
.level-option:disabled span {
  color: #74858a;
}
.measure-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.measure-option {
  min-height: 70px;
}
.primary {
  flex: 0 0 auto;
}
.primary {
  background: #ef7060;
  color: #15242b;
  border-color: #ef7060;
  min-width: 200px;
  min-height: 52px;
  font-size: 17px;
  box-shadow: 0 5px 0 #9e4035;
}
.primary:hover:not(:disabled) {
  background: #ff9280;
  color: #15242b;
  border-color: #ff9280;
}
.developer-panel {
  width: min(100%, 360px);
  margin: 0 0 14px;
  padding: 9px;
  border: 1px dashed #f0c97899;
  border-radius: 6px;
  background: #2b210fe8;
}
.developer-panel .developer-action + .developer-action {
  margin-top: 7px;
}
.developer-panel > span {
  display: block;
  color: #f0c978;
  font:
    700 12px 'Barlow Condensed',
    sans-serif;
  letter-spacing: 0.13em;
}
.overlay .developer-panel > p {
  margin: 3px auto 7px;
  color: #d8cba9;
  font-size: 11px;
  line-height: 1.25;
}
.developer-action {
  width: 100%;
  min-height: 42px;
  border-color: #cba652;
  background: #4a3518;
  color: #fff1ba;
  font-size: 13px;
}
.hint {
  font-size: 10px;
  line-height: 1.8;
  color: #859ba2;
  max-width: 230px;
  margin-top: 22px;
}
.game-footer {
  padding: 9px 12px;
  background: #14222a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
#stage {
  font-size: 12px;
  color: #9fb4b9;
}
.status-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
#loadout {
  color: #f2b463;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.controls {
  display: flex;
  gap: 5px;
}
.controls button {
  font-size: 12px;
  padding: 0.4rem 0.55rem;
}
.eyebrow {
  color: #73b7bd;
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  text-transform: uppercase;
}
.brief h1 {
  font:
    900 clamp(52px, 6.5vw, 82px)/0.88 'Barlow Condensed',
    Impact,
    sans-serif;
  letter-spacing: -0.035em;
  margin: 0 0 25px;
}
.brief h1 span {
  color: #ed7565;
}
.lede {
  font-size: 21px;
  line-height: 1.35;
  color: #dce4de;
}
.rule {
  height: 3px;
  width: 44px;
  background: #e87868;
  margin: 30px 0;
}
.brief h2 {
  font-size: 18px;
  margin-bottom: 8px;
}
.brief > p:not(.lede) {
  font-size: 15px;
  line-height: 1.55;
  color: #aabbbf;
}
.instructions {
  margin: 24px 0;
}
.instructions div {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.instructions dt {
  font-size: 13px;
  font-weight: 700;
  color: #71c2c5;
}
.instructions dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #b8c7c8;
}
.brief .prototype-note {
  font-size: 12px !important;
  padding-top: 16px;
  border-top: 1px solid #34454c;
}
.colophon {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #7d959c;
  border-top: 1px solid #344047;
  padding: 18px 0 24px;
  font-size: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 720px) {
  .cabinet {
    padding: 0 max(12px, env(safe-area-inset-left));
  }
  .masthead {
    height: 48px;
  }
  .edition {
    font-size: 10px;
  }
  .layout {
    display: block;
    padding: 12px 0;
  }
  .game-panel {
    max-width: 480px;
    margin: auto;
  }
  .arena {
    max-height: calc(100dvh - 188px);
    min-height: 280px;
  }
  .overlay {
    justify-content: flex-start;
    padding: 18px 20px;
  }
  .overlay h2 {
    margin-top: 14px;
  }
  .hint {
    margin-top: 14px;
  }
  .hud {
    padding: 9px 14px;
    min-height: 54px;
  }
  .brief {
    max-width: 480px;
    margin: 34px auto 0;
  }
  .brief h1 {
    font-size: 62px;
  }
  .brief .lede {
    font-size: 18px;
  }
  .colophon {
    flex-direction: column;
    font-size: 10px;
    line-height: 1.5;
  }
}
@media (max-width: 420px) {
  .status-line {
    flex: 1;
  }
  #loadout {
    max-width: 116px;
    white-space: normal;
    line-height: 1.15;
  }
  .controls button {
    padding: 0.35rem 0.42rem;
    font-size: 11px;
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  .layout {
    grid-template-columns: minmax(240px, 420px) 1fr;
    display: grid;
    gap: 24px;
  }
  .arena {
    max-height: 65dvh;
    min-height: 230px;
  }
}

.overlay.has-settlement {
  justify-content: flex-start;
}
.settlement {
  width: 100%;
  max-width: 340px;
  margin: 0 0 20px;
  padding: 16px;
  border: 1px solid #d3b77f70;
  border-top: 3px solid #d3b77f;
  background: #0a171eee;
  text-align: left;
}
.settlement h3 {
  margin: 0 0 10px;
  color: #ecd5aa;
  font:
    800 25px/1 'Barlow Condensed',
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
.settlement table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.settlement th,
.settlement td {
  padding: 5px 0;
  border-bottom: 1px solid #91a8ae24;
}
.settlement th {
  font-weight: 400;
}
.settlement thead th {
  color: #91a8ae;
  font-size: 12px;
}
.settlement td,
.settlement thead th:last-child {
  text-align: right;
}
.settlement td {
  color: #f5ddaf;
  font-weight: 700;
}
.settlement tfoot th,
.settlement tfoot td {
  padding-top: 10px;
  border-bottom: 0;
  font-weight: 700;
}
.settlement #settlement-note {
  margin: 12px 0 0;
  color: #91a8ae;
  font-size: 12px;
  line-height: 1.35;
}

/* Desktop gives the portrait arena the available height; setup lives beside it. */
@media (min-width: 900px) and (min-height: 650px) {
  .cabinet {
    max-width: 1680px;
    padding: 0 24px;
  }
  .masthead {
    height: 46px;
  }
  .layout {
    --menu-width: clamp(340px, 28vw, 460px);
    --play-width: min(calc((100dvh - 190px) * 480 / 760), calc(100vw - var(--menu-width) - 76px));
    grid-template-columns: var(--play-width) var(--menu-width);
    justify-content: center;
    align-items: start;
    gap: 24px;
    padding: 12px 0;
  }
  .game-panel {
    overflow: visible;
  }
  .arena {
    max-height: none;
  }
  .hud {
    min-height: 52px;
    padding: 8px 14px;
    border-radius: 8px 8px 0 0;
  }
  .game-footer {
    min-height: 60px;
    border-radius: 0 0 8px 8px;
  }
  .overlay {
    inset: -52px auto -60px calc(100% + 24px);
    width: var(--menu-width);
    height: calc(100dvh - 80px);
    bottom: auto;
    padding: 18px;
    border: 1px solid #42535b;
    border-radius: 8px;
    background: #122229;
  }
  .overlay .stamp {
    display: none;
  }
  .overlay h2 {
    font-size: 30px;
    margin: 12px 0 8px;
  }
  .overlay p {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 12px;
  }
  .measure-option strong {
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .overlay .hint {
    margin-top: 14px;
  }
  .developer-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .developer-panel > span,
  .developer-panel > p {
    grid-column: 1 / -1;
  }
  .developer-panel .developer-action + .developer-action {
    margin-top: 0;
  }
  .overlay .developer-panel > p {
    font-size: 11px;
    margin: 0;
  }
  .brief {
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    padding: 12px 4px;
  }
  .brief h1 {
    font-size: clamp(48px, 5vw, 72px);
  }
  .layout:has(.overlay:not([hidden])) .brief {
    visibility: hidden;
  }
  .colophon {
    display: none;
  }
}

/* Tall desktop arenas need readable, proportionate menus and instructions. */
@media (min-width: 1100px) and (min-height: 1300px) {
  .layout {
    --menu-width: clamp(380px, 28vw, 460px);
  }
  .overlay {
    padding: 20px;
  }
  .overlay h2 {
    max-width: none;
    font-size: clamp(36px, 3.2dvh, 46px);
    margin: 20px 0 14px;
  }
  .overlay p {
    max-width: none;
    font-size: clamp(16px, 1.35dvh, 20px);
    line-height: 1.45;
    margin-bottom: 20px;
  }
  .choice-panel,
  .developer-panel {
    width: 100%;
    margin-bottom: 20px;
  }
  .choice-heading {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .overlay .choice-intro {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .level-options,
  .measure-options {
    gap: 8px;
  }
  .level-option,
  .measure-option {
    min-height: 64px;
    padding: 10px 8px;
  }
  .level-option strong,
  .measure-option strong {
    font-size: 15px;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .level-option span,
  .measure-option span {
    font-size: 12px;
  }
  .developer-panel {
    gap: 8px;
    padding: 12px;
  }
  .developer-panel > span {
    font-size: 14px;
  }
  .overlay .developer-panel > p {
    font-size: 13px;
  }
  .developer-action {
    min-height: 50px;
    font-size: 15px;
  }
  .overlay .primary {
    width: 100%;
    min-height: 62px;
    font-size: 21px;
  }
  .overlay .hint {
    max-width: none;
    margin-top: 20px;
    font-size: 12px;
  }
  .brief {
    padding: 24px 8px;
  }
  .brief h1 {
    font-size: clamp(64px, 5.5vw, 88px);
  }
  .brief .lede {
    font-size: 26px;
  }
  .brief h2 {
    font-size: 24px;
  }
  .brief > p:not(.lede),
  .instructions dd {
    font-size: 18px;
  }
  .instructions dt {
    font-size: 16px;
  }
  .settlement {
    max-width: none;
  }
  .settlement table {
    font-size: 16px;
  }
}

@media (min-width: 900px) and (min-height: 650px) and (max-height: 850px) {
  .choice-heading {
    margin-bottom: 4px;
  }
  .overlay .choice-intro {
    margin-bottom: 4px;
  }
  .level-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .overlay {
    padding: 10px;
  }
  .overlay h2 {
    font-size: 25px;
    margin: 8px 0 6px;
  }
  .overlay p {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .overlay > p {
    max-width: none;
  }
  .overlay .hint {
    margin-top: 4px;
    font-size: 9px;
    line-height: 1.35;
  }
  .choice-panel,
  .developer-panel {
    margin-bottom: 5px;
  }
  .developer-panel {
    grid-template-columns: repeat(3, 1fr);
    padding: 6px;
  }
  #start-boss {
    grid-column: auto;
  }
  .developer-action {
    font-size: 11px;
    padding: 6px;
  }
  .measure-option {
    min-height: 60px;
  }
}

/* Editorial release: persistent support, readable callouts and a still epilogue. */
.wordmark {
  font-size: 26px;
}
.wordmark span {
  font-size: 18px;
  letter-spacing: 0.02em;
}
.brief h1 {
  font-size: clamp(36px, 4.2vw, 62px);
  overflow-wrap: anywhere;
}
.support-strip {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 14px;
  background: #1b3035;
  color: #f9dda1;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.support-strip strong {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.callout {
  position: absolute;
  z-index: 5;
  top: 12%;
  left: 6%;
  width: 88%;
  padding: 9px 12px;
  border-left: 3px solid #e0bd72;
  background: #101d24f2;
  color: #ffedc7;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 4px 20px #0007;
}
.callout span {
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.75;
}
.callout p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(17px, 2.2vw, 23px);
  line-height: 1.12;
  margin: 3px 0 0;
  font-weight: 700;
}
.callout[data-speaker='markus'] {
  border-color: #ff644c;
  color: #fff1e9;
}
.support-report {
  margin: 14px 0;
  padding: 12px;
  border: 1px solid #9e8248;
  background: #203236;
}
.support-report h3 {
  color: #ffda82;
  margin: 0 0 5px;
  font-size: 18px;
}
.overlay .support-report p {
  margin-bottom: 0;
}
.overlay #support-note {
  font-size: 12px;
  margin-top: 6px;
}
.next-story h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0 0 5px;
  color: #dfbc79;
}
#return-menu {
  margin-top: 8px;
  width: 100%;
}
.epilogue {
  padding: 0;
  border: 1px solid #79613d;
  background: #0b141a;
  color: #f4ead6;
  width: min(1080px, 100vw);
  max-width: 100vw;
  height: min(960px, 100dvh);
  max-height: 100dvh;
  overflow: auto;
}
.epilogue::backdrop {
  background: #050a10f5;
}
.epilogue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  height: 100%;
}
.epilogue img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #0b141a;
}
.epilogue-copy {
  align-self: center;
  padding: 28px;
}
.epilogue h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3.1vw, 38px);
  line-height: 1.08;
  margin: 12px 0 20px;
}
.epilogue p {
  font-size: 18px;
  line-height: 1.4;
}
.epilogue-question {
  color: #f1ca7b;
  font-weight: 600;
}
.epilogue button {
  margin-top: 20px;
}
@media (min-width: 900px) and (min-height: 650px) {
  .layout {
    --play-width: min(calc((100dvh - 222px) * 480 / 760), calc(100vw - var(--menu-width) - 76px));
  }
  .overlay {
    top: -82px;
  }
}
@media (max-width: 720px) {
  .epilogue-layout {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(200px, 1fr) auto;
  }
  .epilogue-copy {
    padding: 12px 20px 18px;
  }
  .epilogue .eyebrow {
    display: none;
  }
  .epilogue h2 {
    font-size: 22px;
    margin: 0 0 8px;
  }
  .epilogue p {
    font-size: 15px;
    margin: 7px 0;
  }
  .epilogue button {
    margin-top: 8px;
  }
}

.story-background {
  width: 100%;
  margin: 0 0 10px;
  text-align: left;
  color: #e7c98e;
  font-size: 13px;
}
.story-background summary {
  cursor: pointer;
}
.overlay .story-background p {
  margin: 9px 0 0;
}
@media (min-width: 900px) and (min-height: 650px) and (max-height: 850px) {
  .developer-panel {
    grid-template-columns: repeat(4, 1fr);
  }
  .developer-action {
    font-size: 10px;
    padding: 5px 3px;
  }
  .story-background {
    margin-bottom: 6px;
    font-size: 12px;
  }
}
