:root {
  --screen: #142920;
  --screen-dark: #0b1816;
  --cream: #e7d68d;
  --gold: #d2aa4d;
  --green: #9cae72;
  --rose: #b77874;
  --ink: #11151e;
  --panel: rgba(13, 19, 22, 0.92);
  --line: rgba(211, 200, 139, 0.48);
  --cursor-passive: url("assets/cursors/cursor-passive-3x.png") 12 6, auto;
  --cursor-active: url("assets/cursors/cursor-active-3x.png") 12 6, pointer;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  cursor: var(--cursor-passive);
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  color: #efe8bd;
  background: #11141c;
}

.css-fallback {
  display: none;
}

button,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  cursor: var(--cursor-active);
}

.site {
  position: relative;
  display: grid !important;
  place-items: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #11141c;
}

.site::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #11141c url("assets/sprites/bg-wide-436x216.png") center / cover no-repeat;
  image-rendering: pixelated;
  pointer-events: none;
}

.site::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 50;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.16) 0 1px,
      rgba(255, 255, 255, 0.012) 1px 2px,
      transparent 2px 4px
    );
  opacity: 1;
  transition: opacity 320ms steps(4, end);
  pointer-events: none;
}

.site:has(.stage.is-booted)::after {
  opacity: 0;
}

.stage {
  position: relative;
  z-index: 1;
  width: min(100vw, 177.7778vh);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #11141c;
  image-rendering: pixelated;
}

.stage:not(.is-booted) {
  overflow: visible;
}

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  color: #f6edbb;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 50%, rgba(0, 0, 0, 0.05) 50%) 0 0 / 100% 6px,
    rgba(10, 13, 20, 0.94);
  transition: opacity 320ms steps(4, end), visibility 320ms steps(1, end);
}

.stage.is-booted .boot-screen {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.boot-screen__panel {
  display: grid;
  gap: 12px;
  width: min(38vw, 420px);
  min-width: 280px;
  padding: 18px;
  border: 3px solid #151a1a;
  background: rgba(20, 41, 32, 0.96);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.36);
  text-shadow: 2px 2px 0 #101415;
}

.boot-screen__panel strong {
  color: #f3e997;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1;
}

.boot-screen__panel span {
  font-size: clamp(12px, 1vw, 16px);
}

.boot-screen__bar {
  height: 18px;
  padding: 3px;
  border: 2px solid rgba(231, 214, 141, 0.52);
  background: rgba(8, 14, 14, 0.7);
}

.boot-screen__bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: #d8c978;
  transform-origin: left center;
  animation: boot-load 1100ms steps(8, end) both;
}

@keyframes boot-load {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  pointer-events: none;
  user-select: none;
}

.prop {
  position: absolute;
  image-rendering: pixelated;
  pointer-events: none;
  user-select: none;
}

.layer--bg {
  z-index: 1;
  object-fit: cover;
}

.layer--mouse {
  z-index: 2;
}

.layer--monitor {
  z-index: 3;
}

.screen {
  z-index: 4;
}

.layer--monitor-front {
  z-index: 5;
}

.layer--tablet {
  z-index: 6;
}

.layer--gamepad {
  z-index: 6;
}

.layer--speaker {
  z-index: 7;
}

.layer--gem {
  z-index: 7;
}

.layer--coffee {
  z-index: 8;
}

.stage.is-coffee-active .layer--coffee {
  animation: item-bump 260ms steps(3, end);
}

.stage.is-gem-active .layer--gem {
  animation: item-bump 260ms steps(3, end);
  filter: brightness(1.22) drop-shadow(0 0 10px rgba(70, 220, 255, 0.46));
}

.stage.is-tablet-active .layer--tablet {
  animation: tablet-tap 340ms steps(4, end);
  filter: brightness(1.15);
}

.stage.is-gamepad-active .layer--gamepad {
  animation: tablet-tap 340ms steps(4, end);
  filter: brightness(1.15);
}

.stage:has(.hit--coffee:hover) .layer--coffee,
.stage:has(.hit--coffee:focus-visible) .layer--coffee {
  filter: brightness(1.18) drop-shadow(0 0 8px rgba(231, 214, 141, 0.36));
}

.stage:has(.hit--speaker:hover) .layer--speaker,
.stage:has(.hit--speaker:focus-visible) .layer--speaker {
  filter: brightness(1.18) drop-shadow(0 0 8px rgba(216, 201, 120, 0.38));
}

.stage:has(.hit--tablet:hover) .layer--tablet,
.stage:has(.hit--tablet:focus-visible) .layer--tablet {
  filter: brightness(1.16) drop-shadow(0 0 9px rgba(154, 174, 114, 0.36));
}

.stage:has(.hit--gamepad:hover) .layer--gamepad,
.stage:has(.hit--gamepad:focus-visible) .layer--gamepad {
  filter: brightness(1.16) drop-shadow(0 0 9px rgba(154, 174, 114, 0.36));
}

.stage:has(.hit--gem:hover) .layer--gem,
.stage:has(.hit--gem:focus-visible) .layer--gem {
  filter: brightness(1.22) drop-shadow(0 0 10px rgba(70, 220, 255, 0.46));
}

.prop--rope {
  z-index: 9;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(0);
}

.layer--lamp {
  z-index: 10;
}

.layer--left-books {
  z-index: 11;
}

.layer--light {
  z-index: 12;
  mix-blend-mode: screen;
  opacity: 0.64;
  transition: opacity 180ms steps(2, end);
}

.layer--mouse {
  --mouse-x: 0px;
  --mouse-y: 0px;
  transform: translate(var(--mouse-x), var(--mouse-y));
  transition: transform 80ms steps(2, end);
}

.stage.is-lamp-off .layer--light {
  opacity: 0;
}

.stage.is-rope-pulling .prop--rope {
  animation: rope-pull 240ms steps(4, end);
}

.stage.is-speaker-on .layer--speaker {
  filter: drop-shadow(0 0 7px rgba(216, 201, 120, 0.32));
}

.stage.is-speaker-on:has(.hit--speaker:hover) .layer--speaker,
.stage.is-speaker-on:has(.hit--speaker:focus-visible) .layer--speaker {
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(216, 201, 120, 0.48));
}

.stage:has(.hit--lamp-cord:hover) .prop--rope,
.stage:has(.hit--lamp-cord:focus-visible) .prop--rope,
.stage:has(.hit--lamp-cord:hover) .layer--lamp,
.stage:has(.hit--lamp-cord:focus-visible) .layer--lamp {
  filter: brightness(1.14) drop-shadow(0 0 7px rgba(231, 214, 141, 0.32));
}

.stage.is-screen-wake .screen {
  animation: screen-wake 220ms steps(3, end);
}

@keyframes rope-pull {
  0% {
    transform: translateY(0);
  }

  42% {
    transform: translateY(1.15%);
  }

  68% {
    transform: translateY(0.38%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes item-bump {
  0% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-0.9%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes tablet-tap {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(0.45%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes screen-wake {
  0% {
    filter: brightness(1);
  }

  45% {
    filter: brightness(1.35);
  }

  100% {
    filter: brightness(1);
  }
}

.screen {
  position: absolute;
  left: 32.55%;
  top: 17.8%;
  width: 35.3%;
  height: 41.8%;
  overflow: hidden;
  color: #f6edbb;
  background:
    radial-gradient(circle at 50% 26%, rgba(167, 197, 134, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(25, 50, 39, 0.62), rgba(12, 25, 23, 0.94));
  border-radius: 3.2% / 5%;
  box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.42);
  transition: left 180ms steps(4, end), top 180ms steps(4, end), width 180ms steps(4, end), height 180ms steps(4, end);
}

.screen::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 13.6%;
  border-top: 2px solid rgba(159, 183, 131, 0.34);
  background:
    linear-gradient(180deg, rgba(13, 25, 22, 0.82), rgba(7, 14, 14, 0.94)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 3px);
  box-shadow: inset 0 1px 0 rgba(231, 214, 141, 0.08);
  pointer-events: none;
}

.screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(2, 7, 8, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms steps(4, end);
}

.stage.has-open-window .screen::after {
  opacity: 1;
}

.screen__scan {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.025) 50%, rgba(0, 0, 0, 0.04) 50%) 0 0 / 100% 6px;
  pointer-events: none;
}

.screen-focus-toggle {
  position: absolute;
  right: 4.6%;
  bottom: 5.3%;
  z-index: 1;
  display: inline-grid;
  grid-template-columns: 14px auto;
  align-items: center;
  gap: 5px;
  min-width: 76px;
  height: 26px;
  padding: 0 7px;
  border: 1px solid rgba(231, 214, 141, 0.52);
  color: #f3e997;
  background: rgba(9, 15, 16, 0.78);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.24);
  font-size: clamp(8px, 0.66vw, 10px);
  font-weight: 900;
  cursor: var(--cursor-active);
}

.screen-focus-toggle__icon {
  position: relative;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  box-shadow: inset 0 0 0 2px rgba(9, 15, 16, 0.62);
}

.screen-focus-toggle__icon::before,
.screen-focus-toggle__icon::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-color: currentColor;
}

.screen-focus-toggle__icon::before {
  left: -4px;
  top: -4px;
  border-left: 2px solid;
  border-top: 2px solid;
}

.screen-focus-toggle__icon::after {
  right: -4px;
  bottom: -4px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.screen-focus-toggle__label {
  line-height: 1;
}

.screen-focus-toggle:hover,
.screen-focus-toggle:focus-visible {
  outline: none;
  background: rgba(231, 214, 141, 0.18);
}

.stage.is-monitor-focus .screen {
  left: 2.5%;
  top: 2.5%;
  z-index: 65;
  width: 95%;
  height: 95%;
  border: 3px solid rgba(231, 214, 141, 0.52);
  border-radius: 0;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.38), inset 0 0 34px rgba(0, 0, 0, 0.42);
}

.stage.is-monitor-exiting .screen {
  transition: none;
}

.stage.is-monitor-focus .layer--monitor-front {
  z-index: 3;
}

.stage.is-monitor-focus .screen-focus-toggle {
  right: 2.4%;
  bottom: 4.3%;
  grid-template-columns: 20px auto;
  gap: 8px;
  min-width: 108px;
  height: 44px;
  padding: 0 12px;
  font-size: 14px;
}

.stage.is-monitor-focus .screen-focus-toggle__icon {
  width: 17px;
  height: 17px;
}

.stage.is-monitor-focus .screen::before {
  height: 16%;
}

.stage.is-monitor-focus .desktop-folders {
  left: 6%;
  top: 8%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-items: center;
  gap: clamp(18px, 3vw, 56px);
  width: 88%;
}

.stage.is-monitor-focus .desktop-folders .folder {
  grid-template-rows: 82px 34px;
  width: 150px;
  height: 128px;
  padding: 13px 10px 10px;
}

.stage.is-monitor-focus .desktop-folders .folder__shape {
  width: 68px;
  height: 48px;
  border-width: 4px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.34), inset -7px -6px 0 rgba(77, 57, 28, 0.25);
  transform: translateY(-12px);
}

.stage.is-monitor-focus .desktop-folders .folder__shape::before {
  left: -4px;
  top: -16px;
  width: 36px;
  height: 16px;
  border-width: 4px;
  border-bottom: 0;
}

.stage.is-monitor-focus .desktop-folders .folder > span:last-child {
  font-size: clamp(14px, 1.18vw, 20px);
}

.stage.is-monitor-focus .desktop-folders .faq-shortcut__frame {
  width: 68px;
  height: 68px;
  border-width: 4px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.34), inset -7px -7px 0 rgba(77, 57, 28, 0.2);
  transform: translateY(-12px);
}

.stage.is-monitor-focus .desktop-folders .contact-shortcut__frame {
  width: 68px;
  height: 68px;
  border-width: 4px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.34), inset -7px -7px 0 rgba(77, 57, 28, 0.22);
  transform: translateY(-12px);
}

.stage.is-monitor-focus .desktop-folders .services-shortcut__frame {
  width: 68px;
  height: 68px;
  border-width: 4px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.34), inset -7px -7px 0 rgba(61, 78, 48, 0.26);
  transform: translateY(-12px);
}

.stage.is-monitor-focus .desktop-folders .faq-shortcut__frame span {
  font-size: 42px;
}

.stage.is-monitor-focus .desktop-folders .contact-shortcut__frame span {
  font-size: 32px;
}

.stage.is-monitor-focus .desktop-folders .services-shortcut__frame span {
  font-size: 38px;
}

.stage.is-monitor-focus .desktop-assistant {
  --assistant-size: 192px;
  --assistant-center-offset: 96px;
  left: var(--assistant-left);
  bottom: 16%;
  width: 208px;
  height: 228px;
}

.stage.is-monitor-focus .desktop-assistant img {
  width: 192px;
  height: 192px;
}

.stage.is-monitor-focus .desktop-assistant__bubble {
  min-width: 128px;
  font-size: clamp(10px, 0.78vw, 13px);
}

.stage.is-monitor-focus .featured-works {
  left: 8%;
  bottom: 12%;
  width: 66%;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
}

.stage.is-monitor-focus .featured-card {
  min-height: 86px;
}

.stage.is-monitor-focus .now-playing {
  right: 14.5%;
  bottom: 4%;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 11px;
  min-width: 390px;
  min-height: 48px;
  padding: 5px 13px;
}

.stage.is-monitor-focus .now-playing::before {
  width: 26px;
  height: 26px;
}

.stage.is-monitor-focus .now-playing strong {
  font-size: clamp(16px, 1.18vw, 21px);
}

.stage.is-monitor-focus .now-playing__meta span {
  font-size: 11px;
}

.stage.is-monitor-focus .now-playing__controls {
  grid-template-columns: repeat(3, 32px);
  gap: 5px;
}

.stage.is-monitor-focus .now-playing__controls button {
  width: 32px;
  height: 32px;
  font-size: 12px;
}

.stage.is-monitor-focus .desktop-status {
  left: 4.8%;
  bottom: 6.2%;
  width: 37%;
  padding-left: 18px;
  font-size: clamp(13px, 0.94vw, 17px);
}

.stage.is-monitor-focus .desktop-status::before {
  width: 9px;
  height: 9px;
}

.stage.is-monitor-focus .achievements-button {
  left: 43.5%;
  bottom: 4.5%;
  grid-template-columns: 26px auto;
  gap: 7px;
  min-width: 64px;
  height: 42px;
  padding: 0 10px;
}

.stage.is-monitor-focus .achievements-button > span {
  font-size: 22px;
}

.stage.is-monitor-focus .achievements-button small {
  font-size: 13px;
}

.stage.is-monitor-focus .copy-email {
  display: inline-grid;
  grid-template-columns: 16px auto;
  place-items: center;
  gap: 8px;
  width: auto;
  min-width: 118px;
  padding: 8px 10px;
}

.stage.is-monitor-focus .copy-email__label {
  display: inline;
}

.stage.is-monitor-focus .folder-grid {
  grid-template-columns: repeat(2, 214px);
  column-gap: clamp(96px, 15vw, 210px);
  row-gap: 30px;
  padding: 18px 22px 22px;
}

.stage.is-monitor-focus .folder-grid .folder {
  grid-template-rows: 90px 62px;
  width: 214px;
  height: 166px;
  padding: 14px 12px 12px;
}

.stage.is-monitor-focus .folder-grid .folder__shape {
  width: 80px;
  height: 56px;
  border-width: 4px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.34), inset -8px -7px 0 rgba(77, 57, 28, 0.25);
}

.stage.is-monitor-focus .folder-grid .folder__shape::before {
  left: -4px;
  top: -18px;
  width: 42px;
  height: 18px;
  border-width: 4px;
  border-bottom: 0;
}

.stage.is-monitor-focus .folder-grid .folder > span:last-child {
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.08;
}

.desktop-folders,
.featured-works,
.desktop-assistant,
.desktop-status,
.achievements-button,
.achievement-toast,
.now-playing,
.window,
.gm-popup {
  position: absolute;
}

.desktop-folders {
  left: 5.5%;
  top: 6.8%;
  display: grid;
  grid-template-columns: repeat(5, 118px);
  justify-content: space-between;
  width: 89%;
  z-index: 2;
}

.folder {
  position: relative;
  display: grid;
  grid-template-rows: 64px 22px;
  align-items: start;
  justify-items: center;
  gap: 0.28rem;
  min-width: 0;
  width: 118px;
  height: 102px;
  padding: 10px 8px 8px;
  border: 1px solid transparent;
  color: #f6edbb;
  background: transparent;
  text-align: center;
  text-shadow: 2px 2px 0 #101415;
  cursor: var(--cursor-active);
}

.folder::after {
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 54px;
  height: 3px;
  background: rgba(0, 0, 0, 0.28);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 120ms steps(2, end);
  content: "";
}

.folder * {
  cursor: var(--cursor-active);
}

.folder:hover,
.folder:focus-visible {
  outline: none;
  border-color: rgba(231, 214, 141, 0.5);
  background: rgba(231, 214, 141, 0.08);
  box-shadow: inset 0 0 0 1px rgba(231, 214, 141, 0.18);
}

.folder:hover::after,
.folder:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.folder:hover > :first-child,
.folder:focus-visible > :first-child {
  animation: folder-idle-bounce 260ms steps(3, end);
}

@keyframes folder-idle-bounce {
  0%,
  100% {
    translate: 0 0;
  }

  48% {
    translate: 0 -4px;
  }
}

.folder__shape {
  position: relative;
  align-self: end;
  width: 54px;
  height: 38px;
  border: 3px solid #151a1a;
  background: var(--gold);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34), inset -6px -5px 0 rgba(77, 57, 28, 0.25);
  transform: translateY(-10px);
}

.folder__shape::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -13px;
  width: 29px;
  height: 13px;
  border: 3px solid #151a1a;
  border-bottom: 0;
  background: inherit;
}

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

.folder__shape--rose {
  background: var(--rose);
}

.ui-icon {
  display: block;
  align-self: end;
  width: 54px;
  height: 54px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  image-rendering: pixelated;
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.34));
  transform: translateY(-10px);
}

.ui-icon--pixel-art {
  background-image: url("assets/ui-icons/pixel-art.png");
}

.ui-icon--game-dev {
  background-image: url("assets/ui-icons/game-dev.png");
}

.ui-icon--about {
  background-image: url("assets/ui-icons/about.png");
}

.ui-icon--contact {
  background-image: url("assets/ui-icons/contact.png");
}

.ui-icon--services {
  background-image: url("assets/ui-icons/services.png");
}

.ui-icon--pfp {
  background-image: url("assets/ui-icons/pfp.png");
}

.ui-icon--community-art {
  background-image: url("assets/ui-icons/community-art.png");
}

.ui-icon--project-fan-art {
  background-image: url("assets/ui-icons/project-fan-art.png");
}

.ui-icon--original-art {
  background-image: url("assets/ui-icons/original-art.png");
}

.folder:hover .ui-icon,
.folder:focus-visible .ui-icon {
  filter: brightness(1.14) drop-shadow(0 0 7px rgba(231, 214, 141, 0.35)) drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.34));
}

.stage.is-monitor-focus .desktop-folders .ui-icon {
  width: 68px;
  height: 68px;
  transform: translateY(-12px);
}

.folder-grid .ui-icon {
  width: 66px;
  height: 66px;
  transform: translateY(-6px);
}

.stage.is-monitor-focus .folder-grid .ui-icon {
  width: 80px;
  height: 80px;
  transform: translateY(-6px);
}

.faq-shortcut__frame {
  position: relative;
  display: grid;
  align-self: end;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid #151a1a;
  background: #d8c978;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34), inset -6px -6px 0 rgba(77, 57, 28, 0.2);
  transform: translateY(-10px);
}

.faq-shortcut__frame::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: -10px;
  width: 12px;
  height: 12px;
  border-right: 3px solid #151a1a;
  border-bottom: 3px solid #151a1a;
  background: inherit;
  transform: rotate(45deg);
}

.faq-shortcut__frame span {
  color: #151a1a;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.22);
}

.shortcut-faq:hover .faq-shortcut__frame,
.shortcut-faq:focus-visible .faq-shortcut__frame {
  filter: brightness(1.14) drop-shadow(0 0 7px rgba(231, 214, 141, 0.35));
}

.contact-shortcut__frame {
  display: grid;
  align-self: end;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid #151a1a;
  background: #9fb783;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34), inset -6px -6px 0 rgba(48, 72, 50, 0.24);
  transform: translateY(-10px);
}

.services-shortcut__frame {
  display: grid;
  align-self: end;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid #151a1a;
  background: #6f8c74;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34), inset -6px -6px 0 rgba(48, 72, 50, 0.24);
  transform: translateY(-10px);
}

.services-shortcut__frame span {
  color: #151a1a;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.18);
}

.contact-shortcut__frame span {
  color: #151a1a;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.18);
}

.shortcut-contact:hover .contact-shortcut__frame,
.shortcut-contact:focus-visible .contact-shortcut__frame {
  filter: brightness(1.14) drop-shadow(0 0 7px rgba(147, 182, 108, 0.38));
}

.shortcut-services:hover .services-shortcut__frame,
.shortcut-services:focus-visible .services-shortcut__frame {
  filter: brightness(1.14) drop-shadow(0 0 7px rgba(147, 182, 108, 0.38));
}

.folder__status {
  position: absolute;
  right: 8px;
  top: 1px;
  min-width: 28px;
  padding: 3px 5px;
  border: 1px solid rgba(231, 214, 141, 0.34);
  color: #161b18;
  background: #d8c978;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.28);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: none;
}

.folder > span:last-child {
  width: 100%;
  font-size: clamp(10px, 0.95vw, 15px);
  line-height: 1.1;
  overflow-wrap: anywhere;
  align-self: start;
}

.featured-works {
  left: 7%;
  bottom: 14%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 9px;
  width: 64%;
}

.featured-works__title {
  grid-column: 1 / -1;
  color: rgba(243, 233, 151, 0.9);
  font-size: clamp(10px, 0.82vw, 13px);
  font-weight: 900;
  text-shadow: 2px 2px 0 #101415;
}

.featured-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 6px 7px;
  border: 1px solid rgba(231, 214, 141, 0.22);
  color: #f6edbb;
  background: rgba(9, 15, 16, 0.55);
  text-align: left;
  text-shadow: 2px 2px 0 #101415;
  cursor: var(--cursor-active);
}

.featured-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border: 2px solid #151a1a;
  background: rgba(0, 0, 0, 0.32);
  box-shadow:
    3px 3px 0 rgba(0, 0, 0, 0.35),
    inset -4px -4px 0 rgba(0, 0, 0, 0.2),
    inset 3px 3px 0 rgba(255, 255, 255, 0.08);
  image-rendering: pixelated;
}

.featured-icon::before,
.featured-icon::after {
  position: absolute;
  content: "";
}

.featured-icon--pfp {
  background: #20342a;
}

.featured-icon--pfp::before {
  left: 13px;
  top: 7px;
  width: 18px;
  height: 18px;
  background: #d8c978;
  box-shadow:
    0 0 0 3px #151a1a,
    inset -4px -4px 0 rgba(86, 68, 37, 0.34),
    6px 6px 0 rgba(0, 0, 0, 0.18);
}

.featured-icon--pfp::after {
  left: 8px;
  bottom: 7px;
  width: 28px;
  height: 12px;
  background: #9fb783;
  box-shadow:
    0 0 0 3px #151a1a,
    inset -5px -3px 0 rgba(61, 78, 48, 0.42);
}

.featured-icon--fanart {
  background: #321e25;
}

.featured-icon--fanart::before {
  left: 9px;
  top: 7px;
  width: 24px;
  height: 28px;
  background: #c37b7b;
  box-shadow:
    0 0 0 3px #151a1a,
    inset -6px -6px 0 rgba(97, 47, 58, 0.42);
}

.featured-icon--fanart::after {
  left: 23px;
  top: 8px;
  width: 5px;
  height: 5px;
  background: #f3e997;
  box-shadow:
    -9px 9px 0 #f3e997,
    8px 10px 0 #d8c978,
    -3px 21px 0 #f3e997;
}

.featured-icon--gamedev {
  background: #1b2730;
}

.featured-icon--gamedev::before {
  left: 6px;
  top: 15px;
  width: 31px;
  height: 16px;
  background: #9fb783;
  box-shadow:
    0 0 0 3px #151a1a,
    inset -6px -4px 0 rgba(61, 78, 48, 0.42);
}

.featured-icon--gamedev::after {
  left: 13px;
  top: 20px;
  width: 4px;
  height: 4px;
  background: #151a1a;
  box-shadow:
    -4px 0 0 #151a1a,
    4px 0 0 #151a1a,
    0 -4px 0 #151a1a,
    0 4px 0 #151a1a,
    15px -2px 0 #c37b7b,
    21px 2px 0 #d8c978;
}

.featured-icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;
}

.featured-icon::before,
.featured-icon::after {
  display: none;
}

.featured-icon--pfp {
  background-color: #17221f;
  background-image: url("assets/ui-icons/featured-pfp.png");
}

.featured-icon--fanart {
  background-color: #221a1d;
  background-image: url("assets/ui-icons/featured-fanart.png");
}

.featured-icon--gamedev {
  background-color: #172126;
  background-image: url("assets/ui-icons/featured-gamedev.png");
}

.featured-card__label {
  min-width: 0;
  font-size: clamp(9px, 0.78vw, 12px);
  font-weight: 900;
  line-height: 1.08;
}

.featured-card:hover,
.featured-card:focus-visible {
  outline: none;
  border-color: rgba(231, 214, 141, 0.52);
  background: rgba(231, 214, 141, 0.12);
  filter: brightness(1.1);
}

.desktop-assistant {
  --assistant-left: 8%;
  --assistant-size: 96px;
  --assistant-center-offset: 48px;
  left: var(--assistant-left);
  bottom: 13.6%;
  z-index: 1;
  display: grid;
  align-items: end;
  justify-items: center;
  width: 164px;
  height: 180px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: var(--cursor-active);
  image-rendering: pixelated;
  transform-origin: 50% calc(100% - var(--assistant-center-offset));
  transition:
    left var(--assistant-travel-time, 1800ms) linear,
    opacity 260ms steps(5, end),
    filter 360ms steps(7, end),
    transform 360ms steps(7, end);
}

.desktop-assistant *,
.desktop-assistant img {
  cursor: var(--cursor-active);
}

.desktop-assistant img {
  width: var(--assistant-size);
  height: var(--assistant-size);
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(4px 5px 0 rgba(0, 0, 0, 0.35));
  transition: filter 120ms steps(2, end);
}

.desktop-assistant::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: var(--assistant-size);
  aspect-ratio: 1;
  border: 5px dotted #e7d68d;
  border-left-color: #79b8a6;
  border-right-color: #bd735f;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.2) rotate(0deg);
}

.desktop-assistant.is-vanishing {
  animation: assistant-vanish 420ms steps(8, end) forwards;
  pointer-events: none;
}

.desktop-assistant.is-vanishing::after {
  animation: assistant-vortex-out 420ms steps(8, end) forwards;
}

.desktop-assistant.is-gone {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.desktop-assistant.is-appearing {
  visibility: visible;
  animation: assistant-appear 480ms steps(9, end) both;
}

.desktop-assistant.is-appearing::after {
  animation: assistant-vortex-in 480ms steps(9, end) both;
}

.desktop-assistant.is-facing-left img {
  transform: scaleX(-1);
}

.desktop-assistant.is-looking-up img {
  transform: none;
}

.desktop-assistant__bubble {
  position: absolute;
  left: 58%;
  bottom: calc(var(--assistant-size) + 6px);
  min-width: 96px;
  padding: 5px 7px;
  border: 1px solid rgba(231, 214, 141, 0.44);
  color: #f3e997;
  background:
    linear-gradient(180deg, rgba(29, 43, 35, 0.82), rgba(7, 13, 14, 0.92)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 3px);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.28);
  font-size: clamp(8px, 0.72vw, 11px);
  font-weight: 900;
  line-height: 1.12;
  text-align: left;
  text-shadow: 2px 2px 0 #101415;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 120ms steps(2, end), transform 120ms steps(2, end);
}

.desktop-assistant:hover,
.desktop-assistant:focus-visible {
  outline: none;
}

.desktop-assistant:not(.is-sleeping):not(.is-falling-asleep):hover img,
.desktop-assistant:not(.is-sleeping):not(.is-falling-asleep):focus-visible img {
  filter: brightness(1.14) drop-shadow(4px 5px 0 rgba(0, 0, 0, 0.35));
  transform: translateY(-2px);
}

.desktop-assistant:hover .desktop-assistant__bubble,
.desktop-assistant:focus-visible .desktop-assistant__bubble,
.desktop-assistant.is-speaking .desktop-assistant__bubble {
  opacity: 1;
  transform: translateY(0);
}

.desktop-assistant.is-walking .desktop-assistant__bubble {
  opacity: 0;
}

.desktop-assistant.is-falling-asleep .desktop-assistant__bubble,
.desktop-assistant.is-sleeping .desktop-assistant__bubble,
.desktop-assistant.is-painting .desktop-assistant__bubble {
  opacity: 0;
}

.desktop-assistant.is-sleeping img {
  filter: brightness(0.82) drop-shadow(4px 5px 0 rgba(0, 0, 0, 0.35));
}

.desktop-assistant.is-sleeping {
  transition:
    opacity 260ms steps(5, end),
    filter 360ms steps(7, end),
    transform 360ms steps(7, end);
}

.desktop-assistant.is-questioning .desktop-assistant__bubble,
.stage.is-monitor-focus .desktop-assistant.is-questioning .desktop-assistant__bubble {
  width: max-content;
  min-width: 0;
  padding: 4px 7px;
  text-align: center;
}

@keyframes assistant-vanish {
  0% {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1) rotate(0deg);
  }

  55% {
    opacity: 1;
    filter: brightness(1.8);
  }

  100% {
    opacity: 0;
    filter: brightness(2.4);
    transform: scale(0.05) rotate(180deg);
  }
}

@keyframes assistant-appear {
  0% {
    opacity: 0;
    filter: brightness(2.4);
    transform: scale(0.05) rotate(-180deg);
  }

  55% {
    opacity: 1;
    filter: brightness(1.8);
  }

  100% {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1) rotate(0deg);
  }
}

@keyframes assistant-vortex-out {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.15) rotate(0deg);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.15) rotate(540deg);
  }
}

@keyframes assistant-vortex-in {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(1.15) rotate(-540deg);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) scale(0.15) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .desktop-assistant {
    transition: none;
  }

  .desktop-assistant.is-vanishing,
  .desktop-assistant.is-appearing,
  .desktop-assistant.is-vanishing::after,
  .desktop-assistant.is-appearing::after {
    animation-duration: 1ms;
  }
}

.now-playing {
  right: 17.2%;
  bottom: 2.7%;
  z-index: 1;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-width: 224px;
  min-height: 30px;
  padding: 3px 8px 3px 11px;
  border: 0;
  border-left: 1px solid rgba(159, 183, 131, 0.28);
  background: transparent;
  box-shadow: none;
  text-shadow: 2px 2px 0 #101415;
}

.now-playing::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid rgba(159, 183, 131, 0.3);
  background:
    linear-gradient(#d8c978, #d8c978) 3px 9px / 2px 4px no-repeat,
    linear-gradient(#9fb783, #9fb783) 7px 5px / 2px 8px no-repeat,
    linear-gradient(#d8c978, #d8c978) 11px 7px / 2px 6px no-repeat,
    rgba(10, 18, 17, 0.72);
  box-shadow: none;
  image-rendering: pixelated;
}

.now-playing__meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.now-playing__meta span {
  color: rgba(231, 223, 177, 0.52);
  font-size: clamp(7px, 0.58vw, 9px);
  font-weight: 900;
  text-transform: uppercase;
}

.now-playing__meta strong {
  min-width: 0;
  overflow: hidden;
  color: #f3e997;
  font-size: clamp(10px, 0.86vw, 13px);
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-playing__controls {
  display: grid;
  grid-template-columns: repeat(3, 21px);
  gap: 3px;
}

.now-playing__controls button {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  padding: 0;
  border: 1px solid rgba(231, 214, 141, 0.38);
  color: #f3e997;
  background: rgba(8, 14, 14, 0.82);
  box-shadow: none;
  font: inherit;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  cursor: var(--cursor-active);
}

.now-playing__controls button:hover,
.now-playing__controls button:focus-visible {
  outline: none;
  border-color: rgba(231, 214, 141, 0.58);
  background: rgba(231, 214, 141, 0.12);
}

.desktop-status {
  left: 6.2%;
  bottom: 4.6%;
  z-index: 1;
  width: 38%;
  padding-left: 13px;
  overflow: hidden;
  color: rgba(231, 223, 177, 0.72);
  font-size: clamp(8px, 0.72vw, 11px);
  line-height: 1.15;
  text-overflow: ellipsis;
  text-shadow: 2px 2px 0 #101415;
  white-space: nowrap;
}

.desktop-status::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #91c778;
  box-shadow: 0 0 5px rgba(145, 199, 120, 0.38);
  transform: translateY(-50%);
}

.achievements-button {
  left: 45.5%;
  bottom: 3.2%;
  z-index: 1;
  display: grid;
  grid-template-columns: 18px auto;
  place-items: center;
  gap: 4px;
  min-width: 38px;
  height: 28px;
  padding: 0 6px;
  border: 1px solid rgba(159, 183, 131, 0.3);
  color: #f3e997;
  background: rgba(8, 14, 14, 0.42);
  cursor: var(--cursor-active);
}

.achievements-button > span {
  font-size: 15px;
  line-height: 1;
}

.achievements-button small {
  color: rgba(231, 223, 177, 0.72);
  font-size: 9px;
  font-weight: 900;
}

.achievements-button:hover,
.achievements-button:focus-visible {
  outline: none;
  border-color: rgba(231, 214, 141, 0.58);
  background: rgba(231, 214, 141, 0.1);
}

.achievement-toast {
  position: fixed;
  right: clamp(14px, 1.8vw, 32px);
  bottom: clamp(14px, 1.8vw, 32px);
  z-index: 120;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: min(360px, calc(100vw - 28px));
  min-height: 70px;
  padding: 13px 16px;
  border: 2px solid rgba(231, 214, 141, 0.48);
  color: #f6edbb;
  background: rgba(8, 15, 15, 0.94);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.38);
  animation: achievement-in 280ms steps(6, end);
  pointer-events: none;
}

.achievement-toast[hidden] {
  display: none;
}

.achievement-toast > span {
  color: #e7d68d;
  font-size: 31px;
  text-align: center;
}

.achievement-toast div {
  display: grid;
  gap: 2px;
}

.achievement-toast small {
  color: rgba(159, 183, 131, 0.8);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.achievement-toast strong {
  font-size: 16px;
  line-height: 1.12;
}

.folder.is-guide-highlight {
  filter: brightness(1.32);
  outline: 2px solid rgba(231, 214, 141, 0.82);
  outline-offset: 5px;
  animation: guide-pulse 700ms steps(4, end) infinite;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.achievement-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 10px;
  border: 1px solid rgba(159, 183, 131, 0.28);
  background: rgba(19, 31, 29, 0.68);
}

.achievement-card > span {
  color: #e7d68d;
  font-size: 27px;
  text-align: center;
}

.achievement-card div {
  display: grid;
  gap: 4px;
}

.achievement-card strong {
  font-size: 13px;
}

.achievement-card small {
  color: rgba(231, 223, 177, 0.68);
  line-height: 1.25;
}

.achievement-card.is-locked {
  filter: grayscale(1);
  opacity: 0.42;
}

@media (max-width: 720px) {
  .achievement-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes achievement-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes guide-pulse {
  50% {
    outline-color: rgba(121, 184, 166, 0.82);
  }
}

.window {
  left: 5.5%;
  top: 6%;
  z-index: 3;
  width: 89%;
  height: 85%;
  border: 2px solid var(--line);
  background: var(--panel);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.34);
  transform: translate(var(--window-x, 0px), var(--window-y, 0px));
}

.gm-popup {
  z-index: 5;
}

.window[hidden] {
  display: none;
}

.window__bar {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px 32px;
  align-items: center;
  min-height: 34px;
  border-bottom: 2px solid rgba(231, 214, 141, 0.28);
  background: rgba(42, 55, 40, 0.95);
  cursor: var(--cursor-active);
  user-select: none;
}

.window.is-dragging .window__bar {
  cursor: var(--cursor-active);
}

.window__meta {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.window__title {
  min-width: 0;
  overflow: hidden;
  font-size: clamp(12px, 1.05vw, 16px);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window__path {
  min-width: 0;
  overflow: hidden;
  color: rgba(246, 237, 187, 0.58);
  font-size: clamp(9px, 0.72vw, 11px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window__back,
.window__minimize,
.window__close {
  width: 26px;
  height: 26px;
  margin: 3px;
  border: 1px solid rgba(231, 214, 141, 0.45);
  color: #f6edbb;
  background: rgba(10, 18, 17, 0.76);
  cursor: var(--cursor-active);
}

.window__back:disabled {
  opacity: 0.28;
  cursor: var(--cursor-passive);
}

.window__body {
  height: calc(100% - 58px);
  padding: clamp(10px, 1vw, 18px);
  overflow: auto;
  scrollbar-color: #d8c978 rgba(9, 15, 16, 0.8);
  scrollbar-width: thin;
}

.window__body::-webkit-scrollbar {
  width: 18px;
  height: 18px;
}

.window__body::-webkit-scrollbar-track {
  border-left: 2px solid rgba(231, 214, 141, 0.34);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 50%, rgba(0, 0, 0, 0.08) 50%) 0 0 / 100% 4px,
    rgba(9, 15, 16, 0.82);
  box-shadow: inset 3px 0 0 rgba(0, 0, 0, 0.28);
}

.window__body::-webkit-scrollbar-thumb {
  min-height: 44px;
  border: 4px solid rgba(9, 15, 16, 0.82);
  background: #d8c978;
  box-shadow:
    inset -3px -3px 0 rgba(77, 57, 28, 0.32),
    inset 2px 2px 0 rgba(255, 255, 255, 0.18);
}

.window__body::-webkit-scrollbar-thumb:hover {
  background: #f3e997;
}

.window__body::-webkit-scrollbar-button {
  width: 18px;
  height: 18px;
  border-left: 2px solid rgba(231, 214, 141, 0.34);
  background:
    linear-gradient(135deg, transparent 0 38%, #d8c978 39% 61%, transparent 62%) center / 9px 9px no-repeat,
    rgba(19, 35, 28, 0.94);
}

.window__body::-webkit-scrollbar-button:vertical:increment {
  transform: rotate(180deg);
}

.window__body::-webkit-scrollbar-corner {
  background: rgba(9, 15, 16, 0.82);
}

.window__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 24px;
  padding: 0 9px;
  border-top: 1px solid rgba(231, 214, 141, 0.22);
  color: rgba(231, 223, 177, 0.72);
  background: rgba(8, 14, 14, 0.62);
  font-size: clamp(9px, 0.75vw, 12px);
}

.window__status-dot {
  width: 7px;
  height: 7px;
  background: #93b66c;
  box-shadow: 0 0 8px rgba(147, 182, 108, 0.72);
}

.window__body h1,
.window__body h2 {
  margin: 0 0 10px;
  color: #f3e997;
  font-size: clamp(18px, 1.8vw, 30px);
  line-height: 1.05;
}

.window__body p {
  margin: 0 0 12px;
  color: #e7dfb1;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.45;
}

.about-page {
  display: grid;
  gap: 12px;
}

.profile-hero {
  display: grid;
  grid-template-columns: max-content clamp(64px, 8vw, 112px);
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.profile-hero h1 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 42px);
}

.profile-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(231, 214, 141, 0.48);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.32);
  image-rendering: pixelated;
  object-fit: contain;
  transform: scaleX(-1);
}

.about-copy {
  display: grid;
  gap: 10px;
  padding: 12px 14px 14px;
  border-left: 3px solid rgba(231, 214, 141, 0.52);
  background: rgba(255, 255, 255, 0.04);
}

.about-copy strong,
.about-section-title {
  color: #f3e997;
  font-weight: 900;
}

.about-copy p {
  max-width: 68ch;
  margin: 0;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.about-points article {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 86px;
  padding: 9px;
  border: 1px solid rgba(231, 214, 141, 0.18);
  background: rgba(7, 14, 14, 0.34);
}

.about-points span {
  color: #f3e997;
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 900;
}

.about-points p {
  color: #e7dfb1;
  font-size: clamp(11px, 0.86vw, 14px);
  line-height: 1.34;
}

.about-section-title {
  margin-top: 2px;
}

.system-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.system-info--single {
  grid-template-columns: 1fr;
}

.system-info div {
  display: grid;
  gap: 3px;
  padding: 8px 10px;
  border: 1px solid rgba(147, 182, 108, 0.32);
  background: rgba(9, 15, 16, 0.48);
}

.system-info span {
  color: rgba(231, 223, 177, 0.58);
  font-size: clamp(8px, 0.68vw, 10px);
  font-weight: 900;
  letter-spacing: 0;
}

.system-info strong {
  color: #f3e997;
  font-size: clamp(10px, 0.82vw, 13px);
}

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

.folder-grid {
  display: grid;
  grid-template-columns: repeat(2, 178px);
  justify-content: center;
  column-gap: clamp(72px, 14vw, 170px);
  row-gap: 22px;
  padding: 12px 18px 18px;
}

.folder-grid .folder {
  grid-template-rows: 74px 48px;
  justify-self: center;
  width: 178px;
  height: 140px;
  padding: 12px 10px 10px;
}

.folder-grid .folder__shape {
  width: 66px;
  height: 46px;
  border-width: 4px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.34), inset -7px -6px 0 rgba(77, 57, 28, 0.25);
}

.folder-grid .folder__shape::before {
  left: -4px;
  top: -16px;
  width: 35px;
  height: 16px;
  border-width: 4px;
  border-bottom: 0;
}

.folder-grid .folder > span:last-child {
  font-size: clamp(13px, 1.18vw, 18px);
  line-height: 1.08;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}

.portfolio-sort {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin: 0 0 10px;
}

.portfolio-sort::before {
  content: "Sort";
  align-self: center;
  margin-right: 3px;
  color: rgba(231, 223, 177, 0.58);
  font-size: clamp(8px, 0.66vw, 10px);
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-sort button {
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid rgba(231, 214, 141, 0.34);
  color: #f6edbb;
  background: rgba(9, 15, 16, 0.7);
  font-size: clamp(9px, 0.75vw, 12px);
  font-weight: 900;
  cursor: var(--cursor-active);
}

.portfolio-sort button:hover,
.portfolio-sort button:focus-visible,
.portfolio-sort button.is-active {
  outline: none;
  color: #161b18;
  background: #d8c978;
}

.work-filter button {
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid rgba(231, 214, 141, 0.34);
  color: #f6edbb;
  background: rgba(9, 15, 16, 0.7);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.24);
  font-size: clamp(9px, 0.75vw, 12px);
  font-weight: 900;
  cursor: var(--cursor-active);
}

.work-filter button:hover,
.work-filter button:focus-visible,
.work-filter button.is-active {
  outline: none;
  color: #161b18;
  background: #d8c978;
}

.portfolio-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(231, 214, 141, 0.25);
  background: rgba(255, 255, 255, 0.045);
}

.portfolio-card.is-hidden {
  display: none;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  image-rendering: pixelated;
  background: rgba(8, 14, 14, 0.65);
  cursor: var(--cursor-active);
  transition: filter 120ms steps(2, end), transform 120ms steps(2, end);
}

.portfolio-card img:hover,
.portfolio-card img:focus-visible {
  outline: none;
  filter: brightness(1.12) drop-shadow(0 0 8px rgba(231, 214, 141, 0.28));
  transform: translateY(-2px);
}

.portfolio-card img.is-gif-preview {
  filter: saturate(0.88) brightness(0.94);
}

.portfolio-card img.is-gif-preview:hover,
.portfolio-card img.is-gif-preview:focus-visible,
.portfolio-card img.is-gif-preview.is-playing {
  filter: brightness(1.14) saturate(1.08) drop-shadow(0 0 8px rgba(231, 214, 141, 0.34));
}

.portfolio-card__body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px;
  color: #e7dfb1;
}

.portfolio-card__body strong {
  color: #f3e997;
}

.portfolio-card__actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.portfolio-card__body a,
.portfolio-card__details {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(231, 214, 141, 0.42);
  color: #f3e997;
  background: rgba(9, 15, 16, 0.78);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  font: inherit;
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 900;
  cursor: var(--cursor-active);
}

.portfolio-card__external {
  margin-left: auto;
  text-decoration: none;
}

.portfolio-card__external::after {
  content: ">";
  margin-left: 6px;
}

.portfolio-card__body a:hover,
.portfolio-card__body a:focus-visible,
.portfolio-card__details:hover,
.portfolio-card__details:focus-visible {
  outline: none;
  color: #161b18;
  background: #d8c978;
}

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

.game-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(280px, 1.3fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(231, 214, 141, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

.game-card--featured {
  background: linear-gradient(180deg, rgba(231, 214, 141, 0.075), rgba(255, 255, 255, 0.04));
}

.game-card__info {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
  color: #e7dfb1;
}

.game-card__logo {
  width: clamp(74px, 7vw, 112px);
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(231, 214, 141, 0.38);
  background: rgba(0, 0, 0, 0.28);
  image-rendering: pixelated;
  object-fit: contain;
}

.game-card__logo--wide {
  width: min(100%, 210px);
  aspect-ratio: 16 / 9;
  padding: 8px;
}

.game-card__info strong {
  display: block;
  color: #f3e997;
  font-size: clamp(15px, 1.3vw, 20px);
}

.game-card__meta {
  display: block;
  color: rgba(231, 223, 177, 0.72);
  font-size: clamp(10px, 0.78vw, 12px);
}

.game-card__info p {
  margin: 0;
}

.game-card__features {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 18px;
  color: #e7dfb1;
}

.game-card__result {
  padding: 7px 9px;
  border-left: 3px solid rgba(216, 201, 120, 0.9);
  color: #f3e997;
  background: rgba(216, 201, 120, 0.08);
  font-weight: 900;
}

.game-card__actions,
.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.game-card__actions a,
.game-card__actions button,
.case-actions a,
.case-actions button,
.game-card__play,
.case-play-link {
  display: inline-grid;
  grid-auto-flow: column;
  place-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(231, 214, 141, 0.42);
  color: #f3e997;
  background: rgba(9, 15, 16, 0.78);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  font: inherit;
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 900;
  text-decoration: none;
  cursor: var(--cursor-active);
}

.game-card__actions a:hover,
.game-card__actions a:focus-visible,
.game-card__actions button:hover,
.game-card__actions button:focus-visible,
.case-actions a:hover,
.case-actions a:focus-visible,
.case-actions button:hover,
.case-actions button:focus-visible,
.game-card__play:hover,
.game-card__play:focus-visible,
.case-play-link:hover,
.case-play-link:focus-visible {
  outline: none;
  color: #161b18;
  background: #d8c978;
}

.game-card__details {
  min-width: 118px;
  min-height: 38px;
  padding-inline: 16px;
  font-size: clamp(12px, 0.92vw, 15px);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.external-icon {
  position: relative;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-left-width: 1px;
  border-bottom-width: 1px;
}

.external-icon::before {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
}

.external-icon::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -1px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.game-card__trailer {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  border: 2px solid rgba(231, 214, 141, 0.28);
  background: rgba(0, 0, 0, 0.34);
}

.game-card__play {
  position: relative;
  width: fit-content;
  min-height: 34px;
  margin-left: 10px;
  padding-inline: 13px;
  background: rgba(216, 201, 120, 0.12);
}

.game-card__actions .game-card__play::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background: rgba(231, 214, 141, 0.46);
  box-shadow: 1px 0 0 rgba(0, 0, 0, 0.32);
}

.game-card__trailer iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.game-card__trailer-gif {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

.case-study {
  display: grid;
  gap: 14px;
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(210px, 0.85fr);
  gap: 12px;
  align-items: stretch;
}

.case-hero__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px solid rgba(231, 214, 141, 0.34);
  object-fit: cover;
  image-rendering: pixelated;
  background: rgba(0, 0, 0, 0.35);
}

.case-hero__video {
  overflow: hidden;
}

.case-hero__video iframe,
.case-gallery__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.case-hero__info {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(231, 214, 141, 0.25);
  background: rgba(255, 255, 255, 0.045);
}

.case-play-link {
  width: fit-content;
  min-height: 36px;
  padding-inline: 14px;
  background: rgba(216, 201, 120, 0.12);
}

.art-case__media {
  object-fit: contain;
  background: rgba(0, 0, 0, 0.48);
}

.case-hero__logo {
  width: min(100%, 220px);
  aspect-ratio: 16 / 9;
  padding: 8px;
  border: 2px solid rgba(231, 214, 141, 0.34);
  object-fit: contain;
  image-rendering: pixelated;
  background: rgba(0, 0, 0, 0.3);
}

.case-hero__info p {
  margin: 0;
  color: rgba(231, 223, 177, 0.74);
}

.case-section {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(231, 214, 141, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.case-section h2 {
  margin-bottom: 0;
  font-size: clamp(16px, 1.3vw, 22px);
}

.case-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: #e7dfb1;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.case-results article {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(231, 214, 141, 0.24);
  background: rgba(9, 15, 16, 0.45);
}

.case-results strong {
  color: #f3e997;
  font-size: clamp(15px, 1.25vw, 20px);
}

.case-results span {
  color: #e7dfb1;
  font-size: clamp(10px, 0.82vw, 13px);
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.case-gallery__video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 2px solid rgba(231, 214, 141, 0.28);
  background: rgba(0, 0, 0, 0.35);
}

.case-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px solid rgba(231, 214, 141, 0.28);
  object-fit: contain;
  image-rendering: pixelated;
  background: rgba(0, 0, 0, 0.35);
}

.card {
  display: grid;
  gap: 6px;
  min-height: 82px;
  padding: 10px;
  border: 1px solid rgba(231, 214, 141, 0.25);
  color: #e7dfb1;
  background: rgba(255, 255, 255, 0.045);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}

.tag-list span {
  padding: 4px 7px;
  border: 1px solid rgba(231, 214, 141, 0.24);
  color: #161b18;
  background: #d8c978;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.28);
  font-size: clamp(9px, 0.72vw, 12px);
  font-weight: 800;
}

.tag-list--compact {
  gap: 4px;
  margin-bottom: 0;
}

.tag-list--compact span {
  padding: 3px 5px;
  font-size: clamp(8px, 0.65vw, 10px);
}

.card strong {
  color: #f3e997;
}

.card a,
.window__body a {
  width: fit-content;
  color: #f3e997;
  font-weight: 800;
  cursor: var(--cursor-active);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px;
}

.service-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(231, 214, 141, 0.25);
  background:
    linear-gradient(135deg, rgba(231, 214, 141, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 1px rgba(231, 214, 141, 0.06);
}

.service-card strong {
  color: #f3e997;
  font-size: clamp(14px, 1vw, 18px);
}

.service-card span {
  color: #e7dfb1;
  line-height: 1.35;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  grid-auto-rows: 78px;
  gap: 10px;
}

.contact-list a,
.contact-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  row-gap: 3px;
  width: 100%;
  min-width: 0;
  height: 78px;
  padding: 9px 12px;
  border: 1px solid rgba(231, 214, 141, 0.25);
  box-sizing: border-box;
  color: #e7dfb1;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
}

.contact-list img {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  image-rendering: pixelated;
}

.contact-list span {
  color: rgba(231, 223, 177, 0.64);
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 900;
}

.contact-list strong {
  min-width: 0;
  color: #f3e997;
  font-size: clamp(12px, 0.92vw, 14px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.contact-list__email {
  grid-template-columns: 48px minmax(0, 1fr) auto;
}

.contact-list__email .copy-email {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
}

.copy-email {
  display: grid;
  place-items: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(231, 214, 141, 0.42);
  color: #f3e997;
  background: rgba(10, 18, 17, 0.72);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  font: inherit;
  font-size: clamp(10px, 0.76vw, 12px);
  font-weight: 900;
  cursor: var(--cursor-active);
}

.copy-email__icon {
  position: relative;
  width: 16px;
  height: 18px;
  border: 2px solid currentColor;
  box-sizing: border-box;
}

.copy-email__icon::before {
  position: absolute;
  left: 4px;
  top: -6px;
  width: 16px;
  height: 18px;
  border: 2px solid currentColor;
  box-sizing: border-box;
  background: rgba(10, 18, 17, 0.96);
  content: "";
}

.copy-email__label {
  display: none;
}

.contact-list a:hover,
.contact-list a:focus-visible,
.copy-email:hover,
.copy-email:focus-visible {
  outline: none;
  border-color: rgba(231, 214, 141, 0.52);
  background: rgba(231, 214, 141, 0.1);
}

.art-viewer {
  position: absolute;
  inset: 3.6%;
  z-index: 70;
  display: grid;
  grid-template-rows: 38px minmax(0, 1fr);
  border: 3px solid rgba(231, 214, 141, 0.62);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 50%, rgba(0, 0, 0, 0.05) 50%) 0 0 / 100% 6px,
    rgba(9, 15, 16, 0.96);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.42);
}

.art-viewer[hidden] {
  display: none;
}

.art-viewer__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px 34px;
  align-items: center;
  border-bottom: 2px solid rgba(231, 214, 141, 0.28);
  background: rgba(42, 55, 40, 0.95);
}

.art-viewer__title {
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  color: #f3e997;
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 900;
  text-overflow: ellipsis;
  text-shadow: 2px 2px 0 #101415;
  white-space: nowrap;
}

.art-viewer__minimize,
.art-viewer__close {
  width: 28px;
  height: 28px;
  margin: 3px;
  border: 1px solid rgba(231, 214, 141, 0.45);
  color: #f6edbb;
  background: rgba(10, 18, 17, 0.76);
  cursor: var(--cursor-active);
}

.art-viewer__minimize:hover,
.art-viewer__minimize:focus-visible,
.art-viewer__close:hover,
.art-viewer__close:focus-visible {
  outline: none;
  background: rgba(231, 214, 141, 0.18);
}

.art-viewer__body {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: clamp(10px, 1.3vw, 22px);
}

.art-viewer__image {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  image-rendering: pixelated;
  box-shadow: 0 0 0 2px rgba(231, 214, 141, 0.2), 8px 8px 0 rgba(0, 0, 0, 0.34);
}

.gm-popup {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: min(96%, 1640px);
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 80;
}

.gm-popup__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}

.gm-popup[hidden] {
  display: none;
}

.gem-popup {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 48px);
  background: rgba(7, 10, 12, 0.46);
  pointer-events: none;
}

.gem-popup__frame {
  display: grid;
  place-items: center;
  width: min(70%, 620px);
  max-height: 86%;
  padding: clamp(8px, 1.1vw, 16px);
  border: 3px solid #151a1a;
  background: rgba(17, 25, 24, 0.92);
  box-shadow:
    0 0 0 2px rgba(231, 214, 141, 0.54),
    10px 10px 0 rgba(0, 0, 0, 0.38),
    inset -7px -7px 0 rgba(231, 214, 141, 0.08);
}

.gem-popup__image {
  display: block;
  max-width: 100%;
  max-height: calc(86vh - 42px);
  object-fit: contain;
  image-rendering: pixelated;
}

.gem-popup[hidden] {
  display: none;
}


.hit {
  position: absolute;
  z-index: 20;
  display: block;
  border: 0;
  background: rgba(255, 255, 255, 0);
  cursor: var(--cursor-active);
}

.hit:focus-visible {
  outline: 2px solid #f3e997;
  outline-offset: 2px;
}

.hit--coffee {
  left: 12.9%;
  top: 68.5%;
  width: 9.1%;
  height: 18%;
}

.hit--speaker {
  left: 72.7%;
  top: 47.2%;
  width: 11.6%;
  height: 24.5%;
}

.hit--tablet {
  left: 27.5%;
  top: 83%;
  width: 32%;
  height: 12.5%;
}

.hit--gamepad {
  left: 63.8%;
  top: 86.5%;
  width: 15.5%;
  height: 11%;
}

.hit--gem {
  left: 88.5%;
  top: 34.4%;
  width: 4.2%;
  height: 6.8%;
}

.hit--lamp-cord {
  left: 11.4%;
  top: 25.2%;
  width: 3.2%;
  height: 21.8%;
}


@media (max-width: 980px) {
  body {
    overflow: auto;
  }

  .site {
    min-width: 860px;
  }

  .game-card,
  .case-hero,
  .case-results,
  .case-gallery {
    grid-template-columns: 1fr;
  }
}

.mobile-desktop-note {
  display: none;
}

@media (max-width: 760px) and (orientation: portrait) {
  html,
  body {
    width: 100%;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: #111a18;
  }

  .site {
    display: block;
    min-width: 0;
    width: 100%;
    height: 100dvh;
    padding: 8px;
    background: #26342f;
    box-sizing: border-box;
  }

  .site::before {
    display: none;
  }

  .stage,
  .stage.is-monitor-focus {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    overflow: hidden;
    border: 7px solid #536358;
    border-radius: 4px;
    background: #19231f;
    box-shadow:
      inset 0 0 0 4px #202a31,
      0 0 0 3px #10151a;
    box-sizing: border-box;
  }

  .stage:not(.is-booted) {
    overflow: visible;
  }

  .layer,
  .prop,
  .hit,
  .now-playing,
  .achievements-button,
  .achievement-toast,
  .desktop-status,
  .screen-focus-toggle,
  .gem-popup,
  .gm-popup {
    display: none !important;
  }

  .mobile-desktop-note {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    z-index: 8;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 8px;
    align-items: center;
    padding: 9px 10px;
    border: 1px solid #888054;
    background: rgba(18, 34, 29, 0.96);
    box-shadow: 4px 4px 0 rgba(4, 9, 8, 0.7);
    color: #eee5ad;
  }

  .mobile-desktop-note div {
    display: grid;
    gap: 3px;
  }

  .mobile-desktop-note strong {
    font-size: 13px;
  }

  .mobile-desktop-note span {
    color: #c7c49f;
    font-size: 10px;
    line-height: 1.3;
  }

  .mobile-desktop-note button {
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid #888054;
    background: #14231f;
    color: #eee5ad;
    font: inherit;
    font-size: 18px;
  }

  .mobile-desktop-note.is-dismissed {
    display: none;
  }

  .screen,
  .stage.is-monitor-focus .screen,
  .stage.is-monitor-exiting .screen {
    position: absolute;
    inset: 9px;
    left: 9px;
    top: 9px;
    z-index: 4;
    width: auto;
    height: auto;
    overflow: hidden;
    border: 3px solid rgba(181, 196, 158, 0.52);
    border-radius: 2px;
    background:
      radial-gradient(circle at 50% 18%, rgba(167, 197, 134, 0.11), transparent 42%),
      linear-gradient(180deg, #183026, #0c1917 78%);
    box-shadow: inset 0 0 26px rgba(0, 0, 0, 0.52);
    transition: none;
  }

  .screen::before {
    display: block;
    left: 6%;
    right: 6%;
    bottom: 20px;
    z-index: 4;
    height: 7px;
    border-top: 2px solid #8c8a58;
    background: #101b18;
    box-shadow:
      0 3px 0 #080d0c,
      inset 0 1px 0 rgba(230, 220, 147, 0.16);
  }

  .screen__scan {
    background:
      linear-gradient(rgba(255, 255, 255, 0.018) 50%, rgba(0, 0, 0, 0.04) 50%) 0 0 / 100% 5px;
  }

  .desktop-folders,
  .stage.is-monitor-focus .desktop-folders {
    left: 4%;
    top: 14%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    align-content: start;
    gap: 18px 8px;
    width: 92%;
  }

  .desktop-folders .folder,
  .stage.is-monitor-focus .desktop-folders .folder {
    grid-template-rows: 78px 34px;
    width: min(42vw, 170px);
    height: 126px;
    padding: 12px 6px 8px;
  }

  .desktop-folders .folder:nth-child(5) {
    grid-column: 1 / -1;
  }

  .desktop-assistant {
    display: block !important;
    bottom: 24px;
    z-index: 5;
    width: 74px;
    height: 78px;
    pointer-events: none;
  }

  .desktop-assistant img {
    width: 72px;
    height: 72px;
  }

  .desktop-assistant__bubble,
  .desktop-assistant::after {
    display: none !important;
  }

  .stage.has-open-window .desktop-assistant {
    display: none !important;
  }

  .desktop-folders .folder__shape,
  .stage.is-monitor-focus .desktop-folders .folder__shape {
    width: 64px;
    height: 45px;
    border-width: 3px;
    transform: translateY(-8px);
  }

  .desktop-folders .folder__shape::before,
  .stage.is-monitor-focus .desktop-folders .folder__shape::before {
    left: -3px;
    top: -15px;
    width: 34px;
    height: 15px;
    border-width: 3px;
  }

  .desktop-folders .faq-shortcut__frame,
  .desktop-folders .contact-shortcut__frame,
  .desktop-folders .services-shortcut__frame,
  .stage.is-monitor-focus .desktop-folders .faq-shortcut__frame,
  .stage.is-monitor-focus .desktop-folders .contact-shortcut__frame,
  .stage.is-monitor-focus .desktop-folders .services-shortcut__frame {
    width: 64px;
    height: 64px;
    border-width: 3px;
    transform: translateY(-8px);
  }

  .desktop-folders .folder > span:last-child,
  .stage.is-monitor-focus .desktop-folders .folder > span:last-child {
    font-size: 15px;
    line-height: 1.15;
  }

  .folder__status {
    right: 5px;
    top: 2px;
  }

  .window {
    left: 0;
    top: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .window__bar {
    grid-template-columns: 34px minmax(0, 1fr) 34px 34px;
    min-height: 42px;
  }

  .window__back,
  .window__minimize,
  .window__close {
    width: 28px;
    height: 28px;
  }

  .window__title {
    font-size: 14px;
  }

  .window__path {
    font-size: 9px;
  }

  .window__body {
    height: calc(100% - 68px);
    padding: 12px;
  }

  .window__body h1 {
    font-size: 25px;
    line-height: 1.05;
  }

  .window__body h2 {
    font-size: 20px;
  }

  .window__status {
    min-height: 26px;
  }

  .folder-grid,
  .stage.is-monitor-focus .folder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 8px;
    padding: 8px 0 16px;
  }

  .folder-grid .folder,
  .stage.is-monitor-focus .folder-grid .folder {
    grid-template-rows: 72px auto;
    width: 100%;
    height: 130px;
    padding: 10px 5px;
  }

  .folder-grid .folder > span:last-child,
  .stage.is-monitor-focus .folder-grid .folder > span:last-child {
    font-size: 14px;
  }

  .portfolio-grid,
  .game-card,
  .case-hero,
  .case-results,
  .case-gallery,
  .about-sections,
  .about-system,
  .services-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .contact-list {
    gap: 8px;
  }

  .service-card {
    min-height: 0;
  }

  .contact-list {
    grid-auto-rows: minmax(76px, auto);
  }

  .art-card,
  .game-card {
    min-width: 0;
  }

  .boot-screen__panel {
    width: calc(100vw - 48px);
    min-width: 0;
    box-sizing: border-box;
  }
}
