:root {
  --night: #000022;
  --navy: #000066;
  --blue: #0000cc;
  --cyan: #00ffff;
  --yellow: #ffff00;
  --lime: #00ff00;
  --magenta: #ff00ff;
  --white: #ffffff;
  --silver: #c0c0c0;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

button { font: inherit; }

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

body {
  margin: 0;
  color: var(--white);
  background-color: var(--night);
  background-image:
    radial-gradient(circle at 8px 7px, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 31px 22px, rgba(0, 255, 255, 0.65) 0 1px, transparent 1.5px),
    radial-gradient(circle at 48px 10px, rgba(255, 255, 0, 0.45) 0 1px, transparent 1.5px);
  background-size: 58px 40px;
  font-family: "Times New Roman", Times, serif;
}

a { color: var(--cyan); text-decoration: underline; }
a:visited { color: var(--magenta); }

.web-page {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.app-window {
  position: fixed;
  z-index: 10;
  top: calc(50% - 19px);
  left: 50%;
  width: min(calc(100vw - 20px), 680px);
  color: var(--white);
  background: var(--silver);
  border: 5px outset var(--silver);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.75);
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition:
    left 260ms cubic-bezier(0.22, 0.76, 0.3, 1),
    top 260ms cubic-bezier(0.22, 0.76, 0.3, 1),
    width 260ms cubic-bezier(0.22, 0.76, 0.3, 1),
    height 260ms cubic-bezier(0.22, 0.76, 0.3, 1),
    border-width 260ms ease,
    box-shadow 260ms ease,
    transform 260ms cubic-bezier(0.22, 0.76, 0.3, 1);
}

.app-window.is-dragging { transition: none; }
.app-window.is-positioning { transition: none; }

.app-window.is-maximized {
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: calc(100dvh - 38px) !important;
  border-width: 0;
  box-shadow: none;
  transform: none;
}

.title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 28px;
  padding: 3px 4px 3px 6px;
  color: var(--white);
  background: #000080;
  border-bottom: 2px solid #000000;
  font-family: "MS Sans Serif", Tahoma, Verdana, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  user-select: none;
  touch-action: none;
  cursor: grab;
}

.app-window.is-dragging .title-bar { cursor: grabbing; }
.app-window.is-maximized .title-bar { cursor: default; }

.window-title {
  display: flex;
  gap: 7px;
  align-items: center;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}

.window-title > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.window-title__icon,
.minimized-window__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--cyan);
  background: #000033;
  border: 1px inset var(--silver);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.5rem;
  line-height: 1;
  text-shadow: 1px 1px 0 var(--magenta);
}

.window-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 3px;
}

.window-control {
  display: grid;
  place-items: center;
  width: 23px;
  height: 20px;
  padding: 0;
  color: #000000;
  background: var(--silver);
  border: 2px outset var(--white);
  cursor: pointer;
}

.window-control:hover,
.window-control:focus-visible {
  background: var(--silver);
  outline: 1px dotted #000000;
  outline-offset: -4px;
}

.window-control:active {
  border-style: inset;
  transform: translate(1px, 1px);
}

.control-glyph {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
}

.control-glyph--minimize::before {
  position: absolute;
  bottom: 1px;
  left: 1px;
  width: 8px;
  height: 2px;
  background: #000000;
  content: "";
}

.control-glyph--maximize::before {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 10px;
  height: 10px;
  border: 2px solid #000000;
  box-shadow: inset 0 1px 0 #000000;
  content: "";
}

.control-glyph--maximize.is-restore::before,
.control-glyph--maximize.is-restore::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid #000000;
  background: var(--silver);
  box-shadow: inset 0 1px 0 #000000;
  content: "";
}

.control-glyph--maximize.is-restore::before {
  z-index: 2;
  top: 3px;
  left: 0;
}

.control-glyph--maximize.is-restore::after {
  z-index: 1;
  top: 0;
  left: 3px;
}

.control-glyph--close::before,
.control-glyph--close::after {
  position: absolute;
  top: 5px;
  left: 0;
  width: 12px;
  height: 2px;
  background: #000000;
  content: "";
}

.control-glyph--close::before { transform: rotate(45deg); }
.control-glyph--close::after { transform: rotate(-45deg); }

.site-table {
  width: 100%;
  color: var(--white);
  background: var(--navy);
  border: 0;
  box-shadow: none;
}

.app-window.is-maximized {
  display: flex;
  flex-direction: column;
}

.app-window.is-maximized .title-bar { flex: 0 0 auto; }

.app-window.is-maximized .site-table {
  flex: 1 1 auto;
  height: 100%;
}

.ticker-cell {
  height: 32px;
  padding: 3px 7px;
  color: var(--yellow);
  background: var(--blue);
  border-bottom: 2px solid var(--cyan);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.ticker-cell marquee { display: block; }

.hero-cell {
  padding: clamp(24px, 5vw, 48px) clamp(20px, 5vw, 52px);
  text-align: center;
}

.online-status {
  margin: 0 0 12px;
  color: var(--lime);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.68rem;
  font-weight: 700;
}

.blink { animation: blink 0.9s steps(1, end) infinite; }

h1 {
  margin: 0;
  color: var(--cyan);
  font-family: Arial Black, Impact, Arial, sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  letter-spacing: 0.05em;
  line-height: 0.95;
  text-shadow: 3px 3px 0 var(--magenta), 6px 6px 0 #000000;
}

.rainbow-rule {
  width: min(100%, 520px);
  height: 6px;
  margin: clamp(19px, 3.5vh, 28px) auto;
  background: linear-gradient(to right, #ff0000 0 16.6%, #ffff00 16.6% 33.2%, #00ff00 33.2% 49.8%, #00ffff 49.8% 66.4%, #0000ff 66.4% 83%, #ff00ff 83% 100%);
}

.lead {
  margin: 0 0 17px;
  color: var(--yellow);
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  font-weight: 700;
}

.description {
  max-width: 580px;
  margin: 0 auto;
  color: var(--white);
  font-family: Verdana, Arial, sans-serif;
  font-size: clamp(0.74rem, 1.7vw, 0.9rem);
  line-height: 1.6;
}

.founder-cell { padding: 0 clamp(10px, 2vw, 18px) clamp(10px, 2vw, 18px); }

.people {
  background: #000099;
  border: 2px ridge var(--cyan);
}

.person {
  display: grid;
  grid-template-columns: 96px auto 1fr;
  gap: clamp(14px, 2.5vw, 28px);
  align-items: center;
  padding: 8px 16px;
}

.person + .person {
  border-top: 1px dotted var(--cyan);
}

.founder-label {
  margin: 0;
  color: var(--lime);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.65rem;
  font-weight: 700;
}

.person h2 {
  margin: 0;
  color: var(--white);
  font-family: Verdana, Arial, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  white-space: nowrap;
}

.social-links {
  display: flex;
  gap: 12px 20px;
  justify-self: end;
  font-family: Verdana, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.social-links a:hover,
.social-links a:focus-visible,
.join-team a:hover,
.join-team a:focus-visible {
  color: var(--night);
  background: var(--yellow);
  outline: 2px solid var(--yellow);
}

.join-team {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 0.4em;
  width: 100%;
  margin: 11px auto 6px;
  color: var(--white);
  font-family: Verdana, Arial, sans-serif;
  font-size: clamp(0.74rem, 1.7vw, 0.9rem);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.join-team a { font-weight: 700; }

.counter-cell {
  display: flex;
  justify-content: center;
  gap: 8px 16px;
  align-items: center;
  padding: 8px 12px;
  color: var(--silver);
  background: #000033;
  border-top: 1px solid var(--cyan);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.6rem;
  text-align: center;
}

.counter {
  padding: 2px 6px;
  color: var(--lime);
  background: #000000;
  border: 2px inset var(--silver);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.desktop-icon {
  position: fixed;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 86px;
  min-height: 72px;
  padding: 5px 4px;
  color: var(--white);
  background: transparent;
  border: 1px solid transparent;
  font-family: "MS Sans Serif", Tahoma, Verdana, sans-serif;
  font-size: 0.68rem;
  line-height: 1.2;
  text-align: center;
  text-shadow: 1px 1px 0 #000000;
  user-select: none;
  touch-action: none;
  cursor: default;
}

.desktop-icon.is-dragging {
  z-index: 5;
  opacity: 0.82;
  cursor: grabbing;
}

.desktop-icon--computer { top: 12px; left: 10px; }
.desktop-icon--datahix { top: 94px; left: 10px; }
.desktop-icon--winamp { top: 176px; left: 10px; }
.desktop-icon--minesweeper { top: 12px; left: 100px; }
.desktop-icon--solitaire { top: 94px; left: 100px; }
.desktop-icon--recycle { right: 10px; bottom: 48px; }

.desktop-icon:hover,
.desktop-icon:focus-visible,
.desktop-icon.is-selected { color: var(--white); }

.desktop-icon:focus-visible { outline: none; }

.desktop-icon:focus-visible .desktop-icon__label,
.desktop-icon.is-selected .desktop-icon__label {
  padding: 1px 2px;
  background: #000080;
  outline: 1px dotted var(--white);
}

.desktop-icon__glyph {
  display: block;
  width: 32px;
  height: 32px;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.8));
  image-rendering: pixelated;
}

.game-icon,
.game-icon-small,
.game-menu-icon {
  image-rendering: pixelated;
}

.desktop-icon__glyph.game-icon {
  height: 32px;
  border: 0;
  box-shadow: none;
}

.datahix-glyph {
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: #000066;
  border: 2px outset var(--silver);
  font-family: Arial Black, Impact, Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-shadow: 2px 2px 0 var(--magenta);
}

.winamp-glyph {
  display: grid;
  place-items: center;
  color: #ffdf00;
  background:
    linear-gradient(135deg, #333333 0 47%, #111111 48% 100%);
  border: 2px outset var(--silver);
  font-family: Arial Black, Impact, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  text-shadow: 1px 1px 0 #000000;
}

.minimized-window {
  display: flex;
  flex: 0 1 190px;
  align-items: center;
  gap: 7px;
  min-width: 110px;
  height: 28px;
  padding: 3px 9px 3px 4px;
  color: #000000;
  background: var(--silver);
  border: 2px outset var(--white);
  font-family: "MS Sans Serif", Tahoma, Verdana, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.minimized-window:hover,
.minimized-window:focus-visible {
  background: var(--silver);
  outline: 1px dotted #000000;
  outline-offset: -5px;
}
.minimized-window:active { border-style: inset; }

.minimized-window.is-active {
  background:
    repeating-linear-gradient(135deg, #ffffff 0 1px, #c0c0c0 1px 3px);
  border-style: inset;
}

.taskbar {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 38px;
  padding: 3px 4px;
  color: #000000;
  background: var(--silver);
  border-top: 3px outset var(--white);
  font-family: "MS Sans Serif", Tahoma, Verdana, sans-serif;
}

.start-menu {
  position: absolute;
  z-index: 60;
  bottom: 34px;
  left: 2px;
  display: flex;
  width: 224px;
  min-height: 294px;
  color: #000000;
  background: var(--silver);
  border: 3px outset var(--white);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
}

.start-menu__rail {
  display: flex;
  flex: 0 0 31px;
  align-items: center;
  gap: 2px;
  padding: 7px 4px;
  color: #c0c0c0;
  background: #808080;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.start-menu__rail strong { color: #ffffff; }

.start-menu__list,
.start-submenu {
  margin: 0;
  padding: 2px;
  list-style: none;
}

.start-menu__list {
  flex: 1 1 auto;
  min-width: 0;
}

.start-menu__item { position: relative; }

.start-menu__item > button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 35px;
  padding: 3px 6px;
  color: #000000;
  background: transparent;
  border: 0;
  font-size: 0.72rem;
  text-align: left;
  white-space: nowrap;
  cursor: default;
}

.start-menu__item > button:hover,
.start-menu__item > button:focus-visible,
.start-menu__item:focus-within > button {
  color: #ffffff;
  background: #000080;
  outline: none;
}

.start-menu__item > button:disabled {
  color: #808080;
  background: transparent;
  text-shadow: 1px 1px 0 #ffffff;
  cursor: default;
}

.start-menu__item > button:disabled .menu-icon {
  filter: grayscale(1);
  opacity: 0.45;
}

.start-menu__item > button:disabled .menu-arrow {
  color: #808080;
}

.menu-arrow {
  margin-left: auto;
  font-size: 0.6rem;
}

.menu-icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 2px outset var(--white);
  box-shadow: inset 0 0 0 2px #000080;
}

.menu-icon--programs { background: #ffff00; }
.menu-icon--accessories { background: #00ffff; }
.menu-icon--games { background: #00aa00; }
.menu-icon--documents { background: #ffffcc; }
.menu-icon--settings { background: #c0c0c0; }
.menu-icon--find { border-radius: 50%; background: #ffffff; }
.menu-icon--help { background: #0000cc; }
.menu-icon--run { background: #ffffff; }
.menu-icon--shutdown { background: #cc0000; }
.menu-icon--dos { background: #000000; box-shadow: inset 0 0 0 2px #ffffff; }
.menu-icon--explorer { background: #ffff00; }
.menu-icon--control { background: #c0c0c0; }
.menu-icon--printer { background: #ffffff; }
.menu-icon--taskbar { background: #008080; }
.menu-icon--file { background: #ffffcc; }
.menu-icon--computer-small { background: #00aacc; }
.menu-icon--internet { border-radius: 50%; background: #0088ff; }
.menu-icon--empty { opacity: 0.55; }

.menu-icon.game-menu-icon {
  width: 16px;
  height: 16px;
  margin: 2px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.menu-icon--winamp {
  background: #202020;
  box-shadow: inset 0 0 0 2px #ffdf00;
}

.menu-icon--winamp::after {
  position: absolute;
  inset: 1px;
  display: grid;
  place-items: center;
  color: #ffdf00;
  font: 700 12px/1 Arial, sans-serif;
  content: "⚡";
}

.start-menu__separator {
  height: 2px;
  margin: 3px 4px;
  border-top: 1px solid #808080;
  border-bottom: 1px solid #ffffff;
}

.start-submenu {
  position: absolute;
  z-index: 70;
  top: -3px;
  left: calc(100% - 3px);
  display: none;
  width: 205px;
  background: var(--silver);
  border: 3px outset var(--white);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.4);
}

.has-submenu:hover > button:not(:disabled) + .start-submenu,
.has-submenu:focus-within > button:not(:disabled) + .start-submenu { display: block; }

.start-button {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
  height: 29px;
  padding: 2px 7px 2px 4px;
  color: #000000;
  background: var(--silver);
  border: 2px outset var(--white);
  font-size: 0.72rem;
  cursor: pointer;
}

.start-button:hover,
.start-button:focus-visible {
  background: var(--silver);
  outline: 1px dotted #000000;
  outline-offset: -5px;
}
.start-button:active { border-style: inset; }
.start-button.is-open { border-style: inset; }

.start-logo {
  display: grid;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  gap: 1px;
  transform: skewY(-7deg);
}

.start-logo i:nth-child(1) { background: #ff0000; }
.start-logo i:nth-child(2) { background: #00aa00; }
.start-logo i:nth-child(3) { background: #0000dd; }
.start-logo i:nth-child(4) { background: #ffff00; }

.taskbar-divider {
  align-self: stretch;
  width: 3px;
  margin: 1px 1px;
  border-left: 1px solid #777777;
  border-right: 1px solid #ffffff;
}

.system-tray {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
  height: 28px;
  margin-left: auto;
  padding: 0 3px 0 5px;
  border: 2px inset var(--white);
}

.modem-status {
  position: relative;
  display: block;
  width: 23px;
  height: 17px;
}

.modem-status::before,
.modem-status::after {
  position: absolute;
  width: 11px;
  height: 8px;
  background: #000080;
  border: 2px outset var(--white);
  box-shadow: inset 0 0 0 1px #00ffff;
  content: "";
}

.modem-status::before { top: 1px; left: 1px; }
.modem-status::after { right: 1px; bottom: 1px; }

.modem-status__light {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 10px;
  width: 4px;
  height: 4px;
  background: #00ff00;
  box-shadow: 0 0 3px #00ff00;
  animation: modem-blink 0.7s steps(2, end) infinite;
}

.taskbar-clock {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 68px;
  height: 22px;
  padding: 0 4px;
  border: 0;
  font-size: 0.68rem;
  white-space: nowrap;
}

/* Windows 95 mini-apps */
.retro-app {
  position: fixed;
  z-index: 20;
  color: #000000;
  background: var(--silver);
  border: 3px outset #ffffff;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.55);
  font-family: "MS Sans Serif", Tahoma, Verdana, sans-serif;
  transform-origin: center;
}

.retro-app.is-front { z-index: 30; }
.retro-app.is-dragging { opacity: 0.94; }
.retro-app.is-dragging [data-app-drag-handle] { cursor: grabbing; }

.retro-app [data-app-drag-handle] { cursor: grab; }

.app-title-icon,
.app-task-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: #ffffff;
  background: #000000;
  border: 1px solid #ffffff;
  font-size: 0.64rem;
  line-height: 1;
}

.app-title-icon--mine { color: #ff0000; }
.app-title-icon--cards,
.app-task-icon--red { color: #ff0000; background: #ffffff; border-color: #000000; }

.app-title-icon.game-icon-small,
.app-task-icon.game-icon-small {
  display: block;
  width: 16px;
  height: 16px;
  border: 0;
  background: transparent;
}

.app-task-button {
  overflow: hidden;
  flex-basis: 145px;
  min-width: 72px;
}

.app-task-button > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-menu-strip {
  display: flex;
  align-items: center;
  min-height: 23px;
  padding: 1px 4px;
  border-bottom: 1px solid #808080;
  font-size: 0.67rem;
}

.app-menu-strip > button {
  padding: 2px 8px;
  color: #000000;
  background: transparent;
  border: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  cursor: default;
}

.app-menu-strip > button::first-letter { text-decoration: underline; }
.app-menu-strip > button:hover,
.app-menu-strip > button:focus-visible { color: #ffffff; background: #000080; outline: 0; }

.minesweeper-menu-bar { position: relative; }

.minesweeper-menu-bar > button[aria-expanded="true"] {
  color: #ffffff;
  background: #000080;
}

.minesweeper-game-menu {
  position: absolute;
  z-index: 250;
  top: calc(100% - 1px);
  left: 3px;
  width: 222px;
  padding: 2px;
  color: #000000;
  background: var(--silver);
  border: 2px outset #ffffff;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.48);
}

.minesweeper-game-menu > button {
  display: grid;
  grid-template-columns: 17px minmax(75px, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 23px;
  padding: 2px 7px 2px 3px;
  color: #000000;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: default;
}

.minesweeper-game-menu > button:hover,
.minesweeper-game-menu > button:focus-visible {
  color: #ffffff;
  background: #000080;
  outline: 0;
}

.minesweeper-game-menu hr {
  height: 2px;
  margin: 2px;
  background: transparent;
  border: 0;
  border-top: 1px solid #808080;
  border-bottom: 1px solid #ffffff;
}

.minesweeper-game-menu kbd,
.minesweeper-game-menu small {
  font: inherit;
  white-space: nowrap;
}

.minesweeper-game-menu small { color: #505050; font-size: 0.58rem; }
.minesweeper-game-menu > button:hover small,
.minesweeper-game-menu > button:focus-visible small { color: #ffffff; }
.mine-menu-check { font-size: 0.72rem; font-weight: 700; }

/* My Computer and Recycle Bin */
.explorer-app {
  width: min(480px, calc(100vw - 16px));
  color: #000000;
}

.computer-app { top: 48px; left: max(8px, calc(50% - 300px)); }
.recycle-app { top: 78px; left: min(calc(100vw - 494px), calc(50% - 110px)); }

.explorer-menu { gap: 16px; padding-left: 9px; }

.explorer-address,
.recycle-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 3px 6px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #808080;
  font-size: 0.65rem;
}

.explorer-address > button,
.recycle-toolbar > button,
.classic-dialog__actions button {
  min-width: 52px;
  min-height: 23px;
  color: #000000;
  background: var(--silver);
  border: 2px outset #ffffff;
  font-size: 0.64rem;
}

.explorer-address > button:active:not(:disabled),
.recycle-toolbar > button:active:not(:disabled),
.classic-dialog__actions button:active { border-style: inset; }

.explorer-address > button:disabled,
.recycle-toolbar > button:disabled {
  color: #808080;
  text-shadow: 1px 1px 0 #ffffff;
}

.explorer-address > strong { font-weight: 400; }

.explorer-address > span {
  flex: 1 1 auto;
  min-height: 21px;
  padding: 4px 6px;
  overflow: hidden;
  background: #ffffff;
  border: 2px inset #ffffff;
  white-space: nowrap;
}

.explorer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: start;
  gap: 15px 7px;
  min-height: 210px;
  padding: 15px 10px;
  background: #ffffff;
  border: 2px inset #ffffff;
}

.explorer-object {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 4px 2px;
  color: #000000;
  background: transparent;
  border: 1px solid transparent;
  font-size: 0.63rem;
  line-height: 1.2;
}

.explorer-object > span:last-child {
  max-width: 100%;
  padding: 1px 2px;
  overflow-wrap: anywhere;
}

.explorer-object.is-selected > span:last-child {
  color: #ffffff;
  background: #000080;
  outline: 1px dotted #ffffff;
}

.system-glyph {
  position: relative;
  display: block;
  width: 35px;
  height: 27px;
  background: #d0d0d0;
  border: 3px outset #ffffff;
  box-shadow: 2px 2px 0 #808080;
}

.system-glyph--drive::before {
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: 4px;
  height: 4px;
  background: #555555;
  box-shadow: 18px 0 0 #00aa00;
  content: "";
}

.system-glyph--vault { background: #80c8e8; }

.system-glyph--floppy {
  width: 29px;
  height: 31px;
  background: #202060;
  border-color: #4c4c8a;
}

.system-glyph--floppy::before {
  position: absolute;
  top: 3px;
  right: 4px;
  left: 4px;
  height: 9px;
  background: #c0c0c0;
  content: "";
}

.system-glyph--cd {
  width: 31px;
  height: 31px;
  border: 3px solid #d8d8d8;
  border-radius: 50%;
  background: conic-gradient(#00ffff, #ff00ff, #ffff00, #00ffff);
}

.system-glyph--cd::after {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.system-glyph--folder {
  background: #ffff33;
  border-color: #ffff99;
}

.system-glyph--folder::before {
  position: absolute;
  top: -8px;
  left: -3px;
  width: 17px;
  height: 7px;
  background: #ffff33;
  border: 2px outset #ffff99;
  content: "";
}

.system-glyph--text,
.system-glyph--web {
  width: 25px;
  height: 32px;
  background: repeating-linear-gradient(to bottom, #ffffff 0 4px, #000080 4px 5px);
}

.system-glyph--web { background: repeating-linear-gradient(to bottom, #ffffff 0 4px, #00a0ff 4px 5px); }

.explorer-status {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  min-height: 23px;
  padding: 3px;
  font-size: 0.61rem;
}

.explorer-status > span {
  flex: 1 1 auto;
  padding: 2px 5px;
  overflow: hidden;
  border: 2px inset #ffffff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.explorer-status > span:last-child { flex: 0 0 105px; }

.classic-dialog {
  position: absolute;
  z-index: 80;
  top: 50%;
  left: 50%;
  width: min(300px, calc(100% - 24px));
  background: var(--silver);
  border: 3px outset #ffffff;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.55);
  transform: translate(-50%, -50%);
}

.classic-dialog__body {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 13px 16px;
  font-size: 0.68rem;
  line-height: 1.45;
}

.dialog-error {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: #ff0000;
  border-radius: 50%;
  font: 700 1.6rem/1 Arial, sans-serif;
}

.classic-dialog__actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 12px 12px;
}

.trash-list {
  min-height: 220px;
  background: #ffffff;
  border: 2px inset #ffffff;
  font-size: 0.59rem;
}

.trash-list__head,
.trash-row {
  display: grid;
  grid-template-columns: 2fr 1.35fr 1fr;
  align-items: center;
}

.trash-list__head {
  min-height: 23px;
  color: #000000;
  background: var(--silver);
  border-bottom: 1px solid #808080;
}

.trash-list__head span { padding: 4px 6px; border-right: 1px solid #808080; }

.trash-row {
  width: 100%;
  min-height: 31px;
  padding: 0;
  color: #000000;
  background: #ffffff;
  border: 0;
  text-align: left;
}

.trash-row > span {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  padding: 3px 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trash-row.is-selected { color: #ffffff; background: #000080; outline: 1px dotted #ffffff; outline-offset: -2px; }
.trash-row.is-restoring { animation: restore-file 270ms steps(4, end) forwards; }
.trash-row.is-deleting { animation: delete-file 330ms steps(5, end) forwards; }

.file-glyph {
  display: inline-block;
  flex: 0 0 auto;
  width: 14px;
  height: 17px;
  background: #ffffff;
  border: 1px solid #000000;
  box-shadow: inset 0 -4px 0 #00aa00;
}

.file-glyph--data { box-shadow: inset 0 -4px 0 #00aaff; }
.file-glyph--web { box-shadow: inset 0 -4px 0 #0000cc; }
.file-glyph--link { box-shadow: inset 0 -4px 0 #ff00ff; }

.desktop-icon--recycle.is-empty .desktop-icon__glyph { opacity: 0.62; filter: grayscale(1) drop-shadow(2px 2px 0 rgba(0,0,0,0.8)); }

/* Minesweeper */
.minesweeper-app {
  top: 62px;
  left: 112px;
  width: 244px;
  max-width: calc(100vw - 8px);
}

.minesweeper-shell {
  padding: 8px;
  background: var(--silver);
}

.minesweeper-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  margin-bottom: 8px;
  padding: 5px 7px;
  border: 3px inset #ffffff;
}

.digital-counter {
  display: grid;
  place-items: center;
  width: 52px;
  height: 30px;
  color: #ff1a1a;
  background: #080000;
  border: 2px inset #808080;
  font-family: "Courier New", Courier, monospace;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 0 4px #ff0000;
}

.minesweeper-face {
  width: 31px;
  height: 31px;
  padding: 0;
  color: #000000;
  background: #ffff00;
  border: 3px outset #ffffff;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.minesweeper-face:active { border-style: inset; }

.mine-grid {
  display: grid;
  grid-template-columns: repeat(var(--mine-columns, 9), var(--mine-cell-size, 24px));
  width: max-content;
  border: 3px inset #ffffff;
  background: #808080;
}

.mine-cell {
  display: grid;
  place-items: center;
  width: var(--mine-cell-size, 24px);
  height: var(--mine-cell-size, 24px);
  padding: 0;
  color: #000000;
  background: var(--silver);
  border: 3px outset #ffffff;
  font-family: Arial Black, Arial, sans-serif;
  font-size: clamp(0.46rem, calc(var(--mine-cell-size, 24px) * 0.5), 0.72rem);
  font-weight: 900;
  line-height: 1;
  cursor: default;
}

.mine-cell:active:not(.is-revealed) { border-style: inset; }
.mine-grid.is-compact .mine-cell { border-width: 2px; }
.mine-grid.is-very-compact .mine-cell { border-width: 1px; }
.mine-cell.is-revealed { border: 1px solid #808080; }
.mine-cell.is-flagged { color: #ff0000; font-size: clamp(0.5rem, calc(var(--mine-cell-size, 24px) * 0.56), 0.82rem); }
.mine-cell.is-mine { color: #000000; font-size: clamp(0.5rem, calc(var(--mine-cell-size, 24px) * 0.54), 0.8rem); }
.mine-cell.is-exploded { background: #ff0000; }
.mine-cell.is-revealing { animation: mine-reveal 120ms steps(2, end) both; }
.mine-cell.is-win-wave { animation: mine-win-wave 360ms steps(3, end) both; }
.mine-cell.n1 { color: #0000ff; }
.mine-cell.n2 { color: #008000; }
.mine-cell.n3 { color: #ff0000; }
.mine-cell.n4 { color: #000080; }
.mine-cell.n5 { color: #800000; }
.mine-cell.n6 { color: #008080; }
.mine-cell.n7 { color: #000000; }
.mine-cell.n8 { color: #808080; }

/* Solitaire */
.solitaire-app {
  top: 8px;
  left: max(4px, calc(50% - 340px));
  width: min(680px, calc(100vw - 8px));
}

.solitaire-score {
  margin-left: auto;
  padding-right: 6px;
  font-size: 0.64rem;
}

.solitaire-board {
  --card-gap: clamp(4px, 1.4vw, 13px);
  --card-height: clamp(64px, 19vw, 104px);
  position: relative;
  height: min(520px, calc(100dvh - 109px));
  min-height: 290px;
  overflow: hidden;
  padding: 13px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.035) 0 1px, transparent 1px),
    #007b38;
  background-size: 7px 7px;
  border: 2px inset #ffffff;
}

.solitaire-top-row,
.solitaire-tableau {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: var(--card-gap);
}

.solitaire-top-row { align-items: start; }
.solitaire-spacer { grid-column: span 1; }

.card-slot,
.playing-card {
  position: relative;
  width: 100%;
  height: var(--card-height);
  padding: 0;
  border-radius: 3px;
}

.card-slot {
  display: block;
  color: rgba(255,255,255,0.42);
  background: rgba(0,0,0,0.07);
  border: 1px solid rgba(255,255,255,0.55);
  font: 700 1.2rem/1 "Times New Roman", serif;
}

.stock-slot.has-cards::after {
  position: absolute;
  inset: 3px;
  border: 2px solid #ffffff;
  border-radius: 2px;
  background:
    repeating-linear-gradient(45deg, #000080 0 3px, #ffffff 3px 5px, #c00000 5px 8px);
  box-shadow: inset 0 0 0 2px #000080;
  content: "";
}

.stock-slot.is-recycle::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.65);
  font-size: 1.6rem;
  content: "↻";
}

.waste-slot .playing-card,
.foundation-slot .playing-card { position: absolute; inset: -1px; }

.foundation-slot { cursor: default; }
.foundation-slot:empty::after { content: "A"; }

.solitaire-tableau {
  margin-top: 14px;
  height: calc(100% - var(--card-height) - 14px);
  min-height: 0;
}

.tableau-pile {
  position: relative;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.tableau-pile::before {
  display: block;
  width: 100%;
  height: var(--card-height);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  content: "";
}

.tableau-pile .playing-card { position: absolute; top: var(--card-top, 0); left: 0; }

.playing-card {
  z-index: var(--card-z, 1);
  display: block;
  color: #000000;
  background: #ffffff;
  border: 1px solid #202020;
  box-shadow: 1px 1px 0 rgba(0,0,0,0.45);
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transform-origin: top center;
  overflow: hidden;
}

.playing-card[draggable="true"] { cursor: grab; }
.playing-card.is-dragging-card { opacity: 0.5; cursor: grabbing; }
.playing-card.is-moving { animation: card-move 190ms steps(4, end); }

.tableau-pile.is-drop-target::before,
.foundation-slot.is-drop-target {
  outline: 3px dashed #ffff00;
  outline-offset: 2px;
  background-color: rgba(255, 255, 0, 0.16);
}

.playing-card.is-red { color: #d00000; }
.playing-card.is-selected { outline: 3px dotted #ffff00; outline-offset: -5px; transform: translateY(-3px); }
.playing-card.is-dealing { animation: card-deal 260ms steps(4, end) backwards; animation-delay: var(--deal-delay, 0ms); }
.playing-card.is-flipping { animation: card-flip 260ms steps(4, end); }

.playing-card.is-back {
  background:
    repeating-linear-gradient(45deg, #000080 0 4px, #ffffff 4px 6px, #c00000 6px 10px);
  box-shadow: inset 0 0 0 3px #ffffff, inset 0 0 0 5px #000080, 1px 1px 0 rgba(0,0,0,0.45);
}

.playing-card__portrait {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: fill;
  pointer-events: none;
}

.playing-card__court-fallback {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.08em;
  color: inherit;
  background: #ffffff;
  font-size: clamp(1.25rem, 5vw, 2.7rem);
  line-height: 0.8;
  text-align: center;
  pointer-events: none;
}

.playing-card__court-fallback b { font: inherit; font-weight: 700; }
.playing-card__court-fallback i { font: inherit; font-size: 0.72em; font-style: normal; }

.playing-card__corner {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(0.58rem, 1.5vw, 0.82rem);
  font-weight: 700;
  line-height: 0.78;
  pointer-events: none;
}

.playing-card__corner--top { top: 3px; left: 4px; }
.playing-card__corner--bottom { right: 4px; bottom: 3px; transform: rotate(180deg); }

.playing-card__pips {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.playing-card__pip {
  position: absolute;
  left: calc(var(--pip-x) * 1%);
  top: calc(var(--pip-y) * 1%);
  display: block;
  font-size: clamp(0.78rem, 2.6vw, 1.35rem);
  font-style: normal;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.playing-card__pip.is-inverted { transform: translate(-50%, -50%) rotate(180deg); }
.playing-card.rank-1 .playing-card__pip { font-size: clamp(1.35rem, 5vw, 2.5rem); }
.playing-card.rank-9 .playing-card__pip,
.playing-card.rank-10 .playing-card__pip { font-size: clamp(0.68rem, 2.3vw, 1.12rem); }

.playing-card.is-court {
  background: #ffffff;
}

.solitaire-win {
  position: absolute;
  z-index: 200;
  top: 44%;
  left: 50%;
  padding: 10px 18px;
  color: #ffff00;
  background: #000080;
  border: 3px outset #ffffff;
  font: 700 1.35rem/1 "MS Sans Serif", Tahoma, sans-serif;
  text-shadow: 2px 2px 0 #000000;
  transform: translate(-50%, -50%);
  animation: win-sign 620ms steps(5, end) infinite alternate;
}

.win-flying-card,
.win-card-trail {
  position: absolute;
  margin: 0;
  pointer-events: none;
  cursor: default;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

.win-flying-card {
  z-index: 190;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.48);
}

.win-card-trail {
  z-index: 180;
  box-shadow: none;
}

/* Winamp */
.winamp-app {
  top: 74px;
  left: min(calc(100vw - 328px), calc(50% + 178px));
  width: 316px;
  padding: 2px;
  color: #d8d8d8;
  background: #373737;
  border-color: #7a7a7a;
  box-shadow: 7px 7px 0 rgba(0,0,0,0.6);
  font-family: Arial, Helvetica, sans-serif;
}

.winamp-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 19px;
  padding: 1px 3px 1px 7px;
  color: #dcdcdc;
  background: linear-gradient(#4c4c4c 0 45%, #111111 46% 55%, #3c3c3c 56% 100%);
  border: 1px solid #0a0a0a;
  font: 700 0.57rem/1 Arial, sans-serif;
  letter-spacing: 0.12em;
  text-shadow: 1px 1px 0 #000000;
  user-select: none;
}

.winamp-window-button {
  width: 17px;
  height: 14px;
  padding: 0;
  color: #d0d0d0;
  background: #3f3f3f;
  border: 1px outset #777777;
  font: 700 0.58rem/1 Arial, sans-serif;
}

.winamp-window-button:active { border-style: inset; }

.winamp-main {
  padding: 7px;
  background: linear-gradient(135deg, #282828, #4b4b4b 48%, #1a1a1a);
  border: 1px solid #0a0a0a;
}

.winamp-display {
  position: relative;
  height: 69px;
  overflow: hidden;
  color: #63ff32;
  background: #050905;
  border: 3px inset #4a4a4a;
  font-family: "Courier New", monospace;
}

.winamp-time {
  position: absolute;
  top: 5px;
  left: 7px;
  color: #67ff34;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: 0 0 4px #00aa00;
}

.winamp-track-title {
  position: absolute;
  top: 7px;
  right: 6px;
  left: 92px;
  overflow: hidden;
  color: #baff8a;
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.winamp-spectrum {
  position: absolute;
  right: 6px;
  bottom: 6px;
  left: 91px;
  display: flex;
  align-items: end;
  gap: 2px;
  height: 27px;
}

.winamp-spectrum i {
  flex: 1 1 auto;
  height: 13%;
  background: linear-gradient(to top, #00d000 0 54%, #ffff00 55% 78%, #ff3300 79% 100%);
  transform-origin: bottom;
}

.winamp-app.is-playing .winamp-spectrum i { animation: equalize 620ms steps(6, end) infinite alternate; }
.winamp-app.is-playing .winamp-spectrum i:nth-child(2n) { animation-duration: 430ms; }
.winamp-app.is-playing .winamp-spectrum i:nth-child(3n) { animation-duration: 780ms; }
.winamp-app.is-playing .winamp-spectrum i:nth-child(4n) { animation-delay: -260ms; }

.winamp-progress {
  width: 100%;
  height: 13px;
  margin: 5px 0 3px;
  accent-color: #8ab65a;
}

.winamp-controls {
  display: flex;
  align-items: center;
  gap: 3px;
}

.winamp-controls > button {
  width: 31px;
  height: 22px;
  padding: 0;
  color: #d5d5d5;
  background: #343434;
  border: 2px outset #727272;
  font: 700 0.62rem/1 Arial, sans-serif;
}

.winamp-controls > button:active { border-style: inset; }

.winamp-volume {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  color: #a9e67b;
  font-size: 0.49rem;
}

.winamp-volume input { width: 63px; accent-color: #a7d56d; }

.winamp-playlist {
  color: #54ff36;
  background: #050905;
  border: 2px inset #555555;
  font: 0.6rem/1.25 "Courier New", monospace;
}

.winamp-playlist__head {
  display: flex;
  justify-content: space-between;
  padding: 4px 6px;
  color: #d0d0d0;
  background: #222222;
  border-bottom: 1px solid #565656;
  font-weight: 700;
}

.winamp-playlist__head a { color: #a4dcff; }

.winamp-playlist ol {
  max-height: 180px;
  margin: 0;
  padding: 3px 3px 3px 25px;
  overflow-y: auto;
  scrollbar-color: #777777 #1b1b1b;
}

.winamp-playlist li { padding-left: 1px; }

.winamp-track-button {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 2px 3px;
  color: #57f33d;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.winamp-track-button:hover,
.winamp-track-button:focus-visible,
.winamp-track-button.is-current {
  color: #ffffff;
  background: #000080;
  outline: 0;
}

@keyframes mine-reveal {
  from { transform: scale(0.78); opacity: 0.3; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes mine-win-wave {
  0%, 100% { transform: translateY(0); }
  50% { color: #ffffff; background: #000080; transform: translateY(-3px); }
}

@keyframes card-deal {
  from { opacity: 0; transform: translate(-170px, -90px) rotate(-12deg); }
  to { opacity: 1; transform: translate(0, 0) rotate(0); }
}

@keyframes card-flip {
  0% { transform: scaleX(1); }
  49% { transform: scaleX(0.05); }
  100% { transform: scaleX(1); }
}

@keyframes card-move {
  0% { opacity: 0.4; transform: translateY(-16px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes restore-file {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(-90px, -70px) scale(0.15); }
}

@keyframes delete-file {
  0% { opacity: 1; transform: translateX(0); }
  35% { opacity: 1; transform: translateX(-5px); }
  70% { opacity: 0.7; transform: translateX(7px); }
  100% { opacity: 0; transform: translateY(18px) scaleY(0.05); }
}

@keyframes win-sign {
  from { color: #ffffff; }
  to { color: #ffff00; transform: translate(-50%, -53%) scale(1.05); }
}

@keyframes equalize {
  0% { height: 12%; }
  30% { height: 86%; }
  55% { height: 34%; }
  78% { height: 100%; }
  100% { height: 48%; }
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes modem-blink {
  0%, 38% { background: #00ff00; opacity: 1; }
  39%, 64% { background: #ffff00; opacity: 0.35; }
  65%, 100% { background: #00ff00; opacity: 1; }
}

@media (max-width: 580px) {
  .app-window {
    width: calc(100vw - 18px);
    border-width: 3px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.75);
  }
  .title-bar { min-height: 26px; font-size: 0.62rem; }
  .window-title__icon { width: 16px; height: 16px; }
  .window-control { width: 22px; height: 19px; }
  .ticker-cell { height: 27px; font-size: 0.6rem; }
  .hero-cell { padding: 20px 15px; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.2rem); }
  .rainbow-rule { margin-top: 19px; margin-bottom: 19px; }
  .person { grid-template-columns: 1fr auto; gap: 8px 12px; padding: 8px 12px; }
  .founder-label { grid-column: 1 / -1; }
  .person h2 { font-size: clamp(0.82rem, 4vw, 1.05rem); }
  .social-links { gap: 8px; }
  .network-name { font-size: 0; }
  .network-name::after { font-size: 0.62rem; content: attr(data-short); }
  .join-team { margin-top: 10px; }
  .counter-cell span:last-child { display: none; }
  .desktop-icon { width: 72px; font-size: 0.6rem; }
  .desktop-icon--computer { top: 4px; left: 2px; }
  .desktop-icon--datahix { top: 78px; left: 2px; }
  .desktop-icon--winamp { top: 152px; left: 2px; }
  .desktop-icon--minesweeper { top: 4px; left: 76px; }
  .desktop-icon--solitaire { top: 78px; left: 76px; }
  .desktop-icon--recycle { right: 2px; bottom: 42px; }
  .start-button { padding-right: 5px; }
  .minimized-window { flex-basis: 130px; }
  .system-tray { gap: 2px; padding-right: 2px; padding-left: 3px; }
  .taskbar-clock { min-width: 48px; padding-right: 2px; padding-left: 2px; }
  .start-menu { width: 205px; }
  .start-submenu { left: 74px; width: 182px; }
  .start-submenu .start-submenu { top: 100%; left: 18px; }
  .retro-app { max-width: calc(100vw - 8px); }
  .minesweeper-app { top: 42px; left: 4px; }
  .solitaire-app { top: 4px; left: 4px; }
  .solitaire-board { padding: 7px; }
  .playing-card__corner--top { top: 2px; left: 2px; }
  .playing-card__corner--bottom { right: 2px; bottom: 2px; }
  .winamp-app { top: 42px; left: max(4px, calc(50% - 158px)); }
  .computer-app,
  .recycle-app { top: 24px; left: 4px; }
  .explorer-content { grid-template-columns: repeat(3, 1fr); min-height: 225px; padding: 10px 5px; }
  .trash-list__head,
  .trash-row { grid-template-columns: 1.7fr 1fr; }
  .trash-list__head span:last-child,
  .trash-row > span:last-child { display: none; }
  .app-task-button { min-width: 45px; padding-right: 4px; }
  .app-task-button > span:last-child { display: none; }
}

@media (max-height: 550px) {
  .hero-cell { padding-top: 18px; padding-bottom: 18px; }
  h1 { font-size: clamp(2.5rem, 9vh, 4.3rem); }
  .rainbow-rule { margin-top: 14px; margin-bottom: 14px; }
  .lead { margin-bottom: 10px; }
  .person { padding-top: 6px; padding-bottom: 6px; }
  .join-team { margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .app-window { transition: none; }
  .blink,
  .modem-status__light,
  .mine-cell,
  .playing-card,
  .solitaire-win,
  .winamp-spectrum i { animation: none !important; }
}
