:root {
  --desktop-green: #143c37;
  --deep-green: #0b2926;
  --picnic-green: #19695f;
  --coral: #ef654d;
  --coral-dark: #b83e2c;
  --yellow: #f3d36a;
  --cream: #f4efdb;
  --paper: #fffdf0;
  --window: #c9c9be;
  --window-light: #fff;
  --window-mid: #88887f;
  --window-dark: #20201f;
  --blue: #164d47;
  --taskbar-height: 40px;
  --system-font: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --mono-font: "Courier New", Courier, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
  color: #111;
  background: var(--deep-green);
  font: 13px/1.3 var(--system-font);
}

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

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: #111;
  background: var(--yellow);
  border: 2px solid #111;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.svg-sprite {
  position: fixed;
  width: 0;
  height: 0;
  overflow: hidden;
}

.scene {
  position: fixed;
  inset: 0;
  display: none;
}

.scene.is-active {
  display: block;
}

.scene--boot {
  z-index: 1000;
  color: #f2f1de;
  background: #080a09;
  font-family: var(--mono-font);
}

.scene--boot::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.025) 4px
  );
  content: "";
}

.boot-copy {
  position: absolute;
  top: 8vh;
  left: clamp(20px, 6vw, 84px);
  width: min(760px, calc(100vw - 40px));
}

.boot-kicker {
  margin: 0 0 28px;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.06em;
}

#bootLines {
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  white-space: pre-wrap;
  font: inherit;
  line-height: 1.65;
}

.boot-caret {
  display: inline-block;
  width: 10px;
  height: 18px;
  background: var(--cream);
  animation: blink 0.7s steps(1) infinite;
}

.text-button {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
}

.boot-skip {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  color: #aaa;
  font-family: var(--mono-font);
}

.scene--login {
  z-index: 900;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 15%, rgba(243, 211, 106, 0.17), transparent 23%),
    radial-gradient(circle at 83% 72%, rgba(239, 101, 77, 0.14), transparent 25%),
    var(--desktop-green);
}

.scene--login::before,
.scene--login::after {
  position: absolute;
  width: 44vw;
  height: 44vw;
  min-width: 440px;
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  content: "";
  pointer-events: none;
  transform: rotate(35deg);
}

.scene--login::before {
  top: -28vw;
  left: -16vw;
}

.scene--login::after {
  right: -15vw;
  bottom: -30vw;
}

.login-brand {
  position: absolute;
  top: 50%;
  left: 10vw;
  display: grid;
  width: min(430px, 38vw);
  color: var(--cream);
  line-height: 0.72;
  transform: translateY(-58%) rotate(-4deg);
}

.login-brand::after {
  position: absolute;
  right: -34px;
  bottom: -45px;
  width: 96px;
  height: 96px;
  background: repeating-conic-gradient(var(--coral) 0 25%, var(--yellow) 0 50%) 50% / 32px 32px;
  border: 4px solid var(--cream);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.35);
  content: "";
  transform: rotate(4deg);
}

.login-brand__one,
.login-brand__giant,
.login-brand__picnic {
  font-weight: 950;
  letter-spacing: -0.08em;
  text-shadow: 7px 7px 0 rgba(0, 0, 0, 0.35);
}

.login-brand__one {
  padding-left: 4px;
  color: var(--yellow);
  font-size: clamp(38px, 5vw, 68px);
}

.login-brand__giant {
  font-size: clamp(70px, 10vw, 145px);
}

.login-brand__picnic {
  color: var(--coral);
  font-size: clamp(64px, 9vw, 130px);
}

.retro-window {
  color: #111;
  background: var(--window);
  border-top: 2px solid var(--window-light);
  border-left: 2px solid var(--window-light);
  border-right: 2px solid var(--window-dark);
  border-bottom: 2px solid var(--window-dark);
  box-shadow: inset 1px 1px #deded4, inset -1px -1px var(--window-mid), 7px 8px 0 rgba(0, 0, 0, 0.36);
}

.title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 25px;
  margin: 2px;
  padding: 3px 4px 3px 7px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, var(--deep-green), var(--picnic-green));
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.title-bar__buttons {
  display: flex;
  gap: 3px;
}

.title-bar__buttons i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #111;
  background: var(--window);
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  font-style: normal;
  line-height: 1;
}

.login-window {
  position: absolute;
  top: 50%;
  right: 11vw;
  width: min(440px, 42vw);
  transform: translateY(-50%);
}

.login-window__body {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 20px;
  padding: 26px;
}

.login-avatar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100px;
  height: 100px;
  background: #fff;
  border: 3px inset #aaa;
  transform: rotate(-2deg);
}

.login-avatar span:nth-child(1),
.login-avatar span:nth-child(4) {
  background: var(--coral);
}

.login-avatar span:nth-child(2),
.login-avatar span:nth-child(3) {
  background: var(--yellow);
}

.login-greeting {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 800;
}

.field-label {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.retro-input,
.retro-textarea,
.retro-select {
  width: 100%;
  min-height: 34px;
  padding: 6px 8px;
  color: #111;
  background: #fff;
  border-top: 2px solid #555;
  border-left: 2px solid #555;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 0;
}

.retro-textarea {
  min-height: 130px;
  resize: vertical;
  font-family: var(--mono-font);
}

.retro-button {
  min-height: 34px;
  padding: 6px 13px;
  color: #111;
  background: var(--window);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  border-radius: 0;
  box-shadow: inset -1px -1px var(--window-mid);
  font-weight: 800;
  cursor: pointer;
}

.retro-button:active,
.retro-button.is-pressed {
  padding: 7px 12px 5px 14px;
  border-top-color: #333;
  border-left-color: #333;
  border-right-color: #fff;
  border-bottom-color: #fff;
  box-shadow: inset 1px 1px var(--window-mid);
}

.retro-button--primary {
  color: #fff;
  background: var(--coral-dark);
  box-shadow: inset -1px -1px #6d2118;
}

.enter-button {
  width: 100%;
  margin-top: 14px;
}

.login-foot {
  position: absolute;
  right: 11vw;
  bottom: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font: 12px var(--mono-font);
  letter-spacing: 0.08em;
}

.scene--desktop {
  z-index: 1;
  min-width: 320px;
  overflow: hidden;
  background-color: var(--desktop-green);
  background-image: url("assets/one-giant-picnic-xp-wallpaper.webp");
  background-position: center;
  background-size: cover;
}

.desktop-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 25, 23, 0.6) 0%, transparent 26%, transparent 74%, rgba(5, 25, 23, 0.58) 100%),
    linear-gradient(0deg, rgba(5, 25, 23, 0.32), transparent 35%);
}

.desktop-wallpaper {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.desktop-brand {
  position: absolute;
  top: 49%;
  left: 50%;
  display: grid;
  color: var(--cream);
  line-height: 0.76;
  text-align: center;
  text-shadow: 5px 5px 0 rgba(10, 22, 20, 0.45);
  transform: translate(-50%, -50%) rotate(-2deg);
  opacity: 0.9;
  pointer-events: none;
}

.desktop-brand span {
  color: var(--yellow);
  font-size: clamp(20px, 3vw, 45px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.desktop-brand strong {
  font-size: clamp(55px, 9vw, 130px);
  letter-spacing: -0.09em;
}

.desktop-brand small {
  justify-self: end;
  margin-top: 14px;
  padding: 6px 9px;
  color: #111;
  background: var(--coral);
  font: 900 11px var(--mono-font);
  letter-spacing: 0.16em;
  text-shadow: none;
}

.next-picnic {
  position: absolute;
  z-index: 6;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 62px minmax(220px, 1fr) auto;
  align-items: center;
  width: min(660px, calc(100vw - 310px));
  min-width: 450px;
  min-height: 78px;
  color: #111;
  background: var(--cream);
  border: 2px solid #111;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.42);
  transform: translateX(-50%) rotate(-0.5deg);
}

.next-picnic__date {
  display: grid;
  align-self: stretch;
  place-content: center;
  color: #fff;
  background: var(--coral);
  border-right: 2px solid #111;
  text-align: center;
  line-height: 0.9;
}

.next-picnic__date span {
  color: #111;
  font: 900 11px var(--mono-font);
  letter-spacing: 0.14em;
}

.next-picnic__date strong {
  font-size: 32px;
}

.next-picnic__copy {
  min-width: 0;
  padding: 9px 13px;
}

.next-picnic__copy p,
.next-picnic__copy h1 {
  margin: 0;
}

.next-picnic__copy p {
  color: var(--coral-dark);
  font: 900 10px var(--mono-font);
  letter-spacing: 0.12em;
}

.next-picnic__copy h1 {
  overflow: hidden;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.next-picnic__copy span {
  color: #4b4b45;
  font-size: 11px;
}

.next-picnic__cta {
  margin-right: 12px;
  color: #fff;
  background: var(--picnic-green);
  white-space: nowrap;
}

.desktop-icons {
  position: absolute;
  z-index: 5;
  top: 18px;
  display: grid;
  gap: 3px;
}

.desktop-icons--left {
  left: 14px;
}

.desktop-icons--right {
  right: 14px;
}

.desktop-icon {
  position: relative;
  display: grid;
  width: 104px;
  min-height: 94px;
  padding: 5px 3px 4px;
  place-items: center;
  align-content: center;
  gap: 3px;
  color: #fff;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  font: 800 12px/1.1 var(--system-font);
  text-align: center;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 rgba(0, 0, 0, 0.6);
  cursor: default;
}

.desktop-icon:hover,
.desktop-icon:focus-visible {
  background: rgba(20, 76, 70, 0.58);
  border: 1px dotted rgba(255, 255, 255, 0.85);
}

.desktop-icon:active {
  transform: translate(1px, 1px);
}

.desktop-icon__art {
  width: 53px;
  height: 53px;
  overflow: visible;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.5));
  image-rendering: pixelated;
}

.desktop-icon--danger span {
  color: #ffef74;
}

.desktop-icon--about {
  position: absolute;
  z-index: 5;
  right: 128px;
  bottom: 70px;
}

.basket-badge {
  position: absolute;
  z-index: 1;
  top: 2px;
  right: 15px;
  display: grid;
  min-width: 23px;
  height: 23px;
  padding: 0 5px;
  place-items: center;
  color: #111;
  background: var(--yellow);
  border: 2px solid #111;
  border-radius: 50%;
  font: 900 11px var(--mono-font);
  text-shadow: none;
}

.basket-badge[hidden] {
  display: none;
}

.retro-button:disabled {
  color: #777;
  cursor: not-allowed;
  filter: grayscale(1);
}

.desktop-tip {
  position: absolute;
  z-index: 4;
  bottom: 51px;
  left: 50%;
  margin: 0;
  padding: 6px 9px;
  color: #fff;
  background: rgba(8, 24, 22, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.38);
  font: 11px var(--mono-font);
  transform: translateX(-50%);
  pointer-events: none;
}

.window-layer {
  position: absolute;
  z-index: 20;
  inset: 0 0 var(--taskbar-height);
  pointer-events: none;
}

.app-window {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  min-height: 210px;
  pointer-events: auto;
}

.app-window.is-focused > .title-bar {
  background: linear-gradient(90deg, var(--deep-green), var(--picnic-green));
}

.app-window:not(.is-focused) > .title-bar {
  color: #e9e9e2;
  background: linear-gradient(90deg, #5f6764, #989d98);
}

.app-window.is-minimized {
  display: none;
}

.app-window.is-maximized {
  top: 5px !important;
  left: 5px !important;
  width: calc(100% - 10px) !important;
  height: calc(100% - 10px) !important;
}

.app-window > .title-bar {
  flex: 0 0 25px;
  cursor: move;
  user-select: none;
  touch-action: none;
}

.window-title {
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.window-control {
  display: grid;
  width: 19px;
  height: 18px;
  padding: 0;
  place-items: center;
  color: #111;
  background: var(--window);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  font: 900 12px/1 var(--mono-font);
  cursor: pointer;
}

.window-control:active {
  border-color: #222 #fff #fff #222;
}

.window-menu {
  display: flex;
  flex: 0 0 25px;
  align-items: center;
  gap: 17px;
  margin: 0 3px;
  padding: 3px 7px;
  border-bottom: 1px solid var(--window-mid);
  font-size: 12px;
}

.window-menu span::first-letter {
  text-decoration: underline;
}

.window-body {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  margin: 3px;
  overflow: auto;
  background: var(--paper);
  border-top: 2px solid var(--window-mid);
  border-left: 2px solid var(--window-mid);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  scrollbar-color: var(--window-mid) var(--window);
  scrollbar-width: auto;
}

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

.window-body::-webkit-scrollbar-track {
  background: repeating-conic-gradient(#e7e7dd 0 25%, #fff 0 50%) 0 / 4px 4px;
}

.window-body::-webkit-scrollbar-thumb {
  background: var(--window);
  border: 2px outset #eee;
}

.window-status {
  display: flex;
  flex: 0 0 23px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 3px 3px;
  padding: 2px 6px;
  border-top: 1px solid var(--window-mid);
  border-left: 1px solid var(--window-mid);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  color: #494943;
  font: 11px var(--mono-font);
}

.folder-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #e8e5d6;
  border-bottom: 1px solid #aaa;
}

.folder-header strong {
  font: 900 12px var(--mono-font);
}

.folder-header span {
  overflow: hidden;
  color: #5a5a51;
  font: 11px var(--mono-font);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-intro {
  max-width: 680px;
  margin: 0;
  padding: 18px 18px 3px;
}

.section-intro__eyebrow {
  margin: 0 0 4px;
  color: var(--coral-dark);
  font: 900 10px var(--mono-font);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-intro h2 {
  margin: 0 0 5px;
  font-size: 25px;
  line-height: 1;
}

.section-intro p:last-child {
  margin: 0;
  color: #55554e;
}

.event-list {
  display: grid;
  gap: 12px;
  padding: 15px 18px 20px;
}

.event-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: 112px;
  background: #fff;
  border: 2px solid #111;
  box-shadow: 4px 4px 0 #b3afa1;
}

.event-card__date {
  display: grid;
  align-content: center;
  color: #fff;
  background: var(--picnic-green);
  border-right: 2px solid #111;
  text-align: center;
}

.event-card:first-child .event-card__date {
  background: var(--coral);
}

.event-card__date span {
  color: #fff;
  font: 900 12px var(--mono-font);
  letter-spacing: 0.11em;
}

.event-card:first-child .event-card__date span {
  color: #111;
}

.event-card__date strong {
  font-size: 34px;
  line-height: 1;
}

.event-card__copy {
  min-width: 0;
  padding: 13px 15px;
}

.event-card__copy h3,
.event-card__copy p {
  margin: 0;
}

.event-card__copy h3 {
  margin-bottom: 3px;
  font-size: 18px;
}

.event-card__meta {
  color: var(--coral-dark);
  font: 900 11px var(--mono-font);
}

.event-card__description {
  margin-top: 8px !important;
  color: #55554e;
}

.event-card__action {
  display: grid;
  width: 130px;
  padding: 13px;
  align-content: center;
  gap: 7px;
  background: #f1eedf;
  border-left: 1px solid #aaa;
}

.event-card__price {
  font: 900 14px var(--mono-font);
  text-align: center;
}

.past-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 17px;
}

.past-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  color: #fff;
  background: #111;
  border: 2px solid #111;
  box-shadow: 4px 4px 0 #aaa;
}

.past-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.past-card__copy {
  position: absolute;
  inset: auto 0 0;
  padding: 32px 12px 12px;
  background: linear-gradient(transparent, rgba(5, 20, 18, 0.95));
}

.past-card__copy h3,
.past-card__copy p {
  margin: 0;
}

.past-card__copy h3 {
  color: var(--yellow);
  font-size: 17px;
}

.past-card__copy p {
  font: 11px var(--mono-font);
}

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

.gallery-item {
  position: relative;
  min-height: 150px;
  padding: 0;
  overflow: hidden;
  background: #ddd;
  border: 2px solid #fff;
  outline: 1px solid #777;
  cursor: zoom-in;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  transition: filter 160ms ease, transform 160ms ease;
}

.gallery-item:hover img {
  filter: saturate(1.15);
  transform: scale(1.025);
}

.gallery-item span {
  position: absolute;
  right: 5px;
  bottom: 5px;
  left: 5px;
  padding: 4px 6px;
  overflow: hidden;
  color: #fff;
  background: rgba(8, 34, 31, 0.8);
  font: 10px var(--mono-font);
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-viewer {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 12px;
  color: #fff;
  background: #111;
}

.photo-viewer img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.photo-viewer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 9px;
  font-family: var(--mono-font);
}

.video-library {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
}

.video-file {
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid #111;
  box-shadow: 4px 4px 0 #aaa;
  text-align: left;
  cursor: pointer;
}

.video-file__thumb {
  position: relative;
  display: block;
  height: 190px;
  overflow: hidden;
  background: #111;
}

.video-file__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.82);
}

.video-file__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--coral);
  border: 2px solid #111;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
  font-size: 22px;
  transform: translate(-50%, -50%);
}

.video-file__copy {
  display: block;
  padding: 9px 11px;
}

.video-file__copy strong,
.video-file__copy small {
  display: block;
}

.video-file__copy small {
  margin-top: 3px;
  color: #666;
  font-family: var(--mono-font);
}

.video-player {
  display: grid;
  min-height: 100%;
  padding: 12px;
  place-content: center;
  color: #fff;
  background: #111;
}

.video-player video {
  display: block;
  width: min(100%, 760px);
  max-height: 60vh;
  background: #000;
  border: 1px solid #777;
}

.video-player__copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.music-shell {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 100%;
  background: #e9e6d8;
}

.music-now {
  display: grid;
  padding: 18px;
  place-content: center;
  color: #d4ff99;
  background: var(--deep-green);
  border-right: 3px solid #111;
  text-align: center;
}

.music-disc {
  display: grid;
  width: 126px;
  height: 126px;
  margin: 0 auto 14px;
  place-items: center;
  background: conic-gradient(#69bbb2, #f3d36a, #ef654d, #c5c5c5, #69bbb2);
  border: 3px solid #111;
  border-radius: 50%;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.35);
}

.music-disc::after {
  width: 34px;
  height: 34px;
  background: #fff;
  border: 3px solid #111;
  border-radius: 50%;
  content: "";
}

.is-playing .music-disc,
.radio-player.is-playing .radio-player__meter i {
  animation: spin 4s linear infinite;
}

.music-now strong {
  font-family: var(--mono-font);
}

.music-now small {
  margin-top: 4px;
  color: #9fbeb1;
}

.track-list {
  margin: 0;
  padding: 8px;
  list-style: none;
}

.track-list li + li {
  border-top: 1px dotted #999;
}

.track-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  width: 100%;
  padding: 10px 8px;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.track-row:hover,
.track-row.is-current {
  color: #fff;
  background: var(--picnic-green);
}

.track-row__number,
.track-row__time {
  font-family: var(--mono-font);
}

.track-row__title strong,
.track-row__title small {
  display: block;
}

.track-row__title small {
  color: #696961;
}

.track-row:hover small,
.track-row.is-current small {
  color: #c4ded8;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 17px;
}

.merch-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #fff;
  border: 2px solid #111;
  box-shadow: 4px 4px 0 #aaa;
}

.merch-art {
  position: relative;
  display: grid;
  height: 180px;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.7), transparent 50%),
    #dfdbc9;
  border-bottom: 2px solid #111;
}

.merch-art--tee::before {
  width: 130px;
  height: 126px;
  background: var(--deep-green);
  clip-path: polygon(22% 0, 39% 8%, 61% 8%, 78% 0, 100% 17%, 86% 42%, 76% 35%, 76% 100%, 24% 100%, 24% 35%, 14% 42%, 0 17%);
  content: "";
}

.merch-art--tee::after {
  position: absolute;
  color: var(--yellow);
  content: "1GP";
  font: 950 25px var(--system-font);
  transform: rotate(-4deg);
}

.merch-art--cap::before {
  width: 120px;
  height: 72px;
  background: var(--coral);
  border: 3px solid #111;
  border-radius: 70px 70px 15px 15px;
  content: "";
}

.merch-art--cap::after {
  position: absolute;
  right: 24px;
  bottom: 42px;
  width: 75px;
  height: 22px;
  background: var(--coral);
  border: 3px solid #111;
  border-radius: 50%;
  content: "";
  transform: rotate(7deg);
}

.merch-art--blanket {
  background: #cab97b;
}

.merch-art--blanket::before {
  width: 135px;
  height: 120px;
  background: repeating-conic-gradient(var(--coral) 0 25%, var(--yellow) 0 50%) 50% / 45px 45px;
  border: 3px solid #111;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.25);
  content: "";
  transform: rotate(-5deg);
}

.merch-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 11px;
}

.merch-card__copy h3,
.merch-card__copy p {
  margin: 0;
}

.merch-card__copy h3 {
  font-size: 16px;
}

.merch-card__copy p {
  margin: 5px 0 12px;
  color: #666;
}

.merch-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.merch-price {
  font: 900 14px var(--mono-font);
}

.support-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 100%;
}

.support-sidebar {
  padding: 18px;
  color: #fff;
  background: var(--deep-green);
  border-right: 2px solid #111;
}

.support-face {
  display: grid;
  width: 88px;
  height: 88px;
  margin-bottom: 16px;
  place-items: center;
  color: #111;
  background: var(--yellow);
  border: 3px solid #111;
  border-radius: 50%;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.35);
  font: 900 35px var(--mono-font);
}

.support-sidebar h2,
.support-sidebar p {
  margin: 0;
}

.support-sidebar h2 {
  color: var(--yellow);
  font-size: 20px;
}

.support-sidebar p {
  margin-top: 6px;
  color: #c8dcd7;
}

.support-main {
  padding: 18px;
}

.support-main h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.faq-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 13px;
}

.faq-buttons button {
  min-height: 45px;
  text-align: left;
}

.support-answer {
  min-height: 84px;
  padding: 12px;
  background: #fff;
  border: 2px inset #ddd;
}

.support-answer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--coral-dark);
}

.support-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dotted #888;
}

.notepad {
  min-height: 100%;
  padding: 19px;
  background:
    linear-gradient(90deg, transparent 38px, rgba(239, 101, 77, 0.35) 39px, transparent 40px),
    repeating-linear-gradient(#fffdf0 0 27px, #a8d8e5 28px);
}

.notepad-form {
  display: grid;
  max-width: 590px;
  gap: 12px;
  margin-left: 34px;
}

.notepad-form h2,
.notepad-form p {
  margin: 0;
}

.notepad-form h2 {
  font: 900 24px var(--mono-font);
}

.notepad-form label {
  font-weight: 800;
}

.notepad-form label span {
  display: block;
  margin-bottom: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--picnic-green);
  font-weight: 800;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1.2fr;
  min-height: 100%;
}

.about-poster {
  position: relative;
  display: grid;
  min-height: 390px;
  padding: 28px;
  overflow: hidden;
  align-content: center;
  color: #fff;
  background: var(--coral);
  border-right: 3px solid #111;
  text-align: center;
}

.about-poster::before {
  position: absolute;
  inset: 14px;
  border: 2px solid var(--yellow);
  content: "";
}

.about-poster span,
.about-poster strong,
.about-poster small {
  position: relative;
  z-index: 1;
}

.about-poster span {
  color: var(--yellow);
  font-size: 30px;
  font-weight: 950;
}

.about-poster strong {
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.74;
  letter-spacing: -0.08em;
}

.about-poster small {
  margin-top: 20px;
  font: 900 11px var(--mono-font);
  letter-spacing: 0.18em;
}

.about-copy {
  align-self: center;
  max-width: 590px;
  padding: 28px;
}

.about-copy h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1;
}

.about-copy p {
  color: #484841;
  font-size: 15px;
}

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

.about-values div {
  padding: 10px;
  background: #ece8d7;
  border: 1px solid #777;
  box-shadow: 2px 2px 0 #aaa;
}

.about-values strong,
.about-values span {
  display: block;
}

.about-values strong {
  color: var(--coral-dark);
  font: 900 11px var(--mono-font);
}

.photo-credit {
  margin-top: 10px;
  color: #808080 !important;
  font-size: 9px !important;
}

.about-values span {
  margin-top: 3px;
}

.basket-layout {
  display: grid;
  grid-template-columns: 1fr 230px;
  min-height: 100%;
}

.basket-items {
  padding: 12px;
}

.basket-empty {
  display: grid;
  min-height: 260px;
  padding: 25px;
  place-content: center;
  color: #666;
  text-align: center;
}

.basket-empty svg {
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;
  opacity: 0.55;
}

.basket-line {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #fff;
  border: 1px solid #888;
  box-shadow: 2px 2px 0 #bbb;
}

.basket-line + .basket-line {
  margin-top: 8px;
}

.basket-line__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--picnic-green);
  border: 2px solid #111;
  font: 900 12px var(--mono-font);
}

.basket-line h3,
.basket-line p {
  margin: 0;
}

.basket-line h3 {
  font-size: 14px;
}

.basket-line p {
  color: #666;
  font: 10px var(--mono-font);
}

.basket-line__end {
  text-align: right;
}

.basket-line__end strong {
  display: block;
  font-family: var(--mono-font);
}

.remove-line {
  padding: 0;
  color: var(--coral-dark);
  background: none;
  border: 0;
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
}

.basket-summary {
  padding: 17px;
  background: #e8e4d4;
  border-left: 2px solid #777;
}

.basket-summary h2 {
  margin: 0 0 15px;
  font-size: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px dotted #888;
}

.summary-row--total {
  margin-top: 9px;
  border-bottom: 0;
  font: 900 15px var(--mono-font);
}

.basket-summary .retro-button {
  width: 100%;
  margin-top: 14px;
}

.danger-screen {
  display: grid;
  min-height: 100%;
  padding: 24px;
  place-content: center;
  color: #ffef74;
  background: #101010;
  font-family: var(--mono-font);
  text-align: center;
}

.danger-screen__symbol {
  font-size: 56px;
  animation: warning 0.75s steps(2) infinite;
}

.danger-screen h2 {
  margin: 8px 0;
  color: #ff5f4d;
  font-size: 24px;
}

.danger-screen p {
  max-width: 470px;
  color: #ddd;
}

.danger-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 13px;
}

.danger-actions .retro-button:first-child {
  color: #fff;
  background: #ba3325;
}

.chaos-unlocked {
  color: var(--yellow) !important;
  font-weight: 900;
}

.confetti {
  position: fixed;
  z-index: 9998;
  top: -20px;
  width: 9px;
  height: 18px;
  pointer-events: none;
  animation: confetti-fall 3.2s linear forwards;
}

.picnic-ant {
  position: fixed;
  z-index: 9997;
  width: 7px;
  height: 7px;
  background: #111;
  border-radius: 50%;
  box-shadow: -7px 1px 0 #111, 7px -1px 0 #111;
  pointer-events: none;
  animation: ant-run 8s linear forwards;
}

.radio-player {
  position: absolute;
  z-index: 9;
  bottom: 50px;
  left: 126px;
  width: 256px;
  padding: 5px;
  color: #caff94;
  background: #1d2521;
  border-top: 2px solid #9caa9f;
  border-left: 2px solid #9caa9f;
  border-right: 2px solid #0a0b0a;
  border-bottom: 2px solid #0a0b0a;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.45);
  font-family: var(--mono-font);
}

.radio-player__top,
.radio-player__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.radio-player__top {
  padding: 0 3px 4px;
  color: #c4cec6;
  font-size: 10px;
}

.radio-player__screen {
  padding: 5px 7px;
  overflow: hidden;
  background: #07100c;
  border: 2px inset #68746c;
  font-size: 10px;
}

.radio-player__screen > span {
  display: block;
  margin-bottom: 2px;
  color: var(--coral);
}

.radio-marquee {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.radio-marquee span {
  display: inline-block;
  min-width: 100%;
  padding-left: 100%;
  animation: radio-marquee 11s linear infinite;
}

.radio-player__controls {
  padding-top: 5px;
}

.radio-player__controls button {
  min-width: 29px;
  height: 22px;
  padding: 0 3px;
  color: #111;
  background: #aaa;
  border: 2px outset #ddd;
  font: 900 10px var(--mono-font);
  cursor: pointer;
}

.radio-player__meter {
  flex: 1;
  height: 9px;
  overflow: hidden;
  background: #06100c;
  border: 1px inset #777;
}

.radio-player__meter i {
  display: block;
  width: 0;
  height: 100%;
  background: repeating-linear-gradient(90deg, #95ef83 0 3px, transparent 3px 5px);
}

.start-menu {
  position: absolute;
  z-index: 200;
  bottom: var(--taskbar-height);
  left: 2px;
  display: grid;
  grid-template-columns: 28px 1fr;
  width: 250px;
  color: #111;
  background: var(--window);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.start-menu[hidden] {
  display: none;
}

.start-menu__rail {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--deep-green);
}

.start-menu__rail span {
  position: absolute;
  bottom: 8px;
  left: 20px;
  width: 210px;
  font: 900 14px var(--mono-font);
  letter-spacing: 0.05em;
  transform: rotate(-90deg);
  transform-origin: bottom left;
}

.start-menu__items {
  padding: 5px;
}

.start-menu__items button {
  display: grid;
  grid-template-columns: 27px 1fr;
  width: 100%;
  min-height: 37px;
  padding: 5px 8px;
  align-items: center;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.start-menu__items button:hover,
.start-menu__items button:focus-visible {
  color: #fff;
  background: var(--picnic-green);
}

.start-menu__items button span {
  color: var(--coral-dark);
  font-size: 18px;
}

.start-menu__items button:hover span {
  color: var(--yellow);
}

.start-menu__items hr {
  margin: 3px;
  border-top: 1px solid #777;
  border-bottom: 1px solid #fff;
}

.taskbar {
  position: absolute;
  z-index: 300;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: var(--taskbar-height);
  padding: 4px;
  align-items: stretch;
  gap: 5px;
  background: var(--window);
  border-top: 2px solid #fff;
  box-shadow: 0 -1px #777;
}

.start-button,
.taskbar__tickets,
.taskbar-window {
  min-width: 0;
  color: #111;
  background: var(--window);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  font-weight: 900;
  cursor: pointer;
}

.start-button {
  display: flex;
  width: 92px;
  flex: 0 0 92px;
  padding: 2px 6px;
  align-items: center;
  gap: 5px;
  font-size: 13px;
}

.start-button[aria-expanded="true"],
.taskbar-window.is-active {
  background: #b4b4aa;
  border-color: #333 #fff #fff #333;
}

.start-button__flag {
  display: grid;
  width: 28px;
  height: 22px;
  place-items: center;
  color: #fff;
  background: repeating-conic-gradient(var(--coral) 0 25%, var(--yellow) 0 50%) 50% / 12px 12px;
  border: 1px solid #111;
  font: 900 9px var(--mono-font);
  text-shadow: 1px 1px #111;
  transform: rotate(-2deg);
}

.taskbar__windows {
  display: flex;
  min-width: 0;
  flex: 1;
  gap: 4px;
  overflow: hidden;
}

.taskbar-window {
  width: min(170px, 20vw);
  padding: 3px 8px;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.taskbar__tickets {
  flex: 0 0 auto;
  padding: 0 12px;
  color: #fff;
  background: var(--coral-dark);
}

.taskbar__clock {
  display: grid;
  min-width: 68px;
  padding: 0 8px;
  place-items: center;
  border-top: 2px solid #777;
  border-left: 2px solid #777;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  font: 11px var(--mono-font);
}

.toast {
  position: fixed;
  z-index: 10001;
  right: 16px;
  bottom: 54px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 10px 13px;
  color: #fff;
  background: var(--deep-green);
  border: 2px solid var(--cream);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.45);
  font: 12px var(--mono-font);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 150ms ease, transform 150ms ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes warning {
  50% { opacity: 0.2; transform: scale(0.94); }
}

@keyframes radio-marquee {
  to { transform: translateX(-200%); }
}

@keyframes confetti-fall {
  to { transform: translate(var(--drift), 110vh) rotate(800deg); }
}

@keyframes ant-run {
  from { transform: translate(-30px, 0) rotate(0); }
  30% { transform: translate(35vw, -35px) rotate(15deg); }
  65% { transform: translate(70vw, 25px) rotate(-12deg); }
  to { transform: translate(110vw, -10px) rotate(5deg); }
}

@media (max-width: 1000px) {
  .next-picnic {
    width: min(580px, calc(100vw - 260px));
  }

  .desktop-icon {
    width: 86px;
  }

  .desktop-icon--about {
    right: 105px;
  }

  .radio-player {
    left: 105px;
  }

  .past-grid,
  .merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --taskbar-height: 44px;
  }

  .login-brand {
    top: 12vh;
    left: 50%;
    width: 280px;
    transform: translateX(-50%) rotate(-3deg);
  }

  .login-brand::after {
    right: -10px;
    bottom: -26px;
    width: 62px;
    height: 62px;
    background-size: 20px 20px;
  }

  .login-brand__one {
    font-size: 30px;
  }

  .login-brand__giant {
    font-size: 70px;
  }

  .login-brand__picnic {
    font-size: 63px;
  }

  .login-window {
    top: auto;
    right: 50%;
    bottom: 10vh;
    width: min(430px, calc(100vw - 28px));
    transform: translateX(50%);
  }

  .login-window__body {
    grid-template-columns: 76px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .login-avatar {
    width: 72px;
    height: 72px;
  }

  .login-foot {
    right: 50%;
    bottom: 18px;
    width: 100%;
    text-align: center;
    transform: translateX(50%);
  }

  .scene--desktop {
    overflow-y: auto;
    background-position: 58% center;
  }

  .desktop-shade {
    position: fixed;
    background: linear-gradient(rgba(8, 35, 32, 0.52), rgba(8, 35, 32, 0.24) 42%, rgba(8, 35, 32, 0.62));
  }

  .desktop-brand,
  .desktop-tip {
    display: none;
  }

  .next-picnic {
    position: absolute;
    top: 10px;
    left: 10px;
    grid-template-columns: 55px 1fr;
    width: calc(100vw - 20px);
    min-width: 0;
    min-height: 112px;
    transform: none;
  }

  .next-picnic__copy {
    padding-right: 8px;
  }

  .next-picnic__copy h1 {
    font-size: 15px;
  }

  .next-picnic__copy span {
    white-space: normal;
  }

  .next-picnic__cta {
    grid-column: 2;
    width: calc(100% - 8px);
    min-height: 30px;
    margin: 0 8px 8px 0;
    padding: 3px 8px;
  }

  .desktop-icons {
    right: 8px;
    left: 8px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .desktop-icons--left {
    top: 137px;
  }

  .desktop-icons--right {
    top: 231px;
  }

  .desktop-icon {
    width: auto;
    min-width: 0;
    min-height: 90px;
    padding: 3px 1px;
    font-size: 9px;
  }

  .desktop-icon__art {
    width: 44px;
    height: 44px;
  }

  .basket-badge {
    top: -1px;
    right: 4px;
  }

  .desktop-icon--about {
    top: 325px;
    right: auto;
    bottom: auto;
    left: 8px;
    width: calc((100vw - 16px) / 5);
  }

  .radio-player {
    right: 10px;
    bottom: 55px;
    left: auto;
    width: min(256px, calc(100vw - 105px));
  }

  .window-layer {
    position: fixed;
  }

  .app-window,
  .app-window.is-maximized {
    position: fixed !important;
    top: 7px !important;
    left: 7px !important;
    width: calc(100vw - 14px) !important;
    height: calc(100dvh - var(--taskbar-height) - 12px) !important;
    min-width: 0;
    min-height: 0;
    transform: none !important;
  }

  .app-window > .title-bar {
    height: 31px;
    flex-basis: 31px;
    cursor: default;
  }

  .window-control {
    width: 28px;
    height: 24px;
  }

  .window-menu {
    display: none;
  }

  .window-status {
    flex-basis: 27px;
  }

  .event-card {
    grid-template-columns: 59px 1fr;
  }

  .event-card__action {
    grid-column: 1 / -1;
    display: flex;
    width: auto;
    padding: 8px;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid #aaa;
    border-left: 0;
  }

  .past-grid,
  .gallery-grid,
  .video-library,
  .merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-file__thumb {
    height: 150px;
  }

  .music-shell,
  .support-layout,
  .about-layout,
  .basket-layout {
    grid-template-columns: 1fr;
  }

  .music-now {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 12px;
    align-items: center;
    border-right: 0;
    border-bottom: 3px solid #111;
    text-align: left;
  }

  .music-disc {
    width: 72px;
    height: 72px;
    margin: 0;
  }

  .music-disc::after {
    width: 20px;
    height: 20px;
  }

  .support-sidebar {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding: 12px;
    align-items: center;
    border-right: 0;
    border-bottom: 2px solid #111;
  }

  .support-face {
    width: 64px;
    height: 64px;
    margin: 0;
  }

  .about-poster {
    min-height: 210px;
    border-right: 0;
    border-bottom: 3px solid #111;
  }

  .basket-summary {
    border-top: 2px solid #777;
    border-left: 0;
  }

  .start-button {
    width: 81px;
    flex-basis: 81px;
  }

  .taskbar__tickets {
    padding: 0 8px;
  }

  .taskbar__clock {
    min-width: 55px;
    padding: 0 4px;
  }

  .taskbar-window {
    width: 42px;
    padding: 3px 5px;
    font-size: 0;
  }

  .taskbar-window::first-letter {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .boot-copy {
    top: 5vh;
    left: 16px;
    width: calc(100vw - 32px);
    font-size: 11px;
  }

  .boot-kicker {
    margin-bottom: 18px;
  }

  .login-window__body {
    grid-template-columns: 1fr;
  }

  .login-avatar {
    display: none;
  }

  .next-picnic__copy p {
    font-size: 9px;
  }

  .desktop-icon {
    font-size: 8px;
  }

  .desktop-icon__art {
    width: 40px;
    height: 40px;
  }

  .past-grid,
  .gallery-grid,
  .video-library,
  .merch-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 220px;
  }

  .event-card__copy {
    padding: 10px;
  }

  .event-card__copy h3 {
    font-size: 16px;
  }

  .section-intro {
    padding: 14px 12px 2px;
  }

  .section-intro h2 {
    font-size: 21px;
  }

  .event-list,
  .past-grid,
  .merch-grid {
    padding: 12px;
  }

  .form-row,
  .faq-buttons,
  .about-values {
    grid-template-columns: 1fr;
  }

  .notepad {
    padding: 15px 10px;
  }

  .notepad-form {
    margin-left: 28px;
  }

  .form-actions,
  .support-contact,
  .video-player__copy {
    align-items: stretch;
    flex-direction: column;
  }

  .radio-player {
    width: calc(100vw - 96px);
  }

  .taskbar__tickets {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Windows 98 fidelity pass */
:root {
  --desktop-green: #008080;
  --deep-green: #000080;
  --picnic-green: #006b5f;
  --window: #c0c0c0;
  --window-light: #dfdfdf;
  --window-mid: #808080;
  --window-dark: #404040;
  --paper: #fff;
  --blue: #000080;
  --taskbar-height: 36px;
  --system-font: "Pixelated MS Sans Serif", "MS Sans Serif", Arial, sans-serif;
  --mono-font: "Lucida Console", "Courier New", monospace;
}

body {
  color: #000;
  background: #008080;
  font: 11px/1.25 var(--system-font);
  -webkit-font-smoothing: none;
  text-rendering: geometricPrecision;
}

button,
input,
textarea,
select {
  font: 11px/1.2 var(--system-font);
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 1px dotted #000;
  outline-offset: -4px;
}

.skip-link {
  padding: 5px 8px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  font-weight: 700;
}

.scene--boot {
  color: #c0c0c0;
  background: #000;
  font: 13px/1.45 "Lucida Console", monospace;
}

.scene--boot::after {
  display: none;
}

.boot-copy {
  top: 6vh;
  left: clamp(20px, 5vw, 64px);
}

.boot-kicker {
  margin-bottom: 22px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0;
}

.boot-caret {
  width: 9px;
  height: 15px;
  background: #c0c0c0;
}

.boot-skip {
  color: #c0c0c0;
  font: 11px var(--system-font);
}

.scene--login {
  display: none;
  overflow: auto;
  color: #000;
  background-color: #008080;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 4px 4px;
}

.scene--login.is-active {
  display: grid;
  place-items: center;
}

.scene--login::before,
.scene--login::after {
  display: none;
}

.login-stage {
  display: grid;
  width: min(420px, calc(100vw - 32px));
  gap: 20px;
}

.login-brand {
  position: static;
  display: flex;
  width: auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  line-height: 1.1;
  text-shadow: 1px 1px #004040;
  transform: none;
}

.login-brand::after {
  display: none;
}

.login-brand svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.45));
  image-rendering: pixelated;
}

.login-brand div,
.login-brand strong,
.login-brand span {
  display: block;
}

.login-brand strong {
  font-size: 17px;
  letter-spacing: 0.02em;
}

.login-brand span {
  margin-top: 3px;
  font-size: 11px;
  opacity: 0.9;
}

.retro-window {
  color: #000;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  box-shadow: inset 1px 1px #dfdfdf, inset -1px -1px #808080, 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.title-bar {
  height: 22px;
  min-height: 22px;
  margin: 2px;
  padding: 2px 2px 2px 4px;
  color: #fff;
  background: linear-gradient(90deg, #000080, #1084d0);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.login-window {
  position: static;
  width: 100%;
  transform: none;
}

.login-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 4px;
}

.login-title svg {
  width: 16px;
  height: 16px;
}

.login-window__body {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 18px 16px 16px;
}

.login-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: transparent;
  border: 0;
  transform: none;
}

.login-avatar svg {
  width: 48px;
  height: 48px;
}

.login-form {
  min-width: 0;
}

.login-greeting {
  margin: 0 0 15px;
  font-size: 11px;
  font-weight: 400;
}

.login-field-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 8px;
}

.login-domain {
  margin: 9px 0 15px 72px;
  color: #404040;
}

.login-actions {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
}

.login-actions .retro-button {
  width: 72px;
}

.enter-button {
  margin-top: 0;
  box-shadow: inset 0 0 0 1px #000, inset 2px 2px #fff, inset -2px -2px #808080;
}

.login-foot {
  position: fixed;
  right: 0;
  bottom: 14px;
  left: 0;
  width: auto;
  color: rgba(255, 255, 255, 0.9);
  font: 11px "Lucida Console", monospace;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 1px 1px #004040;
  transform: none;
}

.retro-input,
.retro-textarea,
.retro-select {
  min-height: 23px;
  padding: 3px 4px;
  background: #fff;
  border: 2px solid;
  border-color: #404040 #fff #fff #404040;
  box-shadow: inset 1px 1px #808080;
}

.retro-textarea {
  min-height: 110px;
}

.retro-button {
  min-height: 23px;
  padding: 3px 10px;
  color: #000;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  box-shadow: inset 1px 1px #dfdfdf;
  font-weight: 400;
}

.retro-button:hover:not(:disabled) {
  background: #c0c0c0;
}

.retro-button:active,
.retro-button.is-pressed {
  padding: 4px 9px 2px 11px;
  border-color: #404040 #fff #fff #404040;
  box-shadow: inset 1px 1px #808080;
}

.retro-button--primary {
  color: #000;
  background: #c0c0c0;
  box-shadow: inset 0 0 0 1px #000, inset 2px 2px #fff, inset -2px -2px #808080;
}

.scene--desktop {
  overflow: hidden;
  background-color: #008080;
  background-image: url("assets/one-giant-picnic-xp-wallpaper.webp");
  background-position: center;
  background-size: cover;
}

.desktop-shade {
  background: linear-gradient(90deg, rgba(0, 35, 48, 0.18), transparent 34%);
}

.desktop-icons {
  position: absolute;
  z-index: 5;
  top: 8px;
  right: auto;
  left: 8px;
  display: grid;
  grid-template-columns: repeat(2, 78px);
  width: 156px;
  gap: 4px 2px;
}

.desktop-icon {
  display: grid;
  width: 78px;
  min-height: 66px;
  padding: 3px 2px;
  place-items: center;
  align-content: start;
  gap: 2px;
  color: #fff;
  background: transparent;
  border: 1px dotted transparent;
  font: 10px/1.08 var(--system-font);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.95);
  cursor: default;
}

.desktop-icon:hover,
.desktop-icon:focus-visible {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  outline: 0;
}

.desktop-icon.is-selected {
  background: rgba(0, 0, 128, 0.55);
  border-color: rgba(255, 255, 255, 0.75);
}

.desktop-icon__art {
  width: 40px;
  height: 40px;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.65));
  shape-rendering: crispEdges;
}

.desktop-icon > span:last-child {
  display: -webkit-box;
  width: 74px;
  max-height: 2.2em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.desktop-icon--danger span {
  color: #fff;
}

.basket-badge {
  top: 0;
  right: 9px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  background: #fff066;
  border: 1px solid #000;
  border-radius: 0;
  font: 9px var(--system-font);
}

.next-picnic {
  position: absolute;
  z-index: 6;
  top: 14px;
  right: 14px;
  left: auto;
  display: block;
  width: 340px;
  min-width: 0;
  min-height: 0;
  color: #000;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  box-shadow: inset 1px 1px #dfdfdf, inset -1px -1px #808080, 4px 4px rgba(0, 0, 0, 0.35);
  transform: none;
}

.next-picnic__title {
  display: flex;
  height: 22px;
  margin: 2px;
  padding: 2px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(90deg, #000080, #1084d0);
  font-weight: 700;
}

.next-picnic__title span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.next-picnic__title svg {
  width: 16px;
  height: 16px;
}

.next-picnic__title button {
  display: grid;
  width: 18px;
  height: 16px;
  padding: 0;
  place-items: center;
  background: #c0c0c0;
  border: 1px solid;
  border-color: #fff #404040 #404040 #fff;
  font: 700 11px var(--system-font);
}

.next-picnic__body {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  margin: 3px;
  padding: 7px;
  background: #fff;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
}

.next-picnic__date {
  display: grid;
  width: 40px;
  height: 48px;
  align-self: center;
  place-content: center;
  color: #fff;
  background: #000080;
  border: 0;
  line-height: 0.9;
}

.next-picnic__date span {
  color: #fff;
  font: 700 9px var(--system-font);
  letter-spacing: 0;
}

.next-picnic__date strong {
  font-size: 22px;
}

.next-picnic__copy {
  padding: 0 4px;
}

.next-picnic__copy p {
  color: #000080;
  font: 700 9px var(--system-font);
  letter-spacing: 0;
}

.next-picnic__copy h1 {
  margin: 2px 0;
  font-size: 13px;
}

.next-picnic__copy span {
  color: #404040;
  font-size: 10px;
}

.next-picnic__cta {
  grid-column: 2;
  justify-self: end;
  min-height: 23px;
  margin: 7px 3px 0 0;
  color: #000;
  background: #c0c0c0;
  white-space: nowrap;
}

.desktop-tip {
  right: 12px;
  bottom: 45px;
  left: auto;
  padding: 5px 7px;
  color: #000;
  background: #ffffe1;
  border: 1px solid #000;
  box-shadow: 2px 2px rgba(0, 0, 0, 0.35);
  font: 10px var(--system-font);
  transform: none;
}

.window-layer {
  inset: 0 0 var(--taskbar-height);
}

.app-window {
  min-width: 280px;
  min-height: 180px;
}

.app-window.is-focused > .title-bar {
  background: linear-gradient(90deg, #000080, #1084d0);
}

.app-window:not(.is-focused) > .title-bar {
  color: #d4d4d4;
  background: linear-gradient(90deg, #7f7f7f, #b0b0b0);
}

.app-window.is-maximized {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  box-shadow: none;
}

.app-window > .title-bar {
  flex-basis: 22px;
}

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

.window-title svg,
.taskbar-window svg,
.mini-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  shape-rendering: crispEdges;
}

.window-controls {
  gap: 2px;
}

.window-control {
  width: 18px;
  height: 16px;
  border-width: 1px;
  font: 700 10px/1 var(--system-font);
}

.window-menu {
  position: relative;
  display: flex;
  flex: 0 0 20px;
  gap: 1px;
  margin: 0 3px;
  padding: 0;
  border-bottom: 1px solid #808080;
  font-size: 11px;
}

.window-menu__item {
  min-width: 0;
  padding: 2px 7px 3px;
  background: transparent;
  border: 0;
  text-align: left;
}

.window-menu__item:hover,
.window-menu__item[aria-expanded="true"] {
  color: #fff;
  background: #000080;
}

.window-menu__item::first-letter {
  text-decoration: underline;
}

.window-dropdown {
  position: absolute;
  z-index: 10;
  top: 19px;
  min-width: 145px;
  padding: 2px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  box-shadow: 2px 2px rgba(0, 0, 0, 0.4);
}

.window-dropdown button {
  display: flex;
  width: 100%;
  min-height: 22px;
  padding: 3px 20px;
  align-items: center;
  background: transparent;
  border: 0;
  text-align: left;
}

.window-dropdown button:hover,
.window-dropdown button:focus-visible {
  color: #fff;
  background: #000080;
  outline: 0;
}

.window-body {
  margin: 2px 3px;
  background: #fff;
  border-color: #808080 #fff #fff #808080;
  scrollbar-color: #c0c0c0 #dfdfdf;
}

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

.window-body::-webkit-scrollbar-track {
  background:
    linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%),
    linear-gradient(45deg, #fff 25%, #dfdfdf 25%, #dfdfdf 75%, #fff 75%);
  background-position: 0 0, 2px 2px;
  background-size: 4px 4px;
}

.window-body::-webkit-scrollbar-thumb {
  min-height: 28px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  box-shadow: inset 1px 1px #dfdfdf, inset -1px -1px #808080;
}

.window-status {
  flex-basis: 20px;
  margin: 0 3px 3px;
  padding: 2px 5px;
  color: #000;
  border-color: #808080 #fff #fff #808080;
  font: 10px var(--system-font);
}

.folder-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px;
  padding: 3px 5px;
  align-items: center;
  background: #c0c0c0;
  border-bottom: 1px solid #808080;
}

.folder-header strong {
  font: 700 11px var(--system-font);
}

.folder-header span {
  padding: 3px 5px;
  color: #000;
  background: #fff;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  font: 10px var(--system-font);
}

.section-intro {
  max-width: none;
  padding: 13px 14px 6px;
  background: linear-gradient(90deg, #fff, #f2f4ff);
  border-bottom: 1px solid #dfdfdf;
}

.section-intro__eyebrow {
  color: #000080;
  font: 700 9px var(--system-font);
  letter-spacing: 0;
}

.section-intro h2 {
  margin-bottom: 4px;
  color: #000080;
  font-size: 17px;
}

.section-intro p:last-child {
  color: #404040;
}

.event-list {
  gap: 0;
  padding: 8px;
}

.event-card {
  grid-template-columns: 50px minmax(0, 1fr) 112px;
  min-height: 74px;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #dfdfdf;
  box-shadow: none;
}

.event-card:hover {
  outline: 1px dotted #000080;
  outline-offset: -2px;
}

.event-card__date,
.event-card:first-child .event-card__date {
  margin: 6px;
  color: #fff;
  background: #000080;
  border: 0;
}

.event-card__date span,
.event-card:first-child .event-card__date span {
  color: #fff;
  font: 700 9px var(--system-font);
  letter-spacing: 0;
}

.event-card__date strong {
  font-size: 20px;
}

.event-card__copy {
  padding: 8px 7px;
}

.event-card__copy h3 {
  margin: 2px 0;
  color: #000080;
  font-size: 13px;
}

.event-card__meta {
  color: #404040;
  font: 9px var(--system-font);
}

.event-card__description {
  margin-top: 5px !important;
  color: #404040;
}

.event-card__action {
  width: auto;
  padding: 8px;
  gap: 4px;
  background: #f2f2f2;
  border-left: 1px solid #dfdfdf;
}

.event-card__price {
  font: 700 11px var(--system-font);
}

.past-grid,
.gallery-grid,
.video-library {
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 6px;
  padding: 10px;
}

.past-card,
.video-file,
.gallery-item {
  min-height: 0;
  padding: 4px;
  color: #000;
  background: transparent;
  border: 1px dotted transparent;
  box-shadow: none;
}

.past-card:hover,
.video-file:hover,
.gallery-item:hover,
.gallery-item:focus-visible {
  color: #fff;
  background: #000080;
  border-color: #fff;
  outline: 0;
}

.past-card img,
.gallery-item img,
.video-file__thumb {
  display: block;
  width: 100%;
  height: 118px;
  min-height: 118px;
  object-fit: cover;
  background: #fff;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  filter: none;
}

.gallery-item:hover img {
  filter: none;
  transform: none;
}

.past-card__copy,
.gallery-item span,
.video-file__copy {
  position: static;
  display: block;
  padding: 5px 2px 2px;
  color: inherit;
  background: transparent;
  text-align: center;
}

.past-card__copy h3,
.video-file__copy strong {
  color: inherit;
  font-size: 11px;
  font-weight: 400;
}

.past-card__copy p,
.gallery-item span,
.video-file__copy small {
  color: inherit;
  font: 9px var(--system-font);
}

.video-file__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-file__play {
  width: 30px;
  height: 24px;
  color: #fff;
  background: #000080;
  border: 1px solid #fff;
  box-shadow: 1px 1px #000;
  font-size: 12px;
}

.photo-viewer {
  padding: 6px;
  background: #000;
}

.photo-viewer__bar {
  padding: 5px;
  color: #000;
  background: #c0c0c0;
  font-family: var(--system-font);
}

.music-shell {
  grid-template-columns: 142px 1fr;
  background: #fff;
}

.music-now {
  padding: 12px;
  color: #fff;
  background: #000080;
  border-right: 2px solid #808080;
}

.music-disc {
  width: 88px;
  height: 88px;
  margin-bottom: 10px;
  border: 2px solid #000;
  box-shadow: 2px 2px #000;
}

.music-disc::after {
  width: 22px;
  height: 22px;
  border-width: 2px;
}

.music-now strong,
.music-now small {
  font-family: var(--system-font);
}

.track-list {
  padding: 3px;
}

.track-list li + li {
  border-top: 1px solid #dfdfdf;
}

.track-row {
  grid-template-columns: 25px 1fr auto;
  padding: 6px 5px;
  gap: 5px;
}

.track-row:hover,
.track-row.is-current {
  color: #fff;
  background: #000080;
}

.track-row__number,
.track-row__time {
  font-family: var(--system-font);
}

.merch-grid {
  gap: 8px;
  padding: 10px;
}

.merch-card {
  background: #fff;
  border: 1px solid #808080;
  box-shadow: none;
}

.merch-art {
  height: 130px;
  background: #e7e7e7;
  border-bottom: 1px solid #808080;
}

.merch-art--tee::before {
  width: 92px;
  height: 92px;
  background: #004c45;
}

.merch-art--tee::after {
  font: 700 18px var(--system-font);
  transform: none;
}

.merch-art--cap::before {
  width: 88px;
  height: 53px;
  border-width: 2px;
}

.merch-art--cap::after {
  right: 21px;
  bottom: 31px;
  width: 55px;
  height: 15px;
  border-width: 2px;
}

.merch-art--blanket::before {
  width: 94px;
  height: 84px;
  background-size: 28px 28px;
  border-width: 2px;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.25);
  transform: rotate(-3deg);
}

.merch-card__copy {
  padding: 8px;
}

.merch-card__copy h3 {
  color: #000080;
  font-size: 12px;
}

.merch-card__copy p {
  margin: 4px 0 8px;
}

.merch-price {
  font: 700 11px var(--system-font);
}

.support-layout {
  grid-template-columns: 155px 1fr;
}

.support-sidebar {
  padding: 14px;
  color: #fff;
  background: #000080;
  border-right: 2px solid #808080;
}

.support-face {
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  border-radius: 0;
  box-shadow: none;
  font: 700 22px var(--system-font);
}

.support-face svg {
  width: 44px;
  height: 44px;
}

.support-sidebar h2 {
  color: #fff;
  font-size: 14px;
}

.support-sidebar p {
  color: #fff;
}

.support-main {
  padding: 12px;
}

.support-main h3 {
  margin-bottom: 8px;
  color: #000080;
  font-size: 14px;
}

.faq-buttons {
  gap: 4px;
  margin-bottom: 8px;
}

.faq-buttons button {
  min-height: 28px;
}

.support-answer {
  min-height: 72px;
  padding: 9px;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
}

.support-answer strong {
  color: #000080;
}

.notepad {
  padding: 8px;
  background: #fff;
}

.notepad-form {
  max-width: none;
  gap: 8px;
  margin: 0;
}

.notepad-form h2 {
  font: 700 15px var(--system-font);
}

.notepad-form label {
  font-weight: 400;
}

.about-layout {
  grid-template-columns: 165px 1fr;
}

.about-poster {
  min-height: 280px;
  padding: 18px;
  background: #000080;
  border-right: 2px solid #808080;
}

.about-poster::before {
  inset: 10px;
  border: 1px solid #fff;
}

.about-poster span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.about-poster strong {
  font-size: 35px;
  letter-spacing: -0.04em;
}

.about-poster small {
  margin-top: 12px;
  font: 9px var(--system-font);
  letter-spacing: 0.08em;
}

.about-copy {
  padding: 16px;
}

.about-copy h2 {
  color: #000080;
  font-size: 18px;
}

.about-copy p {
  font-size: 11px;
}

.about-values {
  gap: 4px;
  margin-top: 12px;
}

.about-values div {
  padding: 6px;
  background: #fff;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  box-shadow: none;
}

.about-values strong {
  color: #000080;
  font: 700 10px var(--system-font);
}

.basket-layout {
  grid-template-columns: 1fr 195px;
}

.basket-items {
  padding: 6px;
}

.basket-empty svg {
  width: 64px;
  height: 64px;
}

.basket-line {
  grid-template-columns: 34px 1fr auto;
  gap: 6px;
  padding: 6px;
  border: 0;
  border-bottom: 1px solid #dfdfdf;
  box-shadow: none;
}

.basket-line__icon {
  width: 32px;
  height: 32px;
  color: #fff;
  background: #000080;
  border: 1px solid #000;
  font: 9px var(--system-font);
}

.basket-line h3 {
  color: #000080;
  font-size: 11px;
}

.basket-line p,
.basket-line__end strong {
  font-family: var(--system-font);
}

.basket-summary {
  padding: 10px;
  background: #c0c0c0;
  border-left: 2px solid #808080;
}

.basket-summary h2 {
  font-size: 14px;
}

.summary-row {
  padding: 5px 0;
}

.summary-row--total {
  font: 700 12px var(--system-font);
}

.danger-screen {
  min-height: 100%;
  padding: 18px;
  color: #000;
  background: #c0c0c0;
  font-family: var(--system-font);
}

.danger-screen__symbol {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  font-size: 38px;
  animation: none;
}

.danger-screen h2 {
  margin: 5px 0;
  color: #000;
  font-size: 14px;
}

.danger-screen p {
  color: #000;
}

.danger-actions .retro-button:first-child {
  color: #000;
  background: #c0c0c0;
}

.chaos-unlocked {
  color: #000080 !important;
}

.radio-player {
  bottom: 44px;
  left: 246px;
  width: 230px;
  padding: 3px;
  color: #00ff00;
  background: #202020;
  border: 2px solid;
  border-color: #dfdfdf #404040 #404040 #dfdfdf;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.35);
  font-family: var(--system-font);
}

.radio-player__top {
  height: 17px;
  padding: 1px 3px;
  color: #fff;
  background: linear-gradient(90deg, #000080, #1084d0);
  font-size: 9px;
}

.radio-player__screen {
  margin-top: 3px;
  padding: 4px 5px;
  border: 2px solid;
  border-color: #000 #808080 #808080 #000;
  font-size: 9px;
}

.radio-player__screen > span {
  color: #00ff00;
}

.radio-player__controls button {
  min-width: 25px;
  height: 19px;
  font: 9px var(--system-font);
}

.start-menu {
  bottom: calc(var(--taskbar-height) - 1px);
  left: 2px;
  display: grid;
  grid-template-columns: 28px 1fr;
  width: 235px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  box-shadow: 1px 1px #000, 3px 3px rgba(0, 0, 0, 0.35);
}

.start-menu__rail {
  background: linear-gradient(180deg, #000080, #000040);
}

.start-menu__rail span {
  bottom: 7px;
  left: 21px;
  width: 235px;
  color: #c0c0c0;
  font: 700 14px var(--system-font);
  letter-spacing: 0;
}

.start-menu__rail b {
  color: #fff;
}

.start-menu__items {
  padding: 2px;
}

.start-menu__items button {
  grid-template-columns: 27px 1fr 10px;
  min-height: 30px;
  padding: 2px 5px 2px 2px;
  gap: 4px;
  font-weight: 400;
}

.start-menu__items button svg {
  width: 26px;
  height: 26px;
  shape-rendering: crispEdges;
}

.start-menu__items button span {
  color: inherit;
  font-size: 11px;
}

.start-menu__items button i {
  font-style: normal;
  font-size: 8px;
  text-align: right;
}

.start-menu__items button:hover,
.start-menu__items button:focus-visible {
  color: #fff;
  background: #000080;
  outline: 0;
}

.start-menu__items hr {
  margin: 2px 3px;
}

.taskbar {
  height: var(--taskbar-height);
  padding: 3px;
  gap: 4px;
  background: #c0c0c0;
  border-top: 2px solid #dfdfdf;
  box-shadow: inset 0 1px #fff, 0 -1px #404040;
}

.start-button,
.taskbar-window {
  color: #000;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  font-weight: 700;
}

.start-button {
  width: 72px;
  flex: 0 0 72px;
  padding: 1px 5px 1px 2px;
  gap: 4px;
  font-size: 11px;
}

.start-button__flag {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background: transparent;
  border: 0;
  filter: none;
  transform: none;
}

.taskbar__windows {
  gap: 3px;
}

.taskbar-window {
  display: flex;
  width: min(160px, 20vw);
  height: 27px;
  padding: 2px 6px;
  align-items: center;
  gap: 4px;
}

.taskbar__tray {
  display: flex;
  min-width: 83px;
  padding: 2px 5px;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
}

.tray-radio {
  display: grid;
  width: 20px;
  height: 20px;
  padding: 1px;
  place-items: center;
  background: transparent;
  border: 0;
}

.tray-radio svg {
  width: 16px;
  height: 16px;
}

.taskbar__clock {
  min-width: 47px;
  padding: 0;
  border: 0;
  font: 10px var(--system-font);
}

.toast {
  right: 8px;
  bottom: 44px;
  max-width: 280px;
  padding: 7px 9px;
  color: #000;
  background: #ffffe1;
  border: 1px solid #000;
  box-shadow: 2px 2px rgba(0, 0, 0, 0.35);
  font: 10px var(--system-font);
  transform: none;
}

@media (max-width: 760px) {
  :root {
    --taskbar-height: 38px;
  }

  .login-stage {
    width: min(390px, calc(100vw - 20px));
    gap: 14px;
  }

  .login-brand {
    position: static;
    width: auto;
    transform: none;
  }

  .login-window {
    position: static;
    width: 100%;
    transform: none;
  }

  .login-window__body {
    grid-template-columns: 44px 1fr;
    gap: 9px;
    padding: 13px 11px;
  }

  .login-avatar,
  .login-avatar svg {
    display: block;
    width: 40px;
    height: 40px;
  }

  .login-domain {
    margin-left: 0;
  }

  .scene--desktop {
    overflow: hidden;
    background-image: url("assets/one-giant-picnic-xp-wallpaper.webp");
    background-position: center;
  }

  .desktop-shade {
    position: absolute;
    background: linear-gradient(rgba(0, 64, 64, 0.08), rgba(0, 64, 64, 0.2));
  }

  .next-picnic {
    top: 7px;
    right: 7px;
    left: 7px;
    width: auto;
    min-height: 0;
  }

  .next-picnic__body {
    grid-template-columns: 42px 1fr;
    padding: 5px;
  }

  .next-picnic__date {
    width: 36px;
    height: 42px;
  }

  .next-picnic__copy h1 {
    font-size: 12px;
  }

  .next-picnic__cta {
    grid-column: 2;
    width: auto;
    min-height: 23px;
    margin: 5px 2px 0 0;
    padding: 3px 9px;
  }

  .desktop-icons {
    top: 129px;
    right: 7px;
    left: 7px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
    gap: 3px 0;
  }

  .desktop-icon {
    width: auto;
    min-height: 68px;
    padding: 3px 1px;
    font-size: 10px;
  }

  .desktop-icon__art {
    width: 40px;
    height: 40px;
  }

  .basket-badge {
    right: calc(50% - 31px);
  }

  .desktop-tip,
  .radio-player {
    display: none;
  }

  .window-layer {
    position: fixed;
  }

  .app-window,
  .app-window.is-maximized {
    top: 4px !important;
    left: 4px !important;
    width: calc(100vw - 8px) !important;
    height: calc(100dvh - var(--taskbar-height) - 7px) !important;
  }

  .app-window > .title-bar {
    height: 28px;
    flex-basis: 28px;
  }

  .window-control {
    width: 28px;
    height: 24px;
  }

  .window-control[data-window-action="maximize"] {
    display: none;
  }

  .window-menu {
    display: flex;
    flex-basis: 22px;
    overflow-x: auto;
  }

  .window-menu__item {
    padding: 3px 7px;
  }

  .window-status {
    flex-basis: 23px;
  }

  .event-card {
    grid-template-columns: 44px 1fr;
  }

  .event-card__action {
    grid-column: 1 / -1;
    display: flex;
    padding: 5px;
  }

  .past-grid,
  .gallery-grid,
  .video-library,
  .merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .past-card img,
  .gallery-item img,
  .video-file__thumb {
    height: 110px;
    min-height: 110px;
  }

  .music-shell,
  .support-layout,
  .about-layout,
  .basket-layout {
    grid-template-columns: 1fr;
  }

  .music-now {
    grid-template-columns: 58px 1fr;
    border-right: 0;
    border-bottom: 2px solid #808080;
  }

  .music-disc {
    width: 52px;
    height: 52px;
  }

  .support-sidebar {
    grid-template-columns: 45px 1fr;
    padding: 8px;
  }

  .support-face {
    width: 40px;
    height: 40px;
  }

  .about-poster {
    min-height: 130px;
    border-right: 0;
    border-bottom: 2px solid #808080;
  }

  .basket-summary {
    border-top: 2px solid #808080;
    border-left: 0;
  }

  .start-menu {
    width: min(260px, calc(100vw - 8px));
    max-height: calc(100dvh - var(--taskbar-height) - 4px);
    overflow-y: auto;
  }

  .start-button {
    width: 72px;
    flex-basis: 72px;
  }

  .taskbar__tray {
    min-width: 76px;
  }

  .taskbar-window {
    width: 34px;
    padding: 2px 7px;
    font-size: 0;
  }

  .taskbar-window svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 420px) {
  .login-brand svg {
    width: 40px;
    height: 40px;
  }

  .login-brand strong {
    font-size: 14px;
  }

  .login-field-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .login-actions {
    gap: 4px;
  }

  .login-actions .retro-button {
    width: auto;
    flex: 1;
  }

  .past-grid,
  .gallery-grid,
  .video-library,
  .merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 6px;
  }

  .form-row,
  .faq-buttons,
  .about-values {
    grid-template-columns: 1fr;
  }

  .notepad,
  .notepad-form {
    margin: 0;
    padding: 6px;
  }
}

/* EFFN-compatible Windows typography */
:root {
  --system-font: "Pixelated MS Sans Serif", "MS Sans Serif", Arial, sans-serif;
}

body {
  font-family: "Pixelated MS Sans Serif", "MS Sans Serif", Arial, sans-serif;
  font-size: 12px;
  line-height: normal;
  -webkit-font-smoothing: auto;
  text-rendering: auto;
}

button,
input,
textarea,
select {
  font-family: "Pixelated MS Sans Serif", "MS Sans Serif", Arial, sans-serif;
  font-size: 12px;
  line-height: normal;
}

.retro-window,
.next-picnic {
  box-shadow:
    inset 1px 1px #dfdfdf,
    inset -1px -1px #808080,
    3px 3px 0 rgba(0, 0, 0, 0.28);
}

.app-window {
  animation: window-appear 120ms ease-out;
}

.title-bar,
.next-picnic__title,
.radio-player__top {
  background: linear-gradient(90deg, #000080 0%, #07589e 58%, #1084d0 100%);
}

.title-bar {
  font-size: 12px;
}

.login-brand {
  line-height: 1.2;
}

.login-brand strong {
  font-size: 18px;
}

.login-brand span,
.login-greeting,
.login-domain,
.login-field-row {
  font-size: 12px;
}

.retro-input,
.retro-textarea,
.retro-select {
  min-height: 25px;
  padding: 4px 5px;
  transition: box-shadow 80ms ease;
}

.retro-input:focus,
.retro-textarea:focus,
.retro-select:focus {
  box-shadow: inset 1px 1px #808080, 0 0 0 1px #000080;
}

.retro-button {
  min-height: 25px;
  padding: 3px 11px;
  transition: background-color 70ms ease, filter 70ms ease, transform 70ms ease;
}

.retro-button:hover:not(:disabled) {
  background: #c8c8c8;
}

.retro-button:active,
.retro-button.is-pressed {
  padding: 3px 11px;
  transform: translate(1px, 1px);
}

.desktop-icon {
  font: 10px/1.08 var(--system-font);
  transition: background-color 80ms ease, border-color 80ms ease;
}

.desktop-icon__art {
  transition: filter 80ms ease;
}

.desktop-icon:hover .desktop-icon__art,
.desktop-icon.is-selected .desktop-icon__art {
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.65)) brightness(1.04);
}

.basket-badge {
  font: 10px var(--system-font);
}

.next-picnic__title,
.next-picnic__title button {
  font-size: 12px;
}

.next-picnic__date span,
.next-picnic__copy p,
.section-intro__eyebrow,
.event-card__date span,
.event-card__meta,
.past-card__copy p,
.gallery-item span,
.video-file__copy small,
.about-poster small,
.photo-credit {
  font-size: 10px !important;
}

.next-picnic__copy h1 {
  font-size: 14px;
}

.next-picnic__copy span,
.desktop-tip,
.folder-header span,
.window-status {
  font-size: 11px;
}

.window-control {
  font: 700 11px/1 var(--system-font);
  transition: background-color 60ms ease;
}

.window-control:hover {
  background: #cacaca;
}

.window-menu {
  flex-basis: 22px;
  font-size: 12px;
}

.window-menu__item {
  padding: 3px 8px;
  transition: color 60ms ease, background-color 60ms ease;
}

.window-dropdown {
  animation: menu-appear 80ms ease-out;
}

.window-dropdown button {
  min-height: 24px;
  font-size: 12px;
}

.folder-header {
  padding: 4px 6px;
}

.folder-header strong {
  font: 700 12px var(--system-font);
}

.section-intro {
  padding: 14px 15px 8px;
}

.section-intro h2 {
  font-size: 19px;
  line-height: 1.12;
}

.event-card__copy h3,
.support-main h3,
.basket-summary h2 {
  font-size: 14px;
}

.event-card__description,
.merch-card__copy p,
.support-answer,
.about-copy p,
.basket-line,
.notepad-form {
  line-height: 1.35;
}

.past-card__copy h3,
.video-file__copy strong,
.merch-card__copy h3,
.basket-line h3 {
  font-size: 12px;
}

.track-row {
  padding-top: 7px;
  padding-bottom: 7px;
}

.support-main,
.about-copy {
  padding: 14px;
}

.support-answer {
  padding: 10px;
}

.start-menu {
  box-shadow: 1px 1px #000, 3px 3px rgba(0, 0, 0, 0.28);
  animation: menu-appear 90ms ease-out;
}

.start-menu__items button {
  min-height: 31px;
  font-size: 11px;
  transition: color 60ms ease, background-color 60ms ease;
}

.start-menu__items button span {
  font-size: 11px;
}

.start-button,
.taskbar-window {
  font-size: 12px;
}

.taskbar__clock {
  font: 11px var(--system-font);
}

.radio-player {
  font-family: "Lucida Console", "Courier New", monospace;
}

.toast {
  font: 11px/1.3 var(--system-font);
  transition: opacity 120ms ease;
}

@keyframes window-appear {
  from {
    opacity: 0;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menu-appear {
  from {
    opacity: 0;
    transform: translateY(-2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  body,
  button,
  input,
  textarea,
  select {
    font-size: 12px;
  }

  .desktop-icon {
    font-size: 9px;
  }

  .app-window {
    animation-duration: 90ms;
  }

  .window-menu__item {
    padding: 4px 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-window,
  .start-menu,
  .window-dropdown {
    animation: none;
  }
}
