:root {
  --ink: #12333c;
  --muted: #64797d;
  --paper: #f7efe2;
  --panel: #fffaf1;
  --line: #dfcab0;
  --blue: #0d6274;
  --green: #16835f;
  --gold: #d89b38;
  --red: #b94a4a;
  --brand-orange: #ef4a23;
  --site-cream: #fbf6ec;
  --site-aqua: #d9efee;
  --shadow: rgba(18, 51, 60, 0.18);
  --tile: 60px;
  --viewport-width: calc(var(--tile) * 18);
  --viewport-height: calc(var(--tile) * 12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, #ebe4d8 0%, var(--site-cream) 48%, var(--site-aqua) 100%);
}

.cutscene {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(190px, 220px) minmax(0, 1080px);
  grid-template-rows: auto auto;
  gap: 18px;
  align-content: start;
  justify-content: center;
  padding: 16px;
  background:
    linear-gradient(90deg, #ebe4d8 0%, var(--site-cream) 48%, var(--site-aqua) 100%);
}

.cutscene-header {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(1220px, calc(100vw - 32px));
}

.cutscene-spacer {
  grid-column: 1;
  min-width: 0;
}

.cutscene-frame {
  position: relative;
  grid-column: 2;
  width: min(var(--viewport-width), 100%);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 4px solid #12333c;
  border-radius: 8px;
  background: #d9c9b4;
  box-shadow: 0 20px 46px rgba(18, 51, 60, 0.18);
}

.cutscene-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 45% 69%, rgba(255, 232, 130, 0.36) 0 8%, transparent 23%),
    radial-gradient(ellipse at 55% 69%, rgba(255, 232, 130, 0.34) 0 8%, transparent 23%),
    radial-gradient(circle at 47% 61%, rgba(255, 255, 255, 0.36) 0 1.4%, transparent 5%),
    radial-gradient(circle at 53% 61%, rgba(255, 255, 255, 0.34) 0 1.4%, transparent 5%);
  mix-blend-mode: screen;
}

.cutscene.has-runway-glow .cutscene-frame::before {
  animation: runwayLightPulse 1500ms ease-out forwards;
}

.cutscene.has-shake .cutscene-frame {
  animation: overheadShake 560ms ease-out;
}

.cutscene.has-landing-shake .cutscene-frame {
  animation: landingShake 430ms ease-out;
}

.cutscene-world {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  image-rendering: auto;
}

.cutscene-world::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(80, 140, 185, 0.16), transparent 28%, transparent 72%, rgba(80, 140, 185, 0.12));
  pointer-events: none;
}

.cutscene-world::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  z-index: 3;
  width: 420px;
  height: 150px;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 39% 54%, rgba(238, 238, 224, 0.68) 0 9%, rgba(238, 238, 224, 0.2) 22%, transparent 46%),
    radial-gradient(circle at 61% 54%, rgba(238, 238, 224, 0.62) 0 9%, rgba(238, 238, 224, 0.17) 22%, transparent 46%),
    radial-gradient(ellipse at 50% 72%, rgba(225, 225, 210, 0.32) 0 18%, transparent 56%);
  filter: blur(3px);
  transform: translate(-50%, -50%) scale(0.62);
}

.cutscene.has-landing-smoke .cutscene-world::after {
  animation: landingSmoke 1800ms ease-out forwards;
}

.cutscene-shadow {
  position: absolute;
  left: 50%;
  top: -62%;
  z-index: 2;
  width: 320px;
  height: 460px;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(0, 0, 0, 0.46) 0 12%, transparent 25%),
    radial-gradient(ellipse at 17% 46%, rgba(0, 0, 0, 0.36) 0 17%, transparent 35%),
    radial-gradient(ellipse at 83% 46%, rgba(0, 0, 0, 0.36) 0 17%, transparent 35%),
    radial-gradient(ellipse at 50% 74%, rgba(0, 0, 0, 0.42) 0 16%, transparent 32%),
    linear-gradient(180deg, transparent 0 7%, rgba(0, 0, 0, 0.42) 8% 84%, transparent 85% 100%);
  filter: blur(11px);
  mix-blend-mode: multiply;
  transform: translateX(-50%) scale(0.66);
  transform-origin: 50% 50%;
}

.cutscene-shadow.is-crossing {
  animation: airplaneShadowPass 1250ms cubic-bezier(0.08, 0.66, 0.16, 1) forwards;
}

.cutscene-plane {
  position: absolute;
  left: -18%;
  top: 58%;
  z-index: 4;
  width: 280px;
  height: 216px;
  opacity: 0;
  pointer-events: none;
  background: url("assets/vehicles/airplane-top.png") center / contain no-repeat;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.18));
  transform: translate(-50%, -50%) rotate(-90deg) scale(0.48);
  transform-origin: 50% 50%;
}

.cutscene-plane.is-landing {
  animation: horizontalPlaneLanding 4300ms linear forwards;
}

.cutscene-blackout {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.cutscene.is-fading-black .cutscene-blackout {
  opacity: 1;
}

.cutscene-title {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  width: min(860px, calc(100% - 80px));
  color: #fff7e5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4.8vw, 54px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  opacity: 0;
  text-align: center;
  white-space: pre-line;
  transform: translate(-50%, -50%) scale(0.96);
  transition: opacity 700ms ease, transform 700ms ease;
}

.cutscene-title.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cutscene-skip {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 7;
  padding: 6px 10px;
  border: 1px solid rgba(255, 247, 229, 0.45);
  border-radius: 999px;
  color: rgba(255, 247, 229, 0.86);
  background: rgba(8, 11, 18, 0.62);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

@keyframes airplaneShadowPass {
  0% {
    top: -62%;
    opacity: 0;
    transform: translateX(-50%) scale(0.66);
  }

  16% {
    opacity: 0.24;
  }

  48% {
    opacity: 0.58;
    transform: translateX(-50%) scale(0.94);
  }

  72% {
    opacity: 0.36;
  }

  100% {
    top: 110%;
    opacity: 0;
    transform: translateX(-50%) scale(1.12);
  }
}

@keyframes horizontalPlaneLanding {
  0% {
    left: -18%;
    top: 58%;
    opacity: 0;
    filter: drop-shadow(0 8px 7px rgba(0, 0, 0, 0.14));
    transform: translate(-50%, -50%) rotate(-90deg) scale(0.48);
  }

  12% {
    opacity: 1;
  }

  45% {
    top: 60%;
    filter: drop-shadow(0 18px 13px rgba(0, 0, 0, 0.27));
    transform: translate(-50%, -50%) rotate(-90deg) scale(0.6);
  }

  68% {
    top: 62%;
    filter: drop-shadow(0 26px 18px rgba(0, 0, 0, 0.36));
    transform: translate(-50%, -50%) rotate(-90deg) scale(0.68);
  }

  100% {
    left: 118%;
    top: 62%;
    opacity: 1;
    filter: drop-shadow(0 21px 14px rgba(0, 0, 0, 0.28));
    transform: translate(-50%, -50%) rotate(-90deg) scale(0.68);
  }
}

@keyframes landingSmoke {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  16% {
    opacity: 0.72;
  }

  42% {
    opacity: 0.46;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -62%) scale(1.38);
  }
}

@keyframes runwayLightPulse {
  0% {
    opacity: 0;
  }

  18% {
    opacity: 0.72;
  }

  46% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
  }
}

@keyframes overheadShake {
  0%, 100% {
    transform: translate(0, 0);
  }

  16% {
    transform: translate(-2px, 1px);
  }

  32% {
    transform: translate(3px, -1px);
  }

  48% {
    transform: translate(-3px, 2px);
  }

  70% {
    transform: translate(2px, 1px);
  }
}

@keyframes landingShake {
  0%, 100% {
    transform: translate(0, 0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(2px, -1px);
  }

  60% {
    transform: translate(-1px, -1px);
  }

  80% {
    transform: translate(1px, 1px);
  }
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1280px, calc(100vw - 32px));
  margin: 22px auto 16px;
  min-height: 112px;
  overflow: hidden;
  padding: 22px 80px;
  border: 1px solid rgba(18, 51, 60, 0.06);
  border-radius: 16px 16px 0 0;
  background: rgba(255, 251, 244, 0.96);
  box-shadow: 0 18px 48px rgba(18, 51, 60, 0.1);
}

.cutscene-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 112px;
  overflow: hidden;
  padding: 22px 80px;
  border: 1px solid rgba(18, 51, 60, 0.06);
  border-radius: 16px 16px 0 0;
  background: rgba(255, 251, 244, 0.96);
  box-shadow: 0 18px 48px rgba(18, 51, 60, 0.1);
}

.site-header::before,
.cutscene-header::before {
  content: none;
}

.site-header::after,
.cutscene-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(18, 51, 60, 0.1);
}

.brand-lockup {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  color: var(--ink);
  line-height: 0.78;
  min-width: 0;
}

.brand-mark span {
  display: block;
  color: #003f4c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: none;
}

.brand-mark small {
  display: block;
  margin-top: 10px;
  color: var(--brand-orange);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  line-height: 1;
}

.header-meta {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: end;
  gap: 8px;
  flex: 0 0 auto;
}

.adventure-label {
  color: #00785b;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.episode-pill {
  padding: 10px 15px;
  border: 0;
  border-radius: 8px;
  color: #fffaf1;
  background: var(--brand-orange);
  box-shadow: 0 12px 24px rgba(239, 74, 35, 0.22);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.shell {
  display: grid;
  grid-template-columns: minmax(760px, 960px) 280px;
  gap: 18px;
  align-items: start;
  width: min(1260px, calc(100vw - 32px));
  margin: 12px auto 18px;
}

.walk-only-shell {
  grid-template-columns: minmax(190px, 220px) max-content;
  justify-content: center;
  width: min(1220px, calc(100vw - 32px));
  margin-top: 0;
}

.side-hud {
  align-self: start;
}

.objective-hud {
  position: sticky;
  top: 18px;
}

.game-panel,
.journal {
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 46px var(--shadow);
}

.game-panel {
  overflow: hidden;
}

.top-bar,
.bottom-hud,
.journal {
  padding: 14px 16px;
}

.top-bar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--line);
  background: #fff7e5;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 22px;
}

.quest-card {
  display: grid;
  gap: 3px;
  min-width: 270px;
  max-width: 360px;
  padding: 10px 12px;
  border: 2px solid #ad9a78;
  border-radius: 6px;
  background: #fdf2d5;
}

.quest-label,
#questObjective,
.bottom-hud,
.hud-actions,
.vocab-list,
.prompt,
.chapter-toast,
.dialogue {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.quest-label {
  color: #7a5a23;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

#questObjective {
  color: #3f475d;
  font-size: 14px;
}

.viewport-wrap {
  box-sizing: content-box;
  display: grid;
  place-items: center;
  width: var(--viewport-width);
  height: var(--viewport-height);
  overflow: hidden;
  padding: 0;
  border: 4px solid #12333c;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.7), rgba(245, 235, 219, 0.58)),
    #d9c9b4;
}

.game {
  position: relative;
  width: calc(var(--tile) * var(--map-width, 16));
  height: calc(var(--tile) * var(--map-height, 10));
  overflow: hidden;
  border: 0;
  background: #c8d2d8;
  image-rendering: pixelated;
}

.game.has-background-art {
  background-repeat: no-repeat;
  image-rendering: auto;
}

.game.has-background-art .tile {
  background: transparent !important;
  border-color: transparent !important;
}

.game.has-background-art .objects {
  opacity: 0;
}

.tiles,
.objects,
.characters,
.foregrounds {
  position: absolute;
  inset: 0;
}

.tiles {
  z-index: 1;
}

.objects {
  z-index: 2;
}

.characters {
  z-index: 3;
}

.foregrounds {
  pointer-events: none;
  z-index: 4;
}

.foreground-slice {
  position: absolute;
  background-repeat: no-repeat;
  pointer-events: none;
}

.suitcase-sprite,
.baggage-patch {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.suitcase-sprite img,
.baggage-patch img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.collision-editor {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  font-family: Arial, sans-serif;
}

.collision-editor-toolbar {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: calc(100% - 20px);
  padding: 8px;
  border: 2px solid #f2c66d;
  border-radius: 7px;
  color: #fff7e5;
  background: rgba(24, 32, 51, 0.9);
  pointer-events: auto;
}

.collision-editor-toolbar button {
  min-height: 28px;
  cursor: pointer;
  border: 1px solid #f2c66d;
  border-radius: 5px;
  color: #fff7e5;
  background: #30405e;
  font-size: 12px;
  font-weight: 900;
}

.collision-editor-toolbar span {
  font-size: 12px;
  font-weight: 800;
}

.editor-rect {
  position: absolute;
  display: grid;
  align-items: start;
  min-width: 12px;
  min-height: 12px;
  border: 2px solid rgba(255, 68, 68, 0.95);
  background: rgba(255, 68, 68, 0.24);
  cursor: move;
  pointer-events: auto;
}

.editor-rect.is-interaction {
  border-color: rgba(255, 211, 65, 0.95);
  background: rgba(255, 211, 65, 0.25);
}

.editor-rect.is-walkable {
  border-color: rgba(77, 191, 113, 0.95);
  background: rgba(77, 191, 113, 0.22);
}

.editor-rect.is-start {
  border-color: rgba(74, 169, 255, 0.98);
  background: rgba(74, 169, 255, 0.32);
}

.editor-rect.is-selected {
  outline: 3px solid rgba(255, 255, 255, 0.9);
}

.editor-rect span {
  max-width: 100%;
  overflow: hidden;
  padding: 2px 4px;
  color: #fff;
  background: rgba(24, 32, 51, 0.72);
  font-size: 10px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.editor-resize-handle {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 3px;
  background: #1f293c;
  cursor: nwse-resize;
}

.tile {
  position: absolute;
  width: var(--tile);
  height: var(--tile);
}

.floor {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2) 38%, rgba(137, 153, 165, 0.2)),
    linear-gradient(90deg, rgba(74, 85, 96, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(74, 85, 96, 0.16) 1px, transparent 1px),
    #d9dedf;
  background-size: 60px 60px, 30px 30px, 30px 30px, auto;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.wall {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent),
    linear-gradient(90deg, rgba(26, 35, 48, 0.22) 1px, transparent 1px),
    #7f8990;
  border: 1px solid rgba(24, 32, 51, 0.34);
}

.window {
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.72) 0 8%, transparent 9% 44%, rgba(255, 255, 255, 0.42) 45% 52%, transparent 53%),
    linear-gradient(180deg, #75b9e6 0 38%, #bfe8ff 39% 62%, #6f8995 63% 100%);
  border: 2px solid rgba(34, 49, 65, 0.55);
  box-shadow: inset 0 -8px 0 rgba(28, 44, 58, 0.24);
}

.carpet {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    #707f8e;
}

.exit {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2) 38%, rgba(137, 153, 165, 0.2)),
    linear-gradient(90deg, rgba(74, 85, 96, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(74, 85, 96, 0.16) 1px, transparent 1px),
    #d9dedf;
  background-size: 60px 60px, 30px 30px, 30px 30px, auto;
}

.blocked-exit {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2) 38%, rgba(137, 153, 165, 0.2)),
    linear-gradient(90deg, rgba(74, 85, 96, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(74, 85, 96, 0.16) 1px, transparent 1px),
    #d9dedf;
  background-size: 60px 60px, 30px 30px, 30px 30px, auto;
}

.sidewalk {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.12) 44%, rgba(112, 124, 132, 0.2)),
    linear-gradient(90deg, rgba(65, 74, 82, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(65, 74, 82, 0.18) 1px, transparent 1px),
    #d0c7b8;
  background-size: auto, 30px 30px, 30px 30px, auto;
}

.road {
  background:
    linear-gradient(90deg, rgba(255, 204, 65, 0.18), transparent 18%, transparent 82%, rgba(255, 204, 65, 0.16)),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.12) 0 2px, transparent 3px),
    #333941;
}

.crosswalk {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.9) 0 9px, transparent 9px 23px),
    #333941;
}

.object,
.character {
  position: absolute;
  width: var(--tile);
  height: var(--tile);
}

.object {
  display: grid;
  place-items: center;
  overflow: visible;
}

.object > div {
  position: relative;
  width: 100%;
  height: 100%;
}

.asset-label,
.asset-sublabel {
  position: relative;
  z-index: 2;
  display: block;
  font-family: Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.05;
}

.asset-label {
  font-weight: 900;
}

.asset-sublabel {
  font-size: 0.72em;
  font-weight: 700;
}

.sign {
  height: 34px;
  margin-top: 7px;
  border: 2px solid #24334a;
  border-radius: 4px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
}

.sign.green {
  background: var(--green);
}

.sign.red {
  background: var(--red);
}

.overhead-sign,
.baggage-sign {
  display: grid;
  align-content: center;
  justify-content: center;
  padding: 6px 12px 7px 54px;
  border: 3px solid #162235;
  border-radius: 5px;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: left;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.28),
    0 6px 0 rgba(24, 32, 51, 0.24);
}

.overhead-sign::before,
.baggage-sign::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 24px;
  height: 16px;
  border-radius: 3px 3px 8px 8px;
  background: currentColor;
  clip-path: polygon(0 45%, 70% 45%, 100% 0, 100% 36%, 78% 70%, 0 70%);
}

.overhead-sign.green {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
    #1f6f4d;
}

.overhead-sign.blue {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
    #173c70;
}

.overhead-sign .asset-label {
  font-size: 20px;
}

.baggage-sign {
  color: #f5b81f;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    #151a21;
}

.baggage-sign .asset-label {
  color: #f5b81f;
  font-size: 18px;
}

.baggage-sign .asset-sublabel {
  color: #ffd86b;
}

.glass-doors {
  border: 3px solid #55616c;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.55) 0 8%, transparent 9% 44%, rgba(255, 255, 255, 0.36) 45% 52%, transparent 53%),
    repeating-linear-gradient(90deg, rgba(31, 45, 60, 0.55) 0 4px, transparent 4px 56px),
    linear-gradient(180deg, rgba(120, 178, 210, 0.62), rgba(80, 118, 145, 0.42));
  box-shadow: inset 0 -8px 0 rgba(38, 53, 66, 0.18);
}

.flight-board {
  display: grid;
  align-content: start;
  gap: 3px;
  padding: 8px 10px;
  border: 3px solid #172335;
  border-radius: 4px;
  background:
    repeating-linear-gradient(180deg, transparent 0 12px, rgba(255, 255, 255, 0.08) 12px 14px),
    linear-gradient(180deg, #111923, #26333f);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 5px 0 rgba(24, 32, 51, 0.28);
}

.flight-board::before {
  content: "Hora   Destino   Porta";
  color: #f4d34f;
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
}

.flight-board::after {
  content: "08:15 Lisboa A01\A 09:30 Paris B12\A 10:05 Berlim B05\A 10:50 Bruxelas B08";
  white-space: pre;
  color: #e7f4d7;
  font-family: Arial, sans-serif;
  font-size: 8px;
  line-height: 1.4;
}

.airport-seats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  align-items: end;
  padding: 7px 5px 8px;
}

.airport-seats::before {
  content: "";
  grid-column: 1 / -1;
  height: 32px;
  border: 3px solid #203049;
  border-radius: 8px 8px 4px 4px;
  background:
    linear-gradient(90deg, transparent 31%, rgba(255, 255, 255, 0.35) 31% 34%, transparent 34% 64%, rgba(255, 255, 255, 0.35) 64% 67%, transparent 67%),
    linear-gradient(180deg, #24639b, #163d67);
  box-shadow: 0 7px 0 rgba(24, 32, 51, 0.2);
}

.bench {
  width: 44px;
  height: 22px;
  border: 2px solid #5a3e2b;
  border-radius: 4px;
  background: #9f734e;
  box-shadow: inset 0 -5px 0 rgba(65, 35, 18, 0.18);
}

.plant {
  width: 32px;
  height: 50px;
  margin: -10px auto 0;
  border-radius: 40% 40% 6px 6px;
  background:
    radial-gradient(circle at 25% 24%, #6cb75e 0 18%, transparent 19%),
    radial-gradient(circle at 70% 22%, #4b9652 0 22%, transparent 23%),
    radial-gradient(circle at 52% 10%, #7dc36c 0 20%, transparent 21%),
    radial-gradient(circle at 48% 36%, #3f7f46 0 22%, transparent 23%),
    linear-gradient(180deg, transparent 0 58%, #7a5132 59% 100%);
}

.plant::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 0;
  width: 24px;
  height: 14px;
  border: 2px solid #333d45;
  border-radius: 3px 3px 8px 8px;
  background: #707a80;
}

.planter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 3px 6px 0;
  border-bottom: 10px solid #444b51;
  background: linear-gradient(180deg, transparent 0 62%, #636b70 63% 100%);
}

.planter-row::before {
  content: "";
  grid-column: 1 / -1;
  height: 50px;
  background:
    radial-gradient(circle at 14% 34%, #6db15e 0 7%, transparent 8%),
    radial-gradient(circle at 22% 18%, #4d9452 0 8%, transparent 9%),
    radial-gradient(circle at 36% 34%, #6db15e 0 7%, transparent 8%),
    radial-gradient(circle at 48% 18%, #4d9452 0 8%, transparent 9%),
    radial-gradient(circle at 62% 34%, #6db15e 0 7%, transparent 8%),
    radial-gradient(circle at 74% 18%, #4d9452 0 8%, transparent 9%),
    radial-gradient(circle at 86% 34%, #6db15e 0 7%, transparent 8%);
}

.desk {
  width: 46px;
  height: 34px;
  border: 2px solid #24334a;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent),
    #6d7785;
  box-shadow: inset 0 -8px 0 rgba(24, 32, 51, 0.18);
}

.information-desk {
  border: 3px solid #1b2735;
  border-radius: 18px 18px 8px 8px;
  background:
    radial-gradient(circle at 78% 35%, #2c3440 0 9%, transparent 10%),
    linear-gradient(180deg, #e5e0d5 0 38%, #9fa8ae 39% 66%, #324354 67% 100%);
  box-shadow: inset 0 5px 0 rgba(255, 255, 255, 0.55), 0 8px 0 rgba(24, 32, 51, 0.2);
}

.information-desk::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 16px;
  width: 34px;
  height: 24px;
  border: 3px solid #202b38;
  border-radius: 3px;
  background: #1a2430;
}

.information-desk::after {
  content: "i";
  position: absolute;
  right: 18px;
  top: 9px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  color: #fff;
  background: #174379;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.wifi-kiosk {
  display: grid;
  place-items: center;
  padding-top: 20px;
  border: 3px solid #162335;
  border-radius: 6px;
  color: #fff;
  background:
    linear-gradient(180deg, #1f497d 0 76%, #2d343b 77% 100%);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.wifi-kiosk::before {
  content: "";
  position: absolute;
  top: 7px;
  width: 18px;
  height: 12px;
  border: 3px solid #fff;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.direction-sign {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 7px 12px 7px 42px;
  border: 3px solid #1a2532;
  border-radius: 5px;
  color: #fff;
  background:
    linear-gradient(#166142 0 33%, #e2a91b 34% 66%, #173c70 67% 100%);
  box-shadow: 0 10px 0 rgba(24, 32, 51, 0.25);
}

.direction-sign::before {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -28px;
  width: 7px;
  height: 28px;
  background: #273145;
  box-shadow: 122px 0 0 #273145;
}

.direction-sign .asset-label,
.direction-sign .asset-sublabel {
  font-size: 11px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.exterior-building {
  display: grid;
  align-content: center;
  justify-content: center;
  padding-left: 72px;
  border: 3px solid #68717b;
  color: #343944;
  background:
    linear-gradient(90deg, rgba(80, 88, 98, 0.28) 1px, transparent 1px),
    linear-gradient(rgba(80, 88, 98, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, #f0e7da 0 68%, #d3d4d4 69% 100%);
  background-size: 120px 60px, 60px 30px, auto;
  box-shadow: inset 0 -10px 0 rgba(31, 42, 55, 0.12);
}

.exterior-building::before {
  content: "";
  position: absolute;
  left: 78px;
  top: 62px;
  width: 58px;
  height: 18px;
  border-radius: 999px;
  background: #1f62b8;
  box-shadow:
    22px -18px 0 -3px #1f62b8,
    22px 18px 0 -3px #1f62b8;
  transform: rotate(-34deg);
}

.exterior-building .asset-label {
  font-family: Arial, sans-serif;
  font-size: 44px;
  line-height: 0.95;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.58), 3px 4px 0 rgba(24, 32, 51, 0.24);
}

.exterior-building .asset-sublabel {
  color: #454957;
  font-family: Arial, sans-serif;
  font-size: 25px;
  text-align: center;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.55);
}

.control-tower {
  background:
    radial-gradient(ellipse at 50% 18%, #5f7890 0 26%, transparent 27%),
    linear-gradient(180deg, transparent 0 26%, #b6c2cc 27% 100%);
}

.control-tower::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 82px;
  height: 34px;
  border: 3px solid #24334a;
  border-radius: 12px;
  background:
    repeating-linear-gradient(90deg, #315a77 0 14px, #8cc8e7 14px 22px),
    #55758e;
}

.control-tower::after {
  content: "";
  position: absolute;
  left: 45px;
  top: 52px;
  width: 26px;
  height: 110px;
  border: 3px solid #4c5963;
  border-radius: 6px 6px 18px 18px;
  background: linear-gradient(180deg, #d7dde2, #96a5af);
}

.lisbon-panel {
  display: grid;
  place-items: center;
  border: 3px solid #2d3440;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.32), transparent 38%),
    linear-gradient(180deg, #1b64a8, #5aa4cc);
  font-family: Arial, sans-serif;
  text-align: center;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.18);
}

.lisbon-panel .asset-label {
  font-size: 24px;
  letter-spacing: 1px;
}

.exterior-glass-facade,
.exterior-glass-doors {
  border: 3px solid #354758;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.56) 0 9%, transparent 10% 44%, rgba(255, 255, 255, 0.36) 45% 53%, transparent 54%),
    repeating-linear-gradient(90deg, rgba(29, 42, 55, 0.55) 0 4px, transparent 4px 58px),
    linear-gradient(180deg, #2b8cc0, #164e72);
  box-shadow: inset 0 -10px 0 rgba(18, 30, 40, 0.25);
}

.exterior-glass-doors {
  background:
    linear-gradient(90deg, transparent 48%, rgba(16, 28, 40, 0.62) 49% 51%, transparent 52%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.52) 0 12%, transparent 13% 48%, rgba(255, 255, 255, 0.32) 49% 57%, transparent 58%),
    linear-gradient(180deg, #286f9b, #14364f);
}

.exterior-canopy {
  border-top: 5px solid rgba(45, 62, 78, 0.72);
  background:
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.5) 0 3px, transparent 3px 34px),
    linear-gradient(180deg, rgba(138, 198, 225, 0.42), rgba(74, 105, 124, 0.22));
  transform: translateY(-20px);
}

.canopy-post {
  width: 14px !important;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #77838e, #d2d8dc 48%, #606b75);
  box-shadow: 0 4px 0 rgba(24, 32, 51, 0.22);
}

.exterior-arrivals-sign {
  display: grid;
  align-content: center;
  justify-content: center;
  padding-left: 54px;
  border: 3px solid #151f2e;
  border-radius: 4px;
  color: #f8bd26;
  background: #151a21;
  font-family: Arial, sans-serif;
  text-align: left;
  box-shadow: 0 7px 0 rgba(24, 32, 51, 0.28);
}

.exterior-arrivals-sign::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 26px;
  height: 14px;
  border-radius: 3px 3px 9px 9px;
  background: currentColor;
  clip-path: polygon(0 45%, 70% 45%, 100% 0, 100% 36%, 78% 70%, 0 70%);
}

.exterior-arrivals-sign .asset-label {
  font-size: 20px;
}

.exterior-directory-sign,
.parking-sign {
  display: grid;
  align-content: center;
  justify-content: center;
  padding: 8px;
  border: 3px solid #172335;
  border-radius: 6px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
    #132b48;
  font-family: Arial, sans-serif;
  text-align: center;
  box-shadow: 0 7px 0 rgba(24, 32, 51, 0.24);
}

.exterior-directory-sign .asset-label,
.parking-sign .asset-label {
  color: #ffca38;
  font-size: 13px;
}

.parking-sign .asset-label {
  color: #fff;
  font-size: 34px;
}

.taxi-cab {
  display: grid;
  place-items: start center;
  padding-top: 7px;
  border-radius: 46px 50px 18px 18px;
  color: #322200;
  background:
    radial-gradient(circle at 20% 76%, #1c232d 0 10%, #cfd6dc 11% 17%, transparent 18%),
    radial-gradient(circle at 78% 76%, #1c232d 0 10%, #cfd6dc 11% 17%, transparent 18%),
    linear-gradient(90deg, transparent 0 9%, rgba(255, 255, 255, 0.5) 10% 32%, transparent 33% 67%, rgba(255, 255, 255, 0.42) 68% 91%, transparent 92%),
    linear-gradient(180deg, #ffd33e 0 68%, #d78b17 69% 100%);
  box-shadow: inset 0 -8px 0 rgba(71, 47, 0, 0.18), 0 6px 0 rgba(24, 32, 51, 0.25);
}

.taxi-cab::before {
  content: "";
  position: absolute;
  top: -9px;
  width: 42px;
  height: 18px;
  border: 2px solid #36280b;
  border-radius: 6px 6px 0 0;
  background: #ffe66b;
}

.taxi-cab .asset-label {
  z-index: 3;
  margin-top: -10px;
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.taxi-road-markings {
  border-top: 4px solid #f3c72b;
  border-bottom: 4px solid #f3c72b;
  background:
    linear-gradient(45deg, transparent 39%, #f3c72b 40% 44%, transparent 45% 58%, #f3c72b 59% 63%, transparent 64%),
    transparent;
}

.exterior-planter {
  border: 4px solid #8a8074;
  border-radius: 4px;
  background:
    radial-gradient(circle at 18% 36%, #ffb0c8 0 5%, transparent 6%),
    radial-gradient(circle at 32% 48%, #fff1d8 0 4%, transparent 5%),
    radial-gradient(circle at 46% 32%, #e85d86 0 4%, transparent 5%),
    radial-gradient(circle at 68% 45%, #fff1d8 0 4%, transparent 5%),
    radial-gradient(circle at 82% 32%, #e85d86 0 4%, transparent 5%),
    linear-gradient(180deg, #65a84e 0 58%, #9a8a7a 59% 100%);
}

.exterior-tree {
  background:
    radial-gradient(circle at 50% 24%, #9dd33d 0 26%, transparent 27%),
    radial-gradient(circle at 26% 32%, #69a833 0 24%, transparent 25%),
    radial-gradient(circle at 75% 36%, #7cbd37 0 25%, transparent 26%),
    linear-gradient(180deg, transparent 0 45%, #7c4f2d 46% 100%);
}

.exterior-bollard {
  width: 18px !important;
  height: 42px !important;
  margin: 12px auto 0;
  border: 3px solid #172335;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #304253 0 34%, #f2c66d 35% 45%, #304253 46% 100%);
}

.exterior-lamp {
  background:
    radial-gradient(circle at 50% 18%, #fff5ca 0 13%, #2d3540 14% 22%, transparent 23%),
    linear-gradient(90deg, transparent 46%, #2d3540 47% 53%, transparent 54%);
}

.exterior-traffic-sign {
  background:
    linear-gradient(90deg, transparent 46%, #4d5964 47% 53%, transparent 54%),
    radial-gradient(circle at 50% 18%, #2e65b1 0 28%, transparent 29%);
}

.exterior-bench {
  border: 3px solid #46535f;
  border-radius: 6px;
  background:
    linear-gradient(180deg, #1f5f9f 0 38%, transparent 39%),
    repeating-linear-gradient(90deg, #7e8790 0 18px, #ccd2d6 18px 22px);
  box-shadow: inset 0 -8px 0 rgba(24, 32, 51, 0.18);
}

.trash-bin {
  width: 34px !important;
  height: 46px !important;
  margin: 8px auto 0;
  border: 3px solid #1d2834;
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent),
    #2e3b47;
}

.game[data-map="airport-exterior"] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 38%),
    #b7c7d1;
  image-rendering: auto;
  box-shadow: 0 20px 38px rgba(34, 47, 61, 0.28);
}

.game[data-map="airport-exterior"] .wall {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 60%),
    linear-gradient(90deg, rgba(55, 62, 70, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(55, 62, 70, 0.2) 1px, transparent 1px),
    #a8b0b5;
  background-size: auto, 60px 60px, 60px 30px, auto;
}

.game[data-map="airport-exterior"] .sidewalk {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.1) 44%, rgba(98, 105, 110, 0.18)),
    linear-gradient(90deg, rgba(73, 80, 86, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(73, 80, 86, 0.18) 1px, transparent 1px),
    #d7d3c8;
  background-size: auto, 30px 30px, 30px 30px, auto;
}

.game[data-map="airport-exterior"] .road,
.game[data-map="airport-exterior"] .crosswalk {
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 68%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    #30343a;
}

.game[data-map="airport-exterior"] .crosswalk {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.9) 0 10px, transparent 10px 24px),
    radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    #30343a;
}

.exterior-skyline {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.86) 0 15%, transparent 16%),
    radial-gradient(circle at 64% 32%, rgba(255, 255, 255, 0.76) 0 13%, transparent 14%),
    linear-gradient(180deg, #4aa8ec 0%, #8fd2ff 56%, #cfe9f9 100%);
}

.exterior-skyline::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 28px;
  background:
    linear-gradient(90deg, #6c8b9f 0 12%, #8aa8b9 12% 27%, #658699 27% 44%, #94acbb 44% 61%, #6c8b9f 61% 100%);
  box-shadow: 0 -6px 0 rgba(255, 255, 255, 0.18);
}

.exterior-skyline::after {
  content: "";
  position: absolute;
  left: 145px;
  top: 28px;
  width: 64px;
  height: 22px;
  border-radius: 50% 54% 45% 45%;
  background: #f7fbff;
  box-shadow: 18px 4px 0 -4px #d73939, -18px 8px 0 -9px #1f6cb6;
  transform: rotate(12deg);
}

.exterior-building {
  overflow: visible;
  display: grid;
  align-content: center;
  justify-content: center;
  padding-left: 112px;
  border: 0;
  color: #303642;
  background:
    linear-gradient(90deg, rgba(85, 91, 98, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(85, 91, 98, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, #f0ede7 0 24%, #d7d8d9 25% 100%);
  background-size: 120px 60px, 60px 30px, auto;
  box-shadow:
    inset 0 -12px 0 rgba(31, 41, 51, 0.1),
    0 10px 0 rgba(31, 41, 51, 0.16);
}

.exterior-building::before {
  content: "";
  position: absolute;
  left: 86px;
  top: 73px;
  width: 66px;
  height: 22px;
  border-radius: 999px;
  background: #1f67bc;
  box-shadow:
    26px -20px 0 -4px #1f67bc,
    26px 20px 0 -4px #1f67bc,
    0 2px 0 rgba(0, 0, 0, 0.18);
  transform: rotate(-33deg);
}

.exterior-building::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 16px;
  background: linear-gradient(180deg, rgba(42, 50, 59, 0.2), rgba(42, 50, 59, 0.03));
}

.exterior-building .asset-label {
  font-family: Arial, sans-serif;
  font-size: 48px;
  line-height: 0.92;
  color: #343a45;
  text-shadow:
    0 3px 0 rgba(255, 255, 255, 0.68),
    4px 5px 0 rgba(24, 32, 51, 0.16);
}

.exterior-building .asset-sublabel {
  color: #414854;
  font-family: Arial, sans-serif;
  font-size: 28px;
  text-align: center;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.62);
}

.terminal-side-wing {
  overflow: hidden;
  border-left: 3px solid rgba(52, 60, 69, 0.38);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 32%),
    repeating-linear-gradient(90deg, rgba(22, 40, 58, 0.78) 0 4px, transparent 4px 52px),
    linear-gradient(180deg, #e7e4dd 0 34%, #1f79a8 35% 100%);
}

.control-tower {
  overflow: visible;
  background:
    linear-gradient(180deg, transparent 0 18%, rgba(255, 255, 255, 0.22) 19% 100%),
    linear-gradient(90deg, transparent 34%, #b6c0c8 35% 65%, transparent 66%);
}

.control-tower::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 12px;
  width: 96px;
  height: 42px;
  border: 4px solid #243248;
  border-radius: 13px;
  background:
    repeating-linear-gradient(90deg, #243248 0 6px, #79c1ea 6px 20px),
    #587287;
  box-shadow: 0 5px 0 rgba(31, 41, 51, 0.22);
}

.control-tower::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 52px;
  width: 34px;
  height: 132px;
  border: 4px solid #59646e;
  border-radius: 6px 6px 18px 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.44), transparent 45%),
    linear-gradient(180deg, #d5dbe0, #9aa8b1);
}

.lisbon-panel {
  display: grid;
  place-items: start center;
  padding-top: 14px;
  border: 4px solid #253141;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.34), transparent 38%),
    linear-gradient(180deg, transparent 0 48%, rgba(244, 205, 73, 0.62) 49% 53%, transparent 54%),
    linear-gradient(90deg, transparent 0 42%, rgba(215, 51, 51, 0.85) 43% 47%, transparent 48% 54%, rgba(215, 51, 51, 0.85) 55% 59%, transparent 60%),
    linear-gradient(180deg, #1d70b5, #79cfe9 58%, #356d49 59% 100%);
  font-family: Arial, sans-serif;
  text-align: center;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.17);
}

.lisbon-panel .asset-label {
  font-size: 25px;
  letter-spacing: 1px;
  text-shadow: 0 3px 0 rgba(14, 24, 38, 0.34);
}

.exterior-glass-facade {
  border: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.52) 0 7%, transparent 8% 38%, rgba(255, 255, 255, 0.36) 39% 48%, transparent 49%),
    repeating-linear-gradient(90deg, rgba(18, 34, 50, 0.62) 0 4px, transparent 4px 58px),
    linear-gradient(180deg, rgba(147, 206, 230, 0.78) 0 44%, rgba(18, 93, 130, 0.82) 45% 100%);
  box-shadow:
    inset 0 10px 0 rgba(255, 255, 255, 0.18),
    inset 0 -10px 0 rgba(18, 30, 40, 0.24);
}

.exterior-glass-doors {
  border: 0;
  background:
    linear-gradient(90deg, transparent 31%, rgba(12, 27, 38, 0.72) 32% 34%, transparent 35% 65%, rgba(12, 27, 38, 0.72) 66% 68%, transparent 69%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.54) 0 12%, transparent 13% 49%, rgba(255, 255, 255, 0.34) 50% 59%, transparent 60%),
    linear-gradient(180deg, #2479a7, #163b55);
  box-shadow:
    inset 0 0 0 3px rgba(20, 34, 47, 0.78),
    inset 0 -8px 0 rgba(15, 26, 38, 0.32);
}

.exterior-canopy {
  height: 108px !important;
  border-top: 5px solid rgba(48, 59, 70, 0.84);
  border-bottom: 5px solid rgba(48, 59, 70, 0.54);
  background:
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.58) 0 3px, transparent 3px 38px),
    linear-gradient(180deg, rgba(164, 222, 242, 0.56), rgba(75, 103, 122, 0.2));
  box-shadow: 0 14px 0 rgba(31, 41, 51, 0.13);
  transform: translateY(-26px);
  clip-path: polygon(3% 12%, 97% 12%, 100% 48%, 94% 100%, 6% 100%, 0 48%);
}

.canopy-post {
  width: 13px !important;
  height: 98px !important;
  margin: -26px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #5d6872, #d9e0e5 48%, #65717a);
  box-shadow:
    0 5px 0 rgba(24, 32, 51, 0.18),
    0 0 0 2px rgba(36, 45, 54, 0.2);
}

.exterior-arrivals-sign {
  display: grid;
  align-content: center;
  justify-content: center;
  padding-left: 70px;
  border: 4px solid #111b29;
  border-radius: 5px;
  color: #f7bd28;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 44%),
    #171d24;
  font-family: Arial, sans-serif;
  text-align: left;
  box-shadow: 0 8px 0 rgba(24, 32, 51, 0.28);
}

.exterior-arrivals-sign::before {
  left: 23px;
  top: 19px;
  width: 32px;
  height: 18px;
}

.exterior-arrivals-sign::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 20px;
  width: 18px;
  height: 32px;
  background: currentColor;
  clip-path: polygon(42% 0, 58% 0, 58% 58%, 86% 58%, 50% 100%, 14% 58%, 42% 58%);
}

.exterior-arrivals-sign .asset-label {
  font-size: 25px;
}

.exterior-directory-sign {
  display: grid;
  align-content: start;
  justify-content: stretch;
  gap: 5px;
  padding: 12px 10px;
  border: 4px solid #172335;
  border-radius: 6px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 22%),
    repeating-linear-gradient(180deg, transparent 0 31px, rgba(255, 255, 255, 0.16) 31px 34px),
    #132a46;
  box-shadow: 0 7px 0 rgba(24, 32, 51, 0.25);
}

.exterior-directory-sign .asset-label {
  color: #ffca38;
  font-size: 13px;
}

.exterior-directory-sign::after {
  content: "Taxis\A Autocarros\A Parque P";
  white-space: pre;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 2.25;
}

.parking-sign {
  border: 4px solid #172335;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
    #1c66ad;
  box-shadow: 0 7px 0 rgba(24, 32, 51, 0.24);
}

.taxi-cab {
  display: grid;
  place-items: start center;
  height: 66px !important;
  margin-top: 4px;
  padding-top: 6px;
  border-radius: 58px 64px 20px 20px;
  color: #332400;
  background:
    radial-gradient(circle at 20% 78%, #171d24 0 10%, #dce2e6 11% 17%, transparent 18%),
    radial-gradient(circle at 80% 78%, #171d24 0 10%, #dce2e6 11% 17%, transparent 18%),
    linear-gradient(90deg, transparent 0 10%, rgba(255, 255, 255, 0.62) 11% 32%, transparent 33% 67%, rgba(255, 255, 255, 0.48) 68% 89%, transparent 90%),
    linear-gradient(180deg, #ffd848 0 63%, #d98f18 64% 100%);
  box-shadow:
    inset 0 -8px 0 rgba(76, 49, 0, 0.18),
    0 8px 0 rgba(24, 32, 51, 0.24);
}

.taxi-cab::before {
  content: "";
  position: absolute;
  top: -10px;
  width: 52px;
  height: 19px;
  border: 3px solid #36280b;
  border-radius: 7px 7px 0 0;
  background: #ffe66b;
}

.taxi-cab::after {
  content: "";
  position: absolute;
  left: 38%;
  top: 13px;
  width: 24%;
  height: 21px;
  border-radius: 8px;
  background: rgba(33, 69, 89, 0.56);
}

.taxi-cab .asset-label {
  z-index: 3;
  margin-top: -10px;
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.taxi-road-markings {
  border-top: 4px solid #f6cd36;
  border-bottom: 4px solid #f6cd36;
  background:
    linear-gradient(45deg, transparent 39%, #f6cd36 40% 44%, transparent 45% 58%, #f6cd36 59% 63%, transparent 64%),
    linear-gradient(90deg, transparent 0 19%, rgba(255, 255, 255, 0.6) 20% 21%, transparent 22% 78%, rgba(255, 255, 255, 0.6) 79% 80%, transparent 81%);
}

.exterior-crosswalk-stripes {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.92) 0 11px, transparent 11px 28px);
}

.exterior-planter {
  border: 4px solid #877d72;
  border-radius: 5px;
  background:
    radial-gradient(circle at 14% 32%, #ffb4c8 0 5%, transparent 6%),
    radial-gradient(circle at 28% 47%, #fff2d6 0 4%, transparent 5%),
    radial-gradient(circle at 42% 31%, #e75d87 0 4%, transparent 5%),
    radial-gradient(circle at 58% 42%, #fff2d6 0 4%, transparent 5%),
    radial-gradient(circle at 75% 30%, #e75d87 0 4%, transparent 5%),
    radial-gradient(circle at 88% 46%, #fff2d6 0 4%, transparent 5%),
    linear-gradient(180deg, #6fb552 0 58%, #9b8a79 59% 100%);
  box-shadow: 0 5px 0 rgba(31, 41, 51, 0.18);
}

.exterior-tree {
  height: 112px !important;
  transform: translateY(-44px);
  background:
    radial-gradient(circle at 50% 26%, #a7dc46 0 24%, transparent 25%),
    radial-gradient(circle at 28% 38%, #69a93b 0 22%, transparent 23%),
    radial-gradient(circle at 72% 40%, #7fc442 0 23%, transparent 24%),
    radial-gradient(circle at 50% 48%, #4d9338 0 22%, transparent 23%),
    linear-gradient(180deg, transparent 0 55%, #80532d 56% 100%);
  filter: drop-shadow(0 8px 0 rgba(31, 41, 51, 0.15));
}

.exterior-bollard {
  width: 18px !important;
  height: 46px !important;
  margin: 10px auto 0;
  border: 3px solid #172335;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #304253 0 34%, #f2c66d 35% 45%, #304253 46% 100%);
  box-shadow: 0 6px 0 rgba(24, 32, 51, 0.2);
}

.exterior-lamp {
  height: 108px !important;
  transform: translateY(-42px);
  background:
    radial-gradient(circle at 50% 14%, #fff0b7 0 12%, #2d3540 13% 21%, transparent 22%),
    linear-gradient(90deg, transparent 47%, #2d3540 48% 52%, transparent 53%);
  filter: drop-shadow(0 6px 0 rgba(31, 41, 51, 0.18));
}

.exterior-traffic-sign {
  background:
    linear-gradient(90deg, transparent 46%, #4d5964 47% 53%, transparent 54%),
    radial-gradient(circle at 50% 18%, #2e65b1 0 28%, transparent 29%);
  filter: drop-shadow(0 5px 0 rgba(31, 41, 51, 0.18));
}

.exterior-bench {
  border: 3px solid #46535f;
  border-radius: 6px;
  background:
    linear-gradient(180deg, #1f5f9f 0 38%, transparent 39%),
    repeating-linear-gradient(90deg, #7e8790 0 18px, #ccd2d6 18px 22px);
  box-shadow: inset 0 -8px 0 rgba(24, 32, 51, 0.18), 0 5px 0 rgba(31, 41, 51, 0.14);
}

.game[data-map="airport-exterior"] .asset-label,
.game[data-map="airport-exterior"] .asset-sublabel {
  display: none;
}

.game[data-map="airport-exterior"] .sidewalk {
  background: url("assets/exterior/tile-sidewalk.svg") center / cover no-repeat;
}

.game[data-map="airport-exterior"] .road {
  background: url("assets/exterior/tile-road.svg") center / cover no-repeat;
}

.game[data-map="airport-exterior"] .crosswalk {
  background: url("assets/exterior/tile-crosswalk.svg") center / cover no-repeat;
}

.game[data-map="airport-exterior"] .wall,
.game[data-map="airport-exterior"] .window {
  background: #aeb7bd;
  border-color: rgba(63, 71, 78, 0.2);
}

.game[data-map="airport-exterior"] .object > div {
  background-repeat: no-repeat;
}

.game[data-map="airport-exterior"] .exterior-skyline,
.game[data-map="airport-exterior"] .exterior-building,
.game[data-map="airport-exterior"] .terminal-side-wing,
.game[data-map="airport-exterior"] .control-tower,
.game[data-map="airport-exterior"] .lisbon-panel,
.game[data-map="airport-exterior"] .exterior-glass-facade,
.game[data-map="airport-exterior"] .exterior-glass-doors,
.game[data-map="airport-exterior"] .exterior-canopy,
.game[data-map="airport-exterior"] .exterior-arrivals-sign,
.game[data-map="airport-exterior"] .exterior-directory-sign,
.game[data-map="airport-exterior"] .parking-sign,
.game[data-map="airport-exterior"] .taxi-cab,
.game[data-map="airport-exterior"] .exterior-planter,
.game[data-map="airport-exterior"] .exterior-tree,
.game[data-map="airport-exterior"] .exterior-bollard,
.game[data-map="airport-exterior"] .exterior-lamp,
.game[data-map="airport-exterior"] .exterior-traffic-sign,
.game[data-map="airport-exterior"] .exterior-bench,
.game[data-map="airport-exterior"] .trash-bin,
.game[data-map="airport-exterior"] .luggage-carts,
.game[data-map="airport-exterior"] .taxi-road-markings {
  border: 0;
  box-shadow: none;
  filter: none;
}

.game[data-map="airport-exterior"] .exterior-skyline {
  background: url("assets/exterior/skyline.svg") center / 100% 100% no-repeat;
}

.game[data-map="airport-exterior"] .exterior-skyline::before,
.game[data-map="airport-exterior"] .exterior-skyline::after,
.game[data-map="airport-exterior"] .exterior-building::before,
.game[data-map="airport-exterior"] .exterior-building::after,
.game[data-map="airport-exterior"] .control-tower::before,
.game[data-map="airport-exterior"] .control-tower::after,
.game[data-map="airport-exterior"] .exterior-arrivals-sign::before,
.game[data-map="airport-exterior"] .exterior-arrivals-sign::after,
.game[data-map="airport-exterior"] .taxi-cab::before,
.game[data-map="airport-exterior"] .taxi-cab::after,
.game[data-map="airport-exterior"] .exterior-directory-sign::after {
  display: none;
}

.game[data-map="airport-exterior"] .exterior-building {
  padding: 0;
  background: url("assets/exterior/terminal-main.svg") center / 100% 100% no-repeat;
}

.game[data-map="airport-exterior"] .terminal-side-wing {
  background: url("assets/exterior/terminal-wing.svg") center / 100% 100% no-repeat;
}

.game[data-map="airport-exterior"] .control-tower {
  background: url("assets/exterior/control-tower.svg") center bottom / contain no-repeat;
}

.game[data-map="airport-exterior"] .lisbon-panel {
  padding: 0;
  background: url("assets/exterior/lisboa-panel.svg") center / contain no-repeat;
}

.game[data-map="airport-exterior"] .exterior-glass-facade {
  background: url("assets/exterior/glass-facade.svg") center / 100% 100% no-repeat;
}

.game[data-map="airport-exterior"] .exterior-glass-doors {
  background: url("assets/exterior/glass-doors.svg") center / 100% 100% no-repeat;
}

.game[data-map="airport-exterior"] .exterior-canopy {
  height: 100% !important;
  transform: none;
  clip-path: none;
  background: url("assets/exterior/canopy.svg") center / 100% 100% no-repeat;
}

.game[data-map="airport-exterior"] .canopy-post {
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent 41%, #4b5660 42% 45%, #d6dee4 46% 53%, #4b5660 54% 57%, transparent 58%);
  box-shadow: none;
}

.game[data-map="airport-exterior"] .exterior-arrivals-sign {
  padding: 0;
  background: url("assets/exterior/arrivals-sign.svg") center / 100% 100% no-repeat;
}

.game[data-map="airport-exterior"] .exterior-directory-sign {
  padding: 0;
  background: url("assets/exterior/directory-sign.svg") center / contain no-repeat;
}

.game[data-map="airport-exterior"] .parking-sign {
  border: 0;
  background: url("assets/exterior/parking-sign.svg") center bottom / contain no-repeat;
  transform: none;
}

.game[data-map="airport-exterior"] .taxi-cab {
  height: 90px !important;
  margin: 0;
  padding: 0;
  transform: translateY(-28px);
  background: url("assets/exterior/taxi.svg") center bottom / contain no-repeat;
}

.game[data-map="airport-exterior"] .taxi-road-markings {
  background: url("assets/exterior/taxi-markings.svg") center / 100% 100% no-repeat;
}

.game[data-map="airport-exterior"] .exterior-crosswalk-stripes {
  background: url("assets/exterior/tile-crosswalk.svg") center / 60px 60px repeat;
}

.game[data-map="airport-exterior"] .exterior-planter {
  background: url("assets/exterior/planter.svg") center / 100% 100% no-repeat;
}

.game[data-map="airport-exterior"] .exterior-tree {
  width: 100% !important;
  height: 100% !important;
  transform: none;
  background: url("assets/exterior/tree.svg") center bottom / contain no-repeat;
}

.game[data-map="airport-exterior"] .exterior-bollard {
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  background: url("assets/exterior/bollard.svg") center / contain no-repeat;
}

.game[data-map="airport-exterior"] .exterior-lamp {
  width: 100% !important;
  height: 100% !important;
  transform: none;
  background: url("assets/exterior/lamp-post.svg") center bottom / contain no-repeat;
}

.game[data-map="airport-exterior"] .exterior-traffic-sign {
  background: url("assets/exterior/traffic-sign.svg") center / contain no-repeat;
}

.game[data-map="airport-exterior"] .exterior-bench {
  background: url("assets/exterior/bench.svg") center / contain no-repeat;
}

.game[data-map="airport-exterior"] .trash-bin {
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  background: url("assets/exterior/trash-bin.svg") center / contain no-repeat;
}

.game[data-map="airport-exterior"] .luggage-carts {
  background: url("assets/exterior/luggage-carts.svg") center / 100% 100% no-repeat;
}

.passport-booth {
  overflow: hidden;
  border: 4px solid #35404a;
  border-radius: 4px 4px 0 0;
  background:
    linear-gradient(180deg, #8b949b 0 18%, #4c5963 19% 27%, transparent 28%),
    linear-gradient(90deg, #4d5964 0 4%, transparent 4% 96%, #4d5964 96% 100%),
    linear-gradient(180deg, transparent 0 40%, #8cb6cf 41% 56%, #315270 57% 70%, #2d3740 71% 100%);
  box-shadow: inset 0 6px 0 rgba(255, 255, 255, 0.22);
}

.passport-booth .asset-label,
.passport-booth .asset-sublabel {
  position: absolute;
  left: 18px;
  top: 12px;
  color: #fff;
  background: #174379;
  padding: 3px 8px;
  border-radius: 3px;
}

.passport-booth .asset-sublabel {
  top: 34px;
  font-size: 10px;
}

.passport-booth::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 26px;
  height: 58px;
  border: 3px solid #1c2937;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.48) 0 12%, transparent 13% 54%, rgba(255, 255, 255, 0.25) 55% 62%, transparent 63%),
    rgba(122, 178, 205, 0.62);
}

.queue-lines {
  background:
    radial-gradient(circle at 16px 16px, #182033 0 4px, transparent 5px),
    radial-gradient(circle at 76px 16px, #182033 0 4px, transparent 5px),
    linear-gradient(90deg, transparent 16px, #2b65a0 17px 19px, transparent 20px 76px, #2b65a0 77px 79px, transparent 80px);
  background-size: 90px 58px;
  opacity: 0.85;
}

.baggage-belt {
  border: 5px solid #454d55;
  border-radius: 70px;
  background:
    radial-gradient(ellipse at center, transparent 0 42%, #2d333a 43% 58%, transparent 59%),
    repeating-linear-gradient(90deg, #15191f 0 16px, #20252c 16px 30px);
  box-shadow: inset 0 0 0 12px #747b80, inset 0 0 0 18px #2c333a, 0 8px 0 rgba(24, 32, 51, 0.22);
}

.luggage-carts {
  background:
    radial-gradient(circle at 16% 80%, #1b2430 0 5%, transparent 6%),
    radial-gradient(circle at 40% 80%, #1b2430 0 5%, transparent 6%),
    radial-gradient(circle at 64% 80%, #1b2430 0 5%, transparent 6%),
    radial-gradient(circle at 88% 80%, #1b2430 0 5%, transparent 6%),
    repeating-linear-gradient(90deg, transparent 0 36px, #19568a 36px 42px, transparent 42px 62px),
    linear-gradient(180deg, transparent 0 20%, #9aa6ae 21% 28%, transparent 29% 58%, #9aa6ae 59% 66%, transparent 67%);
}

.suitcase {
  position: relative;
  width: 34px;
  height: 34px;
  border: 2px solid #24334a;
  border-radius: 6px;
  background: #333b45;
  box-shadow: inset 0 -7px 0 rgba(0, 0, 0, 0.18);
}

.suitcase::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -8px;
  width: 10px;
  height: 8px;
  border: 2px solid #24334a;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.black-suitcase {
  background: #2d3138;
}

.blue-suitcase {
  background: #3b6fa3;
}

.red-suitcase {
  background: #b94a4a;
}

.hans-suitcase {
  background: #7a6a4d;
}

.labelled-suitcase .asset-label {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff7e5;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
}

.character {
  overflow: visible;
  transition: transform 190ms linear;
  will-change: transform;
}

.game.pixel-map .character {
  transition: none;
}

.sprite {
  position: relative;
  width: 34px;
  height: 42px;
  margin: 3px auto 0;
  border: 2px solid #1c2636;
  border-radius: 12px 12px 7px 7px;
  background: #5876a8;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
}

.image-sprite {
  width: 60px;
  height: 80px;
  margin: -20px auto 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.image-sprite::before,
.image-sprite::after {
  display: none;
}

.image-sprite img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
}

.sprite::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -13px;
  width: 15px;
  height: 15px;
  border: 2px solid #1c2636;
  border-radius: 50%;
  background: #f0c7a5;
}

.sprite::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -6px;
  width: 20px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
}

.player .sprite {
  background: #2f5d7c;
}

.anna .sprite {
  background: #8e527f;
}

.lukas .sprite {
  background: #b98435;
}

.cleaner .sprite {
  background: #4f8b6f;
}

.officer .sprite {
  background: #35445f;
}

.passenger .sprite {
  background: #697085;
}

.character .image-sprite {
  background: transparent;
}

.prompt {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: calc(var(--viewport-height) - 48px);
  transform: translateX(-50%);
  padding: 7px 12px;
  border: 2px solid #f8e6b4;
  border-radius: 999px;
  color: #fff;
  background: rgba(24, 32, 51, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.objective-button {
  position: static;
  width: 100%;
  max-width: none;
  padding: 10px 12px 11px;
  border: 2px solid #d89b38;
  border-radius: 8px;
  color: #fffaf1;
  background: linear-gradient(180deg, #17495a, #12333c);
  box-shadow: 0 5px 0 rgba(18, 51, 60, 0.2), 0 14px 28px rgba(18, 51, 60, 0.14);
  cursor: default;
  text-align: left;
}

.objective-button span {
  display: block;
  margin-bottom: 2px;
  color: #ffd36d;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.objective-button strong {
  display: block;
  font-size: 13px;
  line-height: 1.15;
}

.progress-hud {
  display: grid;
  gap: 9px;
  margin-top: 12px;
  padding: 12px;
  border: 2px solid rgba(216, 155, 56, 0.75);
  border-radius: 8px;
  color: #fffaf1;
  background: rgba(18, 51, 60, 0.94);
  box-shadow: 0 12px 24px rgba(18, 51, 60, 0.14);
}

.meter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #ffd36d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.meter-header strong {
  color: #fffaf1;
  font-size: 12px;
}

.meter-track {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 211, 109, 0.6);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.18);
}

.meter-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ef4a23, #ffd36d);
  transition: width 180ms ease;
}

.inventory-toggle {
  cursor: pointer;
  padding: 8px 10px;
  border: 2px solid #ffd36d;
  border-radius: 6px;
  color: #12333c;
  background: #ffd36d;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.inventory-toggle kbd {
  float: right;
  padding: 1px 5px;
  border: 1px solid rgba(18, 51, 60, 0.35);
  border-radius: 4px;
  background: rgba(255, 250, 241, 0.7);
  font-family: inherit;
  font-size: 11px;
}

.bottom-hud {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  border-top: 2px solid var(--line);
  background: #fff7e5;
  color: #30384d;
  font-size: 14px;
}

.bottom-hud > div {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.hud-actions {
  justify-content: flex-end;
}

.interact-button {
  min-width: 110px;
  min-height: 38px;
  cursor: pointer;
  border: 2px solid #273145;
  border-radius: 6px;
  color: #fff7e5;
  background: #2f5d7c;
  font-weight: 900;
}

.interact-button:hover,
.interact-button:focus-visible {
  background: #356c9c;
  outline: none;
}

.journal {
  display: grid;
  gap: 14px;
  min-height: 220px;
}

.vocab-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.vocab-list li {
  padding: 8px 10px;
  border: 1px solid #d8c8a9;
  border-radius: 6px;
  background: #fff7e5;
}

.vocab-list strong {
  display: block;
}

.vocab-list .empty {
  color: var(--muted);
  font-style: italic;
}

.dialogue {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 20;
  width: min(850px, calc(100vw - 32px));
  min-height: 126px;
  padding: 18px 18px 14px;
  border: 3px solid #12333c;
  border-radius: 8px;
  color: #fffaf1;
  background: rgba(18, 51, 60, 0.97);
  box-shadow: 0 18px 40px rgba(18, 51, 60, 0.3);
  transform: translateX(-50%);
}

.dialogue.has-portrait {
  padding-left: 256px;
}

.dialogue-portrait {
  position: absolute;
  left: 126px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  overflow: hidden;
  border: 3px solid #d89b38;
  border-radius: 8px;
  background: #fff7e5;
}

.dialogue-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialogue-name {
  position: absolute;
  left: 18px;
  bottom: 52px;
  width: 100px;
  min-width: 0;
  padding: 7px 6px;
  border: 3px solid #12333c;
  border-radius: 6px;
  background: #ffd36d;
  color: #12333c;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.dialogue:not(.has-portrait) .dialogue-name {
  position: static;
  display: inline-block;
  margin-bottom: 10px;
}

.dialogue-text {
  min-height: 42px;
  padding-right: 78px;
  font-size: 18px;
  line-height: 1.4;
}

.dialogue-choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.choice-button,
.dialogue-next {
  cursor: pointer;
  border: 2px solid #ffd36d;
  border-radius: 6px;
  color: #fffaf1;
  background: #17495a;
  font-weight: 800;
}

.choice-button {
  padding: 8px 10px;
  text-align: left;
}

.choice-button:hover,
.choice-button:focus-visible,
.dialogue-next:hover,
.dialogue-next:focus-visible {
  background: #1f6173;
  outline: none;
}

.choice-button.is-used,
.choice-button:disabled {
  cursor: default;
  border-color: rgba(255, 250, 241, 0.28);
  color: rgba(255, 250, 241, 0.52);
  background: rgba(255, 250, 241, 0.1);
}

.dialogue-next {
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 7px 10px;
}

.inventory-panel {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 51, 60, 0.42);
  backdrop-filter: blur(3px);
}

.inventory-window {
  width: min(900px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 48px));
  overflow: hidden;
  border: 3px solid #12333c;
  border-radius: 12px;
  color: #12333c;
  background: #fffaf1;
  box-shadow: 0 28px 70px rgba(18, 51, 60, 0.34);
}

.inventory-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 2px solid rgba(18, 51, 60, 0.12);
  background: linear-gradient(90deg, #fffaf1, #e7f2ee);
}

.inventory-header p {
  margin: 0 0 4px;
  color: #ef4a23;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inventory-header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 0.9;
}

.inventory-close {
  cursor: pointer;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  color: #fffaf1;
  background: #ef4a23;
  font-weight: 900;
}

.inventory-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(240px, 1fr);
  gap: 14px;
  max-height: calc(min(760px, calc(100vh - 48px)) - 94px);
  overflow: auto;
  padding: 16px;
}

.inventory-card {
  min-height: 170px;
  padding: 14px;
  border: 1px solid rgba(18, 51, 60, 0.14);
  border-radius: 8px;
  background: rgba(255, 247, 229, 0.86);
}

.inventory-card-wide {
  grid-column: 1 / -1;
}

.inventory-card h3 {
  margin: 0 0 12px;
  color: #00785b;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inventory-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 10px;
  border: 1px solid rgba(18, 51, 60, 0.12);
  border-radius: 8px;
  background: #fffaf1;
  font-weight: 900;
}

.inventory-list img {
  width: 34px;
  height: 38px;
  object-fit: contain;
}

.inventory-empty {
  color: rgba(18, 51, 60, 0.62);
  font-style: italic;
  font-weight: 700;
}

.stat-list {
  display: grid;
  gap: 12px;
}

.stat-meter {
  display: grid;
  gap: 6px;
}

.stat-meter .meter-header {
  color: #12333c;
}

.stat-meter .meter-header strong {
  color: #17495a;
}

.stat-meter .meter-track {
  border-color: rgba(18, 51, 60, 0.18);
  background: rgba(18, 51, 60, 0.08);
}

.relationship-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}

.relationship-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(18, 51, 60, 0.12);
  border-radius: 6px;
  background: #fffaf1;
  font-size: 12px;
  font-weight: 800;
}

.relationship-row strong {
  color: #ef4a23;
}

.chapter-toast {
  position: fixed;
  left: 50%;
  top: 22px;
  z-index: 25;
  display: grid;
  gap: 3px;
  min-width: 280px;
  padding: 12px 16px;
  border: 3px solid #1f293c;
  border-radius: 8px;
  color: #1f293c;
  background: #f2c66d;
  text-align: center;
  transform: translateX(-50%);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

.chapter-toast span,
.chapter-toast small {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.chapter-toast strong {
  font-size: 16px;
}

.street-road-cover {
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.04) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.035) 0 1px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.08)),
    #2f3332;
}

.street-moving-taxi {
  position: relative;
  background: url("assets/vehicles/taxi-top.png") center / contain no-repeat;
  image-rendering: auto;
  animation: taxiDriveToLisbon 6.2s linear 250ms forwards;
}

.street-moving-taxi::before {
  content: none;
}

.street-moving-taxi::after {
  content: none;
}

@keyframes taxiDriveToLisbon {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  92% {
    opacity: 1;
    transform: translateY(-805px) scale(0.8);
  }

  100% {
    opacity: 0;
    transform: translateY(-900px) scale(0.76);
  }
}

.hidden {
  display: none !important;
}

@media (max-width: 1080px) {
  .cutscene {
    grid-template-columns: 1fr;
    padding: 16px 8px 18px;
  }

  .cutscene-header {
    align-items: flex-start;
    gap: 12px;
  }

  .cutscene-spacer {
    display: none;
  }

  .cutscene-frame {
    grid-column: 1;
  }

  .site-header {
    align-items: flex-start;
    gap: 12px;
    padding: 20px 28px;
  }

  .header-meta {
    justify-items: start;
  }

  .brand-mark span {
    font-size: clamp(30px, 7vw, 42px);
  }

  .brand-mark small {
    font-size: 10px;
  }

  .shell {
    grid-template-columns: 1fr;
  }

  .walk-only-shell {
    grid-template-columns: 1fr;
    width: min(960px, calc(100vw - 32px));
  }

  .objective-hud {
    position: static;
  }

  .objective-button {
    width: min(360px, 100%);
  }

  .journal {
    min-height: auto;
  }
}

@media (max-width: 840px) {
  .shell {
    width: min(100vw - 16px, 720px);
    margin: 8px auto;
  }

  .top-bar,
  .bottom-hud {
    align-items: flex-start;
    flex-direction: column;
  }

  .quest-card {
    min-width: 0;
    width: 100%;
  }

  .viewport-wrap {
    padding: 0;
    overflow-x: auto;
    justify-content: start;
  }

  .dialogue.has-portrait {
    padding-left: 18px;
    padding-top: 144px;
  }

  .dialogue-portrait {
    left: 126px;
    top: 18px;
    bottom: auto;
    width: 96px;
    height: 96px;
  }

  .dialogue-name {
    left: 18px;
    top: 58px;
    bottom: auto;
    width: 100px;
  }
}
