/* this file is the messiest and has a bunch of old stuff dw about it */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #040404;
  --panel: rgba(0, 0, 0, 0.82);
  --text: #f2f2f2;
  --dim: #acacac;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --glow: rgba(255, 255, 255, 0.14);
  --red: #9f0000;
}

body {
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  position: relative;
}

.noise,
.scanlines {
  display: none;
}

.app-screen {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.page-fade {
  position: fixed;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.45s ease;
}

.page-fade.active {
  opacity: 1;
}

.app-screen.active {
  opacity: 1;
  pointer-events: auto;
}

.hidden {
  display: none;
}


/* first screen */
#bootScreen {
  background: #000;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 42px;
}

.terminal-corner {
  width: min(720px, 92vw);
  color: var(--text);
}

.terminal-label {
  color: #777;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.terminal-text {
  min-height: 180px;
  color: #f2f2f2;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  letter-spacing: 1px;
  white-space: pre-wrap;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}

.boot-button {
  margin-top: 28px;
  min-width: 170px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.boot-button.ready {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: buttonAwaken 0.45s ease forwards;
}


/* shared button */
.main-button {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
  padding: 14px 28px;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.main-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

/* screen 2 */
#warningScreen {
  background:
    radial-gradient(circle at center, rgba(159, 0, 0, 0.2) 0%, transparent 42%),
    linear-gradient(to bottom, #050000, #000000);
}

.warning-box {
  width: min(1120px, 94vw);
  border: 1px dashed rgba(255, 43, 43, 0.62);
  background:
    linear-gradient(to bottom, rgba(159, 0, 0, 0.08), rgba(0, 0, 0, 0.9)),
    rgba(0, 0, 0, 0.9);
  padding: 42px 46px;
  position: relative;
  box-shadow:
    10px 10px 0 rgba(159, 0, 0, 0.18),
    0 0 44px rgba(159, 0, 0, 0.16),
    inset 0 0 40px rgba(159, 0, 0, 0.08);
  animation: warningEnter 0.75s ease;
  overflow: hidden;
}


.warning-box::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dotted rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.warning-box::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.7),
    0 0 44px rgba(159, 0, 0, 0.65);
  animation: warningScan 2.5s linear infinite;
  opacity: 0.55;
}

.warning-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--dim);
  font-size: 0.78rem;
  letter-spacing: 2px;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.system-line {
  color: #ff2b2b;
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(159, 0, 0, 0.65);
}

.glitch {
  position: relative;
  display: inline-block;
  font-size: clamp(1.9rem, 4.4vw, 3.45rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.18),
    0 0 24px rgba(159, 0, 0, 0.24);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.38;
  pointer-events: none;
}

.glitch::before {
  transform: translate(-3px, 0);
  color: rgba(255, 0, 0, 0.55);
}

.glitch::after {
  transform: translate(3px, 0);
  color: rgba(255, 255, 255, 0.28);
}


.warning-body {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.warning-logo-panel {
  border: 1px dashed rgba(255, 43, 43, 0.62);
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75)),
    rgba(255, 255, 255, 0.045);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transform: rotate(-3deg);
  box-shadow:
    6px 6px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 24px rgba(159, 0, 0, 0.12);
}

.warning-logo {
  width: 450px;
  height: auto;
  object-fit: contain;
  display: block;
  image-rendering: pixelated;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.12))
    drop-shadow(0 0 18px rgba(255, 0, 0, 0.14));
}

.warning-content {
  border-left: 1px dashed rgba(255, 255, 255, 0.22);
  padding-left: 28px;
  background: rgba(0, 0, 0, 0.18);
}

.warning-content p {
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
  text-shadow: 1px 1px 0 rgba(255, 0, 0, 0.18);
}

.warning-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

.warning-button {
  position: relative;
  z-index: 2;
  border-style: dashed;
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.06);
}

.warning-button:hover {
  transform: translate(-2px, -2px);
  box-shadow:
    7px 7px 0 rgba(255, 43, 43, 0.18),
    0 0 18px rgba(255, 43, 43, 0.16);
}



@media (max-width: 720px) {
  .warning-body {
    grid-template-columns: 1fr;
  }

  .warning-logo-panel {
    width: 100%;
  }

  .warning-content {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
  }
}

/* icon home */
#desktopScreen {
  z-index: 1;
}

.desktop {
  display: block;
  padding: 0;
  background: #000;
}

.desktop-map {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.58)),
    url("images/coney-island.jpg") center center / cover no-repeat;
}

.desktop-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(120, 0, 0, 0.18) 0%, transparent 42%),
    rgba(0, 0, 0, 0.22);
  pointer-events: none;
  z-index: 1;
}

/* main button */
.time-travel-button {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;

  width: 380px;
  height: 380px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;

  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    opacity 0.22s ease;
}

.clock-launch-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.62;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.14))
    drop-shadow(0 0 28px rgba(255, 0, 0, 0.18));
  animation: iconFloat 6.2s ease-in-out infinite;
}

.time-travel-button:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.time-travel-button:hover .clock-launch-icon {
  opacity: 1;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.3))
    drop-shadow(0 0 36px rgba(255, 0, 0, 0.34));
}


/* support icons */
.support-icon-row {
  position: absolute;
  left: 50%;
  top: 73%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 7vw, 90px);
  z-index: 3;
}

.desktop-icon {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    filter 0.22s ease;
}

.support-icon {
  width: 120px;
  opacity: 0.72;
  animation: iconFloat 6s ease-in-out infinite;
}

.support-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;

  filter: brightness(0) invert(1);
  opacity: 0.84;
}

.support-icon:hover {
  transform: scale(1.14);
  opacity: 1;
}

.support-icon:hover .support-image {
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.28))
    drop-shadow(0 0 20px rgba(255, 0, 0, 0.18));
  opacity: 1;
}

.hall-icon {
  animation-duration: 6.4s;
}

.resources-icon {
  animation-duration: 5.9s;
}

.logs-icon {
  animation-duration: 6.8s;
}

#machineIntroScreen,
#machineMenuScreen,
#zinePageScreen {
  z-index: 20;
}

@media (max-width: 700px) {
  .time-travel-button {
    width: 180px;
    height: 180px;
    font-size: 0.95rem;
  }

  .support-icon-row {
    top: 72%;
    gap: 26px;
  }

  .support-icon {
    width: 58px;
  }
}






.content-screen {
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.84)),
    url("images/017C.png") center center / 600px 600px repeat,
    #000;
  padding: 42px;
}

.content-window {
  width: min(1050px, 94vw);
  max-height: 86vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.9)),
    rgba(0, 0, 0, 0.82);
  padding: 34px;
  box-shadow:
    8px 8px 0 rgba(159, 0, 0, 0.22),
    0 0 36px rgba(159, 0, 0, 0.12);
}

.home-button {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 16px;
  font-family: inherit;
  font-size: 0.82rem;
  letter-spacing: 2px;
  cursor: pointer;
  margin-bottom: 28px;
  transition: 0.2s ease;
}

.home-button:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 43, 43, 0.48);
  box-shadow: 0 0 18px rgba(159, 0, 0, 0.22);
}

.content-label {
  color: var(--dim);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.content-window h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.18),
    0 0 28px rgba(159, 0, 0, 0.26);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.content-card {
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.58);
  padding: 20px;
  min-height: 180px;
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.06);
}

.content-card h3 {
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.content-card p,
.machine-intro,
.content-list p {
  color: #e8e8e8;
  line-height: 1.75;
  font-size: 0.95rem;
}

.figure-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.figure-photo {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  filter:
    grayscale(1)
    contrast(1.12)
    brightness(0.86);
  box-shadow:
    4px 4px 0 rgba(255, 255, 255, 0.06),
    0 0 18px rgba(255, 0, 255, 0.12);
}

.figure-card:hover .figure-photo {
  filter:
    grayscale(0.25)
    contrast(1.12)
    brightness(0.95);
}

.content-list {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 22px;
}



@media (max-width: 850px) {
  .content-grid,
  .zine-grid {
    grid-template-columns: 1fr;
  }

  .content-screen {
    padding: 22px;
  }

  .content-window {
    max-height: 90vh;
    padding: 24px;
  }
}


.machine-intro-screen {
  background:
    radial-gradient(circle at center, rgba(159, 0, 0, 0.14) 0%, transparent 40%),
    #000;
  padding: 24px;
}



.machine-intro-screen {
  background: #000;
  padding: 0;
}

.machine-fullscreen {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(0, 255, 180, 0.06) 0%, transparent 32%),
    radial-gradient(circle at center, rgba(159, 0, 0, 0.12) 0%, transparent 50%),
    #000;
}

.machine-home-button {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 5;
  margin: 0;
}

.machine-screen {
  position: relative;
  width: 100%;
  height: 100vh;
  background:
    linear-gradient(rgba(0, 255, 180, 0.02), rgba(0, 255, 180, 0.01)),
    #020606;
  overflow: hidden;
}

.machine-menu {
  background:
    radial-gradient(circle at center, rgba(0, 255, 180, 0.08) 0%, transparent 42%),
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)),
    url("images/background_01.gif") center center / 220px 220px repeat,
    #020606;
}


.machine-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 2px,
    transparent 4px
  );
  opacity: 0.25;
  pointer-events: none;
  z-index: 2;
}


.machine-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 45%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
  z-index: 2;
}



.machine-main-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 74vw);
  transform: translate(-50%, -54%);
  display: block;
  opacity: 0.9;
  filter:
    contrast(1.1)
    saturate(0.82)
    brightness(0.9)
    drop-shadow(0 0 18px rgba(0, 255, 180, 0.08));
  z-index: 1;
}

.machine-start-prompt {
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  z-index: 3;
  color: #7fffe4;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(127, 255, 228, 0.55),
    0 0 18px rgba(0, 255, 180, 0.22);
  animation: promptBlink 1.1s steps(1) infinite;
  text-align: center;
  width: 100%;
  pointer-events: none;
}



.machine-menu-screen,
.zine-page-screen {
  background: #000;
  padding: 0;
}

.machine-menu-title {
  position: absolute;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #7fffe4;
  font-size: clamp(1.5rem, 4vw, 3.4rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(127, 255, 228, 0.55),
    0 0 24px rgba(0, 255, 180, 0.22);
}

.zine-icon-grid {
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translateX(-50%);
  z-index: 3;
  width: min(960px, 86vw);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.zine-icon {
  min-height: 145px;
  background:
    radial-gradient(circle at center, rgba(0, 255, 180, 0.08), transparent 55%),
    rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(127, 255, 228, 0.34);
  color: #7fffe4;
  font-family: "Courier New", Courier, monospace;
  padding: 20px;
  cursor: pointer;
  text-align: left;
  box-shadow:
    inset 0 0 22px rgba(0, 255, 180, 0.04),
    0 0 18px rgba(0, 255, 180, 0.05);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.zine-icon:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(127, 255, 228, 0.8);
  background:
    radial-gradient(circle at center, rgba(0, 255, 180, 0.16), transparent 58%),
    rgba(0, 0, 0, 0.78);
  box-shadow:
    0 0 20px rgba(127, 255, 228, 0.24),
    0 0 42px rgba(0, 255, 180, 0.14),
    inset 0 0 28px rgba(0, 255, 180, 0.08);
}

.zine-icon span {
  display: block;
  margin-bottom: 20px;
  color: rgba(127, 255, 228, 0.72);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.zine-icon strong {
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.external-image-link {
  position: absolute;
  left: 50%;
  top: 74%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-block;
}

.external-link-image {
  width: 140px;
  height: auto;
  image-rendering: pixelated;
  opacity: 0.86;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    filter 0.2s ease;
}

.external-image-link:hover .external-link-image {
  transform: scale(1.08);
  opacity: 1;
  filter:
    drop-shadow(0 0 8px rgba(127, 255, 228, 0.45))
    drop-shadow(0 0 18px rgba(0, 255, 180, 0.22));
}

/* ZINE PAGE */
.zine-home-button {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 5;
  margin: 0;
}

.zine-menu-button {
  position: absolute;
  top: 34px;
  left: 150px;
  z-index: 5;
  margin: 0;
}

.zine-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.zine-spacer {
  height: 28px;
}

.zine-body h3 {
  color: #7fffe4;
  font-size: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}

.zine-body p {
  color: #dff;
  line-height: 1.8;
  font-size: clamp(0.95rem, 1.3vw, 1.12rem);
}

.zine-body blockquote {
  border-left: 1px solid rgba(127, 255, 228, 0.55);
  padding: 12px 0 12px 18px;
  color: #bffff5;
  font-style: italic;
  line-height: 1.8;
  background: rgba(127, 255, 228, 0.035);
}

.quote-credit {
  color: rgba(223, 255, 255, 0.68);
  font-size: 0.86rem;
  margin-top: -12px;
}

.zine-image {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border: 1px solid rgba(127, 255, 228, 0.28);
  background: rgba(0, 0, 0, 0.45);
  padding: 8px;
  box-shadow: 0 0 22px rgba(0, 255, 180, 0.08);
}

.zine-caption {
  color: rgba(223, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 8px;
}

.zine-click-image-link {
  display: flex;
  justify-content: center;
  margin: 32px 0;
  text-decoration: none;
}

.zine-click-image {
  width: 80x;
  height: auto;
  image-rendering: pixelated;
  opacity: 0.88;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    filter 0.2s ease;
}

.zine-click-image-link:hover .zine-click-image {
  transform: scale(1.08);
  opacity: 1;
  filter:
    drop-shadow(0 0 8px rgba(127, 255, 228, 0.45))
    drop-shadow(0 0 18px rgba(0, 255, 180, 0.22));
}

.question-box {
  border: 1px solid rgba(127, 255, 228, 0.3);
  background: rgba(0, 0, 0, 0.5);
  padding: 18px;
  box-shadow: inset 0 0 18px rgba(0, 255, 180, 0.045);
}

.question-box label {
  display: block;
  color: #7fffe4;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.question-box textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  background: rgba(0, 0, 0, 0.72);
  color: #dff;
  border: 1px solid rgba(127, 255, 228, 0.24);
  padding: 12px;
  font-family: inherit;
  line-height: 1.6;
}

.question-box textarea:focus {
  outline: none;
  border-color: rgba(127, 255, 228, 0.7);
  box-shadow: 0 0 18px rgba(0, 255, 180, 0.12);
}

.zine-page {
  background:
    radial-gradient(circle at center, rgba(0, 255, 180, 0.08) 0%, transparent 42%),
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)),
    url("images/Horiz_Bar.jpg") center center / 40px 40px repeat,
    #020606;
}

.zine-window {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 88vw);
  max-height: 88vh;
  overflow-y: auto;
  border: 1px solid rgba(127, 255, 228, 0.38);
  background:
    linear-gradient(to bottom, rgba(0, 255, 180, 0.06), rgba(0, 0, 0, 0.82)),
    rgba(0, 0, 0, 0.82);
  padding: 40px;
  box-shadow:
    0 0 28px rgba(127, 255, 228, 0.14),
    inset 0 0 30px rgba(0, 255, 180, 0.05);
}

.zine-kicker {
  color: rgba(127, 255, 228, 0.7);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.zine-window h2 {
  color: #7fffe4;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow:
    0 0 8px rgba(127, 255, 228, 0.5),
    0 0 24px rgba(0, 255, 180, 0.18);
}

/* makes the intro screen feel clickable */
#machineIntroMonitor {
  cursor: pointer;
}

/* design stuff */
.zine-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
  margin: 22px 0;
}

.intro-cat-row {
  grid-template-columns: 150px 1fr;
  align-items: center;
}

.cat-figure {
  margin: 0;
}

.cat-gif {
  width: 130px;
  height: auto;
  image-rendering: pixelated;
  display: block;
}

.zine-side-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 700px) {
  .zine-two-column,
  .intro-cat-row {
    grid-template-columns: 1fr;
  }
}

.blinkie {
  height: 31px;
  width: auto;
  image-rendering: pixelated;
}

.blinkie-marquee {
  overflow: hidden;
  width: 100%;
  margin: 18px 0;
  padding: 8px 0;
}

.blinkie-marquee-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: blinkieScroll 18s linear infinite;
}

.blinkie-marquee .blinkie {
  height: 32px;
  width: auto;
  image-rendering: pixelated;
}

@keyframes blinkieScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 850px) {
  .zine-icon-grid {
    top: 18%;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .zine-icon {
    min-height: 115px;
  }

  .zine-menu-button {
    left: 34px;
    top: 82px;
  }

  .zine-window {
    top: 56%;
    max-height: 60vh;
  }
}

@keyframes promptBlink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
  100% {
    opacity: 1;
  }
}



@keyframes buttonAwaken {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}


@keyframes warningEnter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes warningScan {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(720px);
  }
}


@keyframes iconFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes machineFloat {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 10px));
  }
  100% {
    transform: translate(-50%, -50%);
  }
}


/* ========================= */
/* MOBILE FIX */
/* ========================= */

@media (max-width: 760px) {
  body {
    overflow: hidden;
  }

  .app-screen {
    padding: 14px;
  }

  .desktop-map,
  .machine-fullscreen,
  .machine-screen {
    height: 100dvh;
  }

  #bootScreen {
    padding: 24px;
  }

  .terminal-corner {
    width: 100%;
  }

  .terminal-text {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .boot-button {
    min-width: 140px;
  }


  .warning-box {
    width: 94vw;
    max-height: 88dvh;
    overflow-y: auto;
    padding: 26px 22px;
  }

  .warning-header {
    font-size: 0.65rem;
    gap: 10px;
  }

  .system-line {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  .warning-body {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .warning-logo-panel {
    min-height: 150px;
    transform: rotate(-1.5deg);
  }

  .warning-logo {
    width: 120px;
  }

  .warning-content {
    border-left: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.22);
    padding-left: 0;
    padding-top: 18px;
  }

  .warning-content p {
    font-size: 0.86rem;
    line-height: 1.65;
  }


  .desktop-map {
    background-position: center center;
  }

  .time-travel-button {
    top: 38%;
    width: 150px;
    height: 150px;
  }

  .clock-launch-icon {
    width: 100%;
    height: 100%;
  }

  .support-icon-row {
    top: 70%;
    gap: 26px;
  }

  .support-icon {
    width: 64px;
  }


  .content-screen {
    padding: 18px;
  }

  .content-window {
    width: 94vw;
    max-height: 88dvh;
    padding: 22px;
  }

  .content-window h2 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-card {
    min-height: auto;
  }


  .machine-main-image {
    width: min(92vw, 520px);
  }

  .machine-start-prompt {
    bottom: 70px;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 0 20px;
  }

  .machine-home-button {
    top: 18px;
    left: 18px;
  }


  .machine-menu-title {
    top: 82px;
    font-size: 2rem;
    letter-spacing: 3px;
    text-align: center;
    width: 100%;
  }

  .zine-icon-grid {
    top: 22%;
    width: 88vw;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .zine-icon {
    min-height: 90px;
    padding: 16px;
  }

  .zine-icon strong {
    font-size: 1rem;
  }

  .external-image-link {
    top: 82%;
  }

  .external-link-image {
    width: 110px;
  }


  .zine-home-button {
    top: 14px;
    left: 14px;
  }

  .zine-menu-button {
    top: 14px;
    left: 116px;
  }

  .zine-window {
    width: 94vw;
    top: 54%;
    max-height: 78dvh;
    padding: 24px;
  }

  .zine-window h2 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .zine-body {
    gap: 24px;
  }

  .zine-body p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .zine-body blockquote {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .zine-image {
    max-height: 260px;
  }

  .zine-two-column,
  .intro-cat-row {
    grid-template-columns: 1fr;
  }

  .cat-gif {
    width: 110px;
  }

  .blinkie-marquee .blinkie {
    height: 26px;
  }

  .zine-click-image {
    width: 100px;
  }
}