
* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  padding-top: 34px;
  padding-bottom: 34px;

  background:
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.94)),
    url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-attachment: fixed;
  background-position: center;

  color: #ffd6e4;
  font-family: 'Silkscreen', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;

  overflow-x: hidden;
}

/* main page */

.page {
  max-width: 980px;
  margin: 40px auto;
  padding: 22px;

  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 45, 117, 0.12);

  box-shadow:
    0 0 40px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(255, 45, 117, 0.08);

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  position: relative;

  animation: screenJitter 9s infinite steps(1);
}

/* ===================== */
/* HERO CORNER MOTH */
/* ===================== */

.window.hero {
  position: relative;
  overflow: visible;
}

.corner-moth {
  position: absolute;

  top: -26px;
  left: -26px;

  width: 54px;
  height: auto;

  display: block;
  margin: 0;

  z-index: 20;
  pointer-events: auto;

  image-rendering: pixelated;

  filter:
    drop-shadow(0 0 5px rgba(255, 45, 117, 0.9))
    drop-shadow(0 0 12px rgba(255, 45, 117, 0.55));
}

/* ===================== */
/* HERO MOTH TOOLTIP */
/* ===================== */

.window.hero {
  position: relative;
  overflow: visible;
}

.moth-tooltip-wrap {
  position: absolute;
  top: 0px;
  left: 0px;

  width: 54px;
  height: 54px;

  z-index: 20;
}

.moth-tooltip-wrap .corner-moth {
  position: static;

  width: 54px;
  height: auto;

  display: block;
  margin: 0;

  pointer-events: auto;
  image-rendering: pixelated;

  filter:
    drop-shadow(0 0 5px rgba(255, 45, 117, 0.9))
    drop-shadow(0 0 12px rgba(255, 45, 117, 0.55));
}

.moth-tooltip {
  position: absolute;
  top: -6px;
  left: 62px;

  width: max-content;
  max-width: 170px;

  padding: 7px 9px;

  background: rgba(5, 0, 8, 0.94);
  border: 1px solid rgba(255, 45, 117, 0.65);

  color: #ffd6e4;
  font-family: 'Silkscreen', sans-serif;
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;

  opacity: 0;
  pointer-events: none;

  text-shadow:
    0 0 4px rgba(255, 45, 117, 0.7),
    1px 1px 0 #000;

  box-shadow:
    0 0 10px rgba(255, 45, 117, 0.45);

  transition: 0.2s ease;
}

.moth-tooltip-wrap:hover .moth-tooltip {
  opacity: 1;
}

/* ===================== */
/* HERO HEADER SHELL */
/* ===================== */

header {
  text-align: center;
  padding: 0;
  margin-bottom: 22px;

  background: transparent;
  border: none;
  box-shadow: none;

  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

h1,
h2 {
  font-family: 'Jacquarda Bastarda 9', serif;
  color: #ff2d75;
  text-shadow:
    0 0 8px #ff2d75,
    0 0 18px rgba(255, 45, 117, 0.65);
}

h1 {
  font-size: 56px;
  margin: 8px 0;
  animation: flicker 4s infinite;
}

h2 {
  font-size: 28px;
  margin-top: 0;
  border-bottom: 1px solid rgba(255, 45, 117, 0.25);
  padding-bottom: 8px;
}

.tiny,
.subtitle,
p,
li,
nav a,
footer,
button,
.status-small,
.last-updated {
  font-family: 'Silkscreen', sans-serif !important;
}

.tiny {
  color: #ff7ca5;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.subtitle {
  font-size: 10px;
  opacity: 0.8;
}

p,
li {
  line-height: 1.8;
}

nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;

  margin-bottom: 26px;
}

nav a {
  padding: 10px 15px;

  color: #ffd6e4;
  text-decoration: none;

  border: 1px solid rgba(255, 45, 117, 0.55);
  background: rgba(5, 0, 8, 0.68);

  font-size: 10px;
}

nav a:hover {
  color: #fff;
  animation: glitchButton 0.25s infinite;
}

/* homepage layout */

main {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  gap: 22px;
  align-items: start;
}

/* panel column spacing */

.side-panel,
.center-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-panel .window,
.center-panel .window {
  margin-bottom: 0;
}

/* feature intro panel */

.intro-panel {
  min-height: 170px;
  padding: 26px;
}

.window {
  margin-bottom: 20px;
  padding: 22px;

  background: rgba(5, 5, 8, 0.86);
  border: 1px solid rgba(255, 45, 117, 0.32);

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 18px rgba(255, 45, 117, 0.16),
    0 10px 30px rgba(0, 0, 0, 0.75);

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  position: relative;
  overflow: hidden;
}

.window::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      to right,
      transparent,
      rgba(255, 45, 117, 0.6),
      transparent
    );
}

.window:hover {
  animation: panelCorrupt 0.45s infinite steps(1);

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 22px rgba(255, 45, 117, 0.3),
    0 0 45px rgba(0, 255, 225, 0.08),
    0 12px 35px rgba(0, 0, 0, 0.85);
}

.center-panel .window {
  background: rgba(8, 4, 10, 0.9);
}

.profile-pic {
  width: 100%;
  max-height: 180px;
  object-fit: cover;

  display: block;
  margin: 10px 0 16px;

  border: 1px solid rgba(255, 45, 117, 0.45);

  box-shadow:
    0 0 10px rgba(255, 45, 117, 0.35);

  filter:
    contrast(1.1)
    saturate(0.85)
    brightness(0.82);
}

.profile-pic:hover {
  animation: profileGlitch 0.28s infinite;

  filter:
    contrast(1.35)
    saturate(1.2)
    brightness(0.95)
    hue-rotate(-8deg);
}

/* msn */

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.online-dot {
  width: 10px;
  height: 10px;

  background: #57ff84;
  border-radius: 50%;

  box-shadow:
    0 0 6px #57ff84,
    0 0 12px #57ff84;

  animation: pulseOnline 2s infinite;
}

.typing {
  display: block;
  overflow: visible;
  max-width: 100%;
  white-space: normal;
}

.typing::after {
  content: "|";
  color: #ff2d75;
  margin-left: 3px;
  animation: blinkCursor 0.7s step-end infinite;
}

.status-small {
  opacity: 0.6;
  font-size: 9px;
}

/* mood */

#mood-button,
#playlist-next,
.error-body button {
  margin-top: 8px;
  padding: 8px 10px;

  background: rgba(255, 45, 117, 0.12);
  border: 1px solid rgba(255, 45, 117, 0.55);

  color: #ff7ca5;

  font-family: 'Silkscreen', sans-serif;
  font-size: 10px;

  cursor: pointer;
}

#mood-button:hover,
#playlist-next:hover,
.error-body button:hover {
  color: white;

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 8px #ff2d75;
}

/* gifs */

.gif-strip {
  display: flex;
  gap: 8px;
  margin: 10px 0 14px;
}

.gif-strip img {
  width: 48px;
  height: 48px;
  object-fit: cover;

  border: 1px solid rgba(255, 45, 117, 0.35);

  box-shadow:
    0 0 8px rgba(255, 45, 117, 0.25);

  opacity: 0.85;
}

.gif-strip img:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* updates */

.updates-panel p {
  border-bottom: 1px solid rgba(255, 45, 117, 0.18);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.updates-panel b {
  color: #ff7ca5;
}

/* stickers */

.sticker {
  position: fixed;
  z-index: 50002;
  pointer-events: none;

  color: #ff2d75;
  text-shadow: 0 0 10px #ff2d75;

  font-size: 34px;
  opacity: 0.85;
}

.heart {
  top: 90px;
  left: 70px;
}

.cherry {
  top: 260px;
  right: 160px;
}

.star {
  bottom: 160px;
  left: 120px;
}

[data-popup-open] {
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* ghost */

#ghostie {
  position: fixed;
  bottom: 58px;
  right: 38px;

  font-size: 26px;

  z-index: 50002;

  opacity: 0.22;
  cursor: pointer;

  filter:
    drop-shadow(0 0 8px rgba(255, 45, 117, 0.8))
    drop-shadow(0 0 14px rgba(0, 255, 225, 0.35));

  transition: 0.25s ease;

  animation: ghostFloat 3s ease-in-out infinite;
}

#ghostie:hover {
  opacity: 1;
  transform: scale(1.15);
}

#ghostie::after {
  content: "i live here now";

  position: absolute;
  right: 34px;
  bottom: 10px;

  width: max-content;
  max-width: 150px;

  padding: 7px 9px;

  background: rgba(5, 0, 8, 0.92);
  border: 1px solid rgba(255, 45, 117, 0.65);

  color: #ffd6e4;

  font-family: 'Silkscreen', sans-serif;
  font-size: 9px;

  opacity: 0;
  pointer-events: none;

  box-shadow:
    0 0 10px rgba(255, 45, 117, 0.45);

  transition: 0.2s ease;
}

#ghostie:hover::after {
  opacity: 1;
}

/* boot screen */

#boot-screen {
  position: fixed;
  inset: 0;

  background: #020005;

  z-index: 70000;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: bootFade 1s ease forwards;
  animation-delay: 4.5s;
}

.boot-box {
  width: 420px;
  max-width: 85%;
}

.boot-text {
  color: #ff2d75;

  font-family: 'Silkscreen', sans-serif;
  font-size: 12px;
  line-height: 2;

  text-shadow:
    0 0 8px #ff2d75,
    0 0 18px rgba(255, 45, 117, 0.7);
}

.boot-text p {
  opacity: 0;
  animation: bootLine 0.4s ease forwards;
}

.boot-text p:nth-child(1) { animation-delay: 0.3s; }
.boot-text p:nth-child(2) { animation-delay: 1s; }
.boot-text p:nth-child(3) { animation-delay: 1.7s; }
.boot-text p:nth-child(4) { animation-delay: 2.4s; }
.boot-text p:nth-child(5) { animation-delay: 3.2s; }

.loading-bar {
  width: 100%;
  height: 14px;

  margin-top: 22px;

  background: rgba(255, 45, 117, 0.08);
  border: 1px solid rgba(255, 45, 117, 0.55);

  overflow: hidden;
}

.loading-fill {
  height: 100%;
  width: 0%;

  background: linear-gradient(
    90deg,
    #ff2d75,
    #ff7ca5,
    #ffffff
  );

  animation: loadingFill 4.2s ease forwards;
}

.loading-label {
  text-align: right;
  color: #ff7ca5;
  font-size: 10px;
}

/* rain */

.rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  overflow: hidden;
}

.rain span {
  position: absolute;

  width: 1px;
  height: 22px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );

  opacity: 0.28;

  transform: rotate(12deg);

  animation: rainDrop linear infinite;
}

.rain span:nth-child(1) { left: 5%; animation-duration: 1.1s; animation-delay: 0s; }
.rain span:nth-child(2) { left: 12%; animation-duration: 1.4s; animation-delay: .3s; }
.rain span:nth-child(3) { left: 18%; animation-duration: 1.2s; animation-delay: .8s; }
.rain span:nth-child(4) { left: 24%; animation-duration: 1.6s; animation-delay: .1s; }
.rain span:nth-child(5) { left: 31%; animation-duration: 1.3s; animation-delay: .5s; }
.rain span:nth-child(6) { left: 38%; animation-duration: 1.7s; animation-delay: .9s; }
.rain span:nth-child(7) { left: 44%; animation-duration: 1.2s; animation-delay: .2s; }
.rain span:nth-child(8) { left: 50%; animation-duration: 1.5s; animation-delay: .7s; }
.rain span:nth-child(9) { left: 57%; animation-duration: 1.1s; animation-delay: .4s; }
.rain span:nth-child(10) { left: 63%; animation-duration: 1.6s; animation-delay: 1s; }
.rain span:nth-child(11) { left: 70%; animation-duration: 1.3s; animation-delay: .6s; }
.rain span:nth-child(12) { left: 76%; animation-duration: 1.8s; animation-delay: .2s; }
.rain span:nth-child(13) { left: 82%; animation-duration: 1.4s; animation-delay: .9s; }
.rain span:nth-child(14) { left: 89%; animation-duration: 1.2s; animation-delay: .1s; }
.rain span:nth-child(15) { left: 96%; animation-duration: 1.7s; animation-delay: .5s; }

/* CRT */

body::before,
body::after {
  position: fixed;
  content: "";
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 9999;

  background:
    linear-gradient(
      rgba(255, 255, 255, 0.03) 50%,
      rgba(0, 0, 0, 0.08) 50%
    );

  background-size: 100% 4px;
  mix-blend-mode: overlay;
}

body::after {
  z-index: 9998;

  background:
    radial-gradient(
      circle at center,
      rgba(255, 0, 90, 0.06),
      rgba(0, 0, 0, 0.35) 75%
    );
}

/* VHS line */

.vhs-line {
  position: fixed;
  left: 0;
  top: -10%;

  width: 100%;
  height: 4px;

  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 45, 117, 0.9) 35%,
    rgba(0, 255, 225, 0.65) 50%,
    rgba(255, 255, 255, 0.85) 55%,
    rgba(255, 45, 117, 0.85) 65%,
    transparent 100%
  );

  box-shadow:
    0 0 10px rgba(255, 45, 117, 0.9),
    0 0 25px rgba(0, 255, 225, 0.45);

  opacity: 0;

  pointer-events: none;
  z-index: 50000;

  animation: vhsTrack 6s infinite;
}

/* top and bottom bars */

.playlist-label,
.visitor-counter span {
  color: #ff2d75;
}

/* footer bits */

.last-updated,
.visitor-counter,
footer {
  text-align: center;
  margin-top: 18px;

  color: #ff7ca5;
  font-size: 10px;

  text-shadow:
    0 0 5px rgba(255, 45, 117, 0.8);
}

.visitor-counter {
  width: fit-content;
  margin: 18px auto 0;
  padding: 7px 12px;

  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 45, 117, 0.45);
}

/* popups */

.error-popup {
  position: fixed;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0.85);

  width: 380px;
  max-width: 85%;

  background: rgba(5, 0, 8, 0.96);
  border: 1px solid rgba(255, 45, 117, 0.75);

  z-index: 65000;

  opacity: 0;
  pointer-events: none;

  box-shadow:
    0 0 20px rgba(255, 45, 117, 0.65),
    0 0 70px rgba(255, 45, 117, 0.28),
    inset 0 0 18px rgba(255, 45, 117, 0.08);

  transition: 0.25s ease;
}

.error-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.error-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 7px 9px;

  background:
    linear-gradient(
      90deg,
      rgba(255, 45, 117, 0.28),
      rgba(5, 0, 8, 0.95)
    );

  border-bottom: 1px solid rgba(255, 45, 117, 0.55);

  color: #ffb3cb;

  font-family: 'Silkscreen', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;

  text-transform: uppercase;
}

.window-title::before {
  content: "♡ ";
  color: #00ffe1;
}

.window-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.window-buttons span,
.window-buttons button {
  width: 18px;
  height: 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 45, 117, 0.45);

  color: #ff7ca5;

  font-family: 'Silkscreen', sans-serif;
  font-size: 9px;
  line-height: 1;

  cursor: pointer;
}

.error-body {
  padding: 18px;

  background:
    linear-gradient(
      rgba(255, 45, 117, 0.035),
      rgba(0, 0, 0, 0.02)
    );
}

.error-body h2 {
  margin-top: 0;
  border-bottom: 1px solid rgba(255, 45, 117, 0.22);
  padding-bottom: 8px;
}

/* page transition */

.page-transition {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(2, 0, 5, 0.96);

  z-index: 60000;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.35s ease;
}

.page-transition.show {
  opacity: 1;
  pointer-events: auto;
  animation: transitionGlitch 0.18s infinite steps(1);
}

.page-transition p {
  color: #ff2d75;

  font-family: 'Silkscreen', sans-serif !important;
  font-size: 13px;
  letter-spacing: 2px;

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 12px #ff2d75;
}

/* animations */

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow:
      0 0 5px #ff2d75,
      0 0 10px #ff2d75,
      0 0 20px #ff2d75;
  }

  20%, 55% {
    opacity: 0.7;
    text-shadow: none;
  }
}

@keyframes glitchButton {
  0% { transform: translate(0); }
  25% { transform: translate(1px, -1px); text-shadow: 2px 0 #00ffe1, -2px 0 #ff2d75; }
  50% { transform: translate(-1px, 1px); text-shadow: -2px 0 #00ffe1, 2px 0 #ff2d75; }
  75% { transform: translate(1px, 1px); }
  100% { transform: translate(0); }
}

@keyframes panelCorrupt {
  0% { transform: translate(0, 0); filter: none; }
  25% { transform: translate(1px, -1px); filter: hue-rotate(-6deg) contrast(1.08); }
  50% { transform: translate(-1px, 1px); filter: hue-rotate(6deg) contrast(1.12); }
  75% { transform: translate(1px, 1px); filter: brightness(1.08); }
  100% { transform: translate(0, 0); filter: none; }
}

@keyframes pulseOnline {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

@keyframes ghostFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes bootLine {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

@keyframes bootFade {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes loadingFill {
  0% { width: 0%; }
  25% { width: 28%; }
  55% { width: 63%; }
  80% { width: 87%; }
  100% { width: 100%; }
}

@keyframes rainDrop {
  from { top: -10%; }
  to { top: 110%; }
}

@keyframes vhsTrack {
  0% { top: -10%; opacity: 0; }
  8% { opacity: 0; }
  12% { opacity: 0.95; }
  30% { top: 110%; opacity: 0.65; }
  36% { opacity: 0; }
  100% { top: 110%; opacity: 0; }
}

@keyframes screenJitter {
  0%, 92%, 100% { transform: translate(0, 0); }
  93% { transform: translate(1px, 0); }
  94% { transform: translate(-1px, 1px); }
  95% { transform: translate(1px, -1px); }
  96% { transform: translate(0, 0); }
}

@keyframes profileGlitch {
  0% { transform: translate(0); }
  25% { transform: translate(2px, -1px); }
  50% { transform: translate(-2px, 1px); }
  75% { transform: translate(1px, 2px); }
  100% { transform: translate(0); }
}

@keyframes transitionGlitch {
  0% { transform: translate(0, 0); filter: none; }
  25% { transform: translate(2px, -1px); filter: hue-rotate(10deg); }
  50% { transform: translate(-2px, 1px); filter: contrast(1.2); }
  75% { transform: translate(1px, 2px); filter: brightness(1.2); }
  100% { transform: translate(0, 0); filter: none; }
}

/* mobile */

@media (max-width: 900px) {
  main {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }

  .page {
    margin: 20px;
  }
}

/* updates page */

.updates-page {
  max-width: 760px;
}

.updates-main {
  display: block;
}

.update-entry {
  margin-bottom: 22px;
}

.update-entry ul {
  padding-left: 18px;
}

.update-entry li {
  margin-bottom: 8px;
}

/* final consistent OS popup polish */

.error-popup {
  position: fixed !important;
  top: 50%;
  left: 50%;

  width: 420px;
  max-width: 88%;

  padding: 0;
  margin: 0;

  background: rgba(4, 0, 8, 0.98);

  border: 1px solid rgba(255, 45, 117, 0.95);
  outline: 1px solid rgba(0, 255, 225, 0.22);

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 18px rgba(255, 45, 117, 0.8),
    0 0 60px rgba(255, 45, 117, 0.35),
    14px 14px 0 rgba(0, 0, 0, 0.55),
    inset 0 0 18px rgba(255, 45, 117, 0.08);

  overflow: hidden;

  transform: translate(-50%, -50%) scale(0.85);

  opacity: 0;
  pointer-events: none;

  z-index: 65000;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.error-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.error-top {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 8px 10px;

  background:
    linear-gradient(
      90deg,
      rgba(255, 45, 117, 0.65),
      rgba(15, 0, 18, 0.98)
    );

  border-bottom: 1px solid rgba(255, 45, 117, 0.9);

  box-shadow:
    inset 0 -1px 0 rgba(0, 255, 225, 0.3),
    0 0 12px rgba(255, 45, 117, 0.4);

  color: #ffb3cb;

  font-family: 'Silkscreen', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;

  text-transform: uppercase;
}

.window-title::before {
  content: "♡ ";
  color: #00ffe1;

  text-shadow:
    0 0 6px rgba(0, 255, 225, 0.8);
}

.window-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.window-buttons span,
.window-buttons button {
  width: 18px;
  height: 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 45, 117, 0.45);

  color: #ff7ca5;

  font-family: 'Silkscreen', sans-serif;
  font-size: 9px;
  line-height: 1;

  cursor: pointer;
}

.window-buttons button:hover {
  color: #ffffff;
  background: rgba(255, 45, 117, 0.25);

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 8px #ff2d75;
}

.error-body {
  padding: 20px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 45, 117, 0.08),
      rgba(0, 0, 0, 0.18)
    );
}

.error-body h2 {
  margin-top: 0;

  border-bottom: 1px solid rgba(255, 45, 117, 0.22);
  padding-bottom: 8px;

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 12px #ff2d75;
}

.error-body p {
  color: #ffd6e4;
  line-height: 1.8;
}

.error-body button {
  margin-top: 12px;
}

/* active nav state */

nav a.active {
  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      rgba(255, 45, 117, 0.28),
      rgba(0, 255, 225, 0.08)
    );

  border-color: rgba(255, 45, 117, 0.9);

  box-shadow:
    0 0 10px rgba(255, 45, 117, 0.55),
    0 0 22px rgba(255, 45, 117, 0.22),
    inset 0 0 10px rgba(255, 45, 117, 0.12);

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 8px #ff2d75;
}

nav a.active::before {
  content: "▸ ";
  color: #00ffe1;
}

/* top and bottom bars */

.top-playlist,
.status-bar {
  position: fixed;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;

  padding: 7px 14px;

  background: rgba(5, 0, 8, 0.9);
  color: #ff7ca5;

  font-family: 'Silkscreen', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;

  z-index: 25000;

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.top-playlist {
  top: 0;
  border-bottom: 1px solid rgba(255, 45, 117, 0.35);
}

.status-bar {
  bottom: 0;
  border-top: 1px solid rgba(255, 45, 117, 0.35);
}

.playlist-label,
.visitor-counter span {
  color: #ff2d75;
}

/* tiny panel dividers */

.panel-divider {
  height: 1px;
  width: 100%;

  margin: 14px 0;

  background:
    linear-gradient(
      to right,
      transparent,
      rgba(255, 45, 117, 0.65),
      rgba(0, 255, 225, 0.25),
      transparent
    );

  box-shadow:
    0 0 8px rgba(255, 45, 117, 0.35);
}

.panel-divider.small {
  margin: 10px 0;
  opacity: 0.65;
}

/* reusable OS button style */

.os-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  padding: 8px 11px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 45, 117, 0.16),
      rgba(0, 0, 0, 0.35)
    );

  border: 1px solid rgba(255, 45, 117, 0.6);
  outline: 1px solid rgba(0, 255, 225, 0.08);

  color: #ff9cbd;

  font-family: 'Silkscreen', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;

  cursor: pointer;

  box-shadow:
    inset 0 0 8px rgba(255, 45, 117, 0.12),
    0 0 8px rgba(255, 45, 117, 0.18);

  text-decoration: none;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.os-button:hover {
  color: #ffffff;
  border-color: rgba(255, 45, 117, 0.95);

  transform: translateY(-1px);

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 8px #ff2d75;

  box-shadow:
    0 0 12px rgba(255, 45, 117, 0.5),
    0 0 24px rgba(255, 45, 117, 0.18),
    inset 0 0 10px rgba(255, 45, 117, 0.18);
}

.os-button:active {
  transform: translateY(1px);
}

/* mobile polish */

@media (max-width: 900px) {
  body {
    padding-top: 42px;
    padding-bottom: 52px;
    font-size: 10px;
  }

  .page {
    width: auto;
    margin: 18px 12px;
    padding: 16px;
  }

  header {
    padding: 30px 16px;
  }

  h1 {
    font-size: 40px;
    line-height: 1;
    word-break: break-word;
  }

  h2 {
    font-size: 24px;
  }

  main {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .side-panel,
  .center-panel {
    gap: 18px;
  }

  .window {
    padding: 18px;
  }

  nav {
    gap: 8px;
  }

  nav a {
    font-size: 9px;
    padding: 8px 10px;
  }

  .sticker {
    font-size: 26px;
  }

  .heart {
    top: 72px;
    left: 18px;
  }

  .cherry {
    top: 180px;
    right: 18px;
  }

  .star {
    display: none;
  }

  #ghostie {
    bottom: 64px;
    right: 18px;
    font-size: 24px;
  }

  .top-playlist,
  .status-bar {
    font-size: 8px;
    gap: 8px;
    padding: 7px 8px;
  }

  #playlist-next {
    padding: 5px 7px;
    font-size: 8px;
  }

  .error-popup {
    width: 92% !important;
    max-width: 92% !important;
  }

  .error-top {
    font-size: 8px;
  }

  .window-buttons span,
  .window-buttons button {
    width: 16px;
    height: 15px;
    font-size: 8px;
  }

  .error-body {
    padding: 16px !important;
  }

  .profile-pic {
    max-height: 220px;
  }

  .gif-strip img {
    width: 44px;
    height: 44px;
  }
}

/* 404 page */

.error-page {
  max-width: 720px;
}

.error-main {
  display: block;
}

.error-main .window {
  text-align: center;
}

.error-main .os-button {
  margin-top: 14px;
}

/* page meta */

.page-meta {
  width: fit-content;
  margin: 22px auto 0;
  padding: 7px 12px;

  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;

  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 45, 117, 0.45);

  color: #ff7ca5;

  font-family: 'Silkscreen', sans-serif;
  font-size: 10px;

  box-shadow:
    0 0 8px rgba(255, 45, 117, 0.35),
    inset 0 0 8px rgba(255, 45, 117, 0.12);

  text-shadow:
    0 0 5px rgba(255, 45, 117, 0.8);
}

.page-meta span {
  white-space: nowrap;
}

/* homepage 3-column layout rescue */

.home-layout {
  display: grid !important;
  grid-template-columns: 240px minmax(0, 1fr) 240px !important;
  gap: 22px !important;
  align-items: start !important;
}

.home-layout > .side-panel,
.home-layout > .center-panel {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.home-layout > .side-panel .window,
.home-layout > .center-panel .window {
  margin-bottom: 0 !important;
}

/* bottom taskbar + start menu */

.status-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  min-height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;

  padding: 4px 12px;

  background: rgba(4, 0, 8, 0.96);
  border-top: 1px solid rgba(255, 45, 117, 0.65);

  color: #ffb3cb;

  font-family: 'Silkscreen', sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;

  z-index: 90000;

  box-shadow:
    0 -4px 14px rgba(255, 45, 117, 0.16);

  pointer-events: auto;
}

#start-button {
  display: inline-block;
  padding: 3px 10px;

  background: #e8e8e8;
  border: 1px solid #ffffff;

  color: #151015;
  text-decoration: none;

  font-family: 'Silkscreen', sans-serif;
  font-size: 9px;
  text-transform: uppercase;

  box-shadow:
    inset -1px -1px 0 #777,
    inset 1px 1px 0 #fff;

  cursor: url("cursor-hover.cur") 4 4, pointer;
  pointer-events: auto;
}

#start-button:hover {
  background: #ffd6e4;
}

#start-menu {
  position: fixed;
  left: 10px;
  bottom: 38px;

  width: 250px;

  display: none;

  background: rgba(4, 0, 8, 0.98);
  border: 1px solid rgba(255, 45, 117, 0.9);
  outline: 1px solid rgba(0, 255, 225, 0.18);

  box-shadow:
    0 0 18px rgba(255, 45, 117, 0.55),
    8px 8px 0 rgba(0, 0, 0, 0.45);

  z-index: 90001;
  pointer-events: auto;
  overflow: hidden;
}

#start-menu.show,
#start-menu.open {
  display: block;
}

.start-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 10px;

  background:
    linear-gradient(
      90deg,
      rgba(255, 45, 117, 0.62),
      rgba(15, 0, 18, 0.98)
    );

  border-bottom: 1px solid rgba(255, 45, 117, 0.8);

  color: #ffd6e4;

  font-family: 'Silkscreen', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
}

#close-start-menu {
  width: 18px;
  height: 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;

  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 45, 117, 0.65);

  color: #ffd6e4;

  font-family: 'Silkscreen', sans-serif;
  font-size: 9px;
  line-height: 1;

  cursor: url("cursor-hover.cur") 4 4, pointer;
}

#close-start-menu:hover {
  background: rgba(255, 45, 117, 0.25);
  color: #ffffff;
}

#start-menu a {
  display: block;
  width: 100%;

  padding: 11px 12px;

  color: #ffd6e4;
  text-decoration: none;
  text-align: left;

  font-family: 'Silkscreen', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;

  border-bottom: 1px solid rgba(255, 45, 117, 0.14);
  background: transparent;

  box-sizing: border-box;
}

#start-menu a:hover {
  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      rgba(255, 45, 117, 0.22),
      rgba(0, 255, 225, 0.08)
    );

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 8px #ff2d75;
}

/* gif drawer */

.gif-drawer {
  text-align: center;
  margin-top: 14px;
}

.featured-gif {
  margin-bottom: 8px;
}

.featured-gif img {
  display: block;
  max-width: 145px;
  margin: 0 auto;
}

.tiny-gif-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  gap: 4px;
  max-width: 180px;
  margin: 0 auto;
}

.tiny-gif-row img {
  display: block;
  max-width: 32px;
  max-height: 32px;
}

/* profile picture window */

.profile-window {
  width: 190px;
  margin: 14px auto 18px;

  border: 1px solid #ff2d75;
  background: rgba(5, 2, 8, 0.92);

  box-shadow:
    0 0 0 1px rgba(255, 45, 117, 0.15),
    0 0 14px rgba(255, 45, 117, 0.25);

  overflow: hidden;
}

.profile-window-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 6px 8px;

  border-bottom: 1px solid #ff2d75;
  background: linear-gradient(to right, rgba(255, 45, 117, 0.35), rgba(255, 45, 117, 0.08));

  font-family: 'Silkscreen', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffd6e8;
}

.profile-window-btn {
  border: 1px solid #ff2d75;
  background: #12040b;
  color: #ffd6e8;

  font-family: 'Silkscreen', monospace;
  font-size: 8px;
  line-height: 1;

  padding: 2px 5px;
  cursor: default;

  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.profile-window .profile-pic {
  width: 165px;
  height: 165px;

  object-fit: contain;
  display: block;

  margin: 16px auto;
  padding: 0;

  border: none;
  background: transparent;
  box-shadow: none;
}

.cherry-pic {
  filter:
    drop-shadow(0 0 3px rgba(255, 45, 117, 0.8))
    drop-shadow(0 0 8px rgba(255, 45, 117, 0.45));
}

/* sticker wall page */

.stickers-page {
  max-width: 820px;
}

.stickers-main {
  display: block;
}

.stickers-main .small-note {
  color: #ff7ca5;
  opacity: 0.85;
  text-align: center;
  font-size: 10px;

  text-shadow:
    0 0 6px rgba(255, 45, 117, 0.7);
}

.sticker-section {
  margin-top: 22px;
}

/* gif drawer on sticker page */

.sticker-wall-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  gap: 4px;
}

.sticker-wall-grid img {
  width: auto;
  max-width: 100%;
  height: auto;

  display: block;

  image-rendering: pixelated;

  border: none;
  box-shadow: none;
  background: transparent;

  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.sticker-wall-grid img:hover {
  transform: scale(1.08);

  filter:
    drop-shadow(0 0 6px rgba(255, 45, 117, 0.85));
}

/* stamps, blinkies, buttons */

.stamp-wall,
.blinkie-wall,
.button-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  gap: 4px;
}

.stamp-wall img,
.blinkie-wall img,
.button-wall img {
  width: auto;
  max-width: 100%;
  height: auto;

  display: block;

  image-rendering: pixelated;

  border: none;
  box-shadow: none;
  background: transparent;

  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.stamp-wall img:hover,
.blinkie-wall img:hover,
.button-wall img:hover {
  transform: scale(1.05);

  filter:
    drop-shadow(0 0 6px rgba(255, 45, 117, 0.85));
}

/* playlist fake progress bar */

.progress-wrap {
  margin: 16px 0 12px;
}

.progress-bar {
  width: 100%;
  height: 12px;

  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 45, 117, 0.45);

  box-shadow:
    inset 0 0 8px rgba(255, 45, 117, 0.12);

  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      #ff2d75,
      #ff7ca5,
      #00ffe1
    );

  box-shadow:
    0 0 10px rgba(255, 45, 117, 0.7);

  transition: width 0.35s ease;
}

/* playlist tracklist row layout */

.playlist-list ol {
  padding-left: 0;
  list-style: none;
}

.playlist-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;

  padding: 9px 0;

  border-bottom: 1px solid rgba(255, 45, 117, 0.18);
}

.playlist-list li span:first-child {
  text-align: left;
}

.playlist-list li span:last-child {
  color: #ff7ca5;
  opacity: 0.85;
  white-space: nowrap;
}

.playlist-list li:hover {
  color: #ffffff;

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 8px #ff2d75;
}

/* active playlist track */

.playlist-list li.active-track {
  color: #ffffff;

  background: rgba(255, 45, 117, 0.1);

  padding-left: 8px;
  padding-right: 8px;

  border: 1px solid rgba(255, 45, 117, 0.35);

  box-shadow:
    0 0 10px rgba(255, 45, 117, 0.22),
    inset 0 0 8px rgba(255, 45, 117, 0.1);

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 8px #ff2d75;
}

/* about page */

.about-page {
  max-width: 820px;
}

.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.about-intro,
.manifesto-card {
  grid-column: 1 / -1;
}

.about-card .small-note,
.manifesto-line {
  color: #ff7ca5;
  opacity: 0.88;
  text-align: center;
  font-size: 10px;

  text-shadow:
    0 0 6px rgba(255, 45, 117, 0.7);
}

.about-list {
  padding-left: 18px;
}

.about-list li {
  margin-bottom: 8px;
}

.manifesto-card {
  text-align: center;
}

.manifesto-line {
  font-size: 12px;
  color: #ffffff;

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 10px #ff2d75;
}

/* mobile about page */

@media (max-width: 900px) {
  .about-main {
    grid-template-columns: 1fr;
  }

  .about-intro,
  .manifesto-card {
    grid-column: auto;
  }
}

/* page-specific MSN toast */

.page-toast {
  position: fixed;
  right: 24px;
  bottom: 58px;

  width: 310px;
  max-width: calc(100% - 40px);

  background: rgba(4, 0, 8, 0.98);
  border: 1px solid rgba(255, 45, 117, 0.9);
  outline: 1px solid rgba(0, 255, 225, 0.18);

  box-shadow:
    0 0 18px rgba(255, 45, 117, 0.65),
    0 0 45px rgba(255, 45, 117, 0.25),
    8px 8px 0 rgba(0, 0, 0, 0.45);

  z-index: 66000;

  overflow: hidden;

  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;

  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.page-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.page-toast-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 7px 9px;

  background:
    linear-gradient(
      90deg,
      rgba(255, 45, 117, 0.58),
      rgba(15, 0, 18, 0.98)
    );

  border-bottom: 1px solid rgba(255, 45, 117, 0.8);

  color: #ffb3cb;

  font-family: 'Silkscreen', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
}

.page-toast-top button {
  width: 18px;
  height: 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 45, 117, 0.45);

  color: #ff7ca5;

  font-family: 'Silkscreen', sans-serif;
  font-size: 9px;

  cursor: pointer;
}

.page-toast-top button:hover {
  color: #ffffff;
  background: rgba(255, 45, 117, 0.25);

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 8px #ff2d75;
}

.page-toast-body {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 45, 117, 0.08),
      rgba(0, 0, 0, 0.16)
    );
}

.page-toast-avatar {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 45, 117, 0.55);
  background: rgba(0, 0, 0, 0.5);

  font-size: 22px;

  box-shadow:
    0 0 10px rgba(255, 45, 117, 0.35),
    inset 0 0 8px rgba(255, 45, 117, 0.12);
}

.page-toast-body p {
  margin: 0;
}

.page-toast-small {
  color: #ff7ca5;
  opacity: 0.85;
  font-size: 9px;
}

/* online friends panel */

.friend-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.friend {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 9px;

  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 45, 117, 0.18);

  box-shadow:
    inset 0 0 8px rgba(255, 45, 117, 0.06);
}

.friend:hover {
  border-color: rgba(255, 45, 117, 0.5);

  box-shadow:
    0 0 10px rgba(255, 45, 117, 0.22),
    inset 0 0 8px rgba(255, 45, 117, 0.1);
}

.friend-dot {
  width: 10px;
  height: 10px;

  flex: 0 0 auto;

  background: #57ff84;
  border-radius: 50%;

  box-shadow:
    0 0 6px #57ff84,
    0 0 12px rgba(87, 255, 132, 0.7);

  animation: pulseOnline 2s infinite;
}

.friend-dot.away {
  background: #ffcc57;

  box-shadow:
    0 0 6px #ffcc57,
    0 0 12px rgba(255, 204, 87, 0.7);
}

.friend p {
  margin: 0;
  line-height: 1.5;
}

.friend-status {
  color: #ff7ca5;
  opacity: 0.82;
  font-size: 9px;
}

/* credits page */

.credit-buttons {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  margin: 14px auto 0 auto;
  width: fit-content;
}

.credit-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  min-height: 35px;
}

.credit-buttons img {
  display: block;
  max-width: 88px;
  max-height: 31px;
}

/* tiny hidden footer link */

.secret-footer-link {
  color: rgba(255, 124, 165, 0.25);
  text-decoration: none;
}

.secret-footer-link:hover {
  color: #ff2d75;
  text-shadow:
    0 0 8px #ff2d75;
}

/* guestbook page */

.guestbook-main {
  display: block;
  max-width: 720px;
  margin: 0 auto;
}

.guestbook-window {
  max-width: 820px;
  margin: 0 auto 22px;
}

.guestbook-entries {
  width: 100%;
  margin-bottom: 22px;
}

.guestbook-os-frame {
  border: 1px solid rgba(255, 45, 117, 0.75);
  background: rgba(0, 0, 0, 0.92);

  box-shadow:
    0 0 18px rgba(255, 45, 117, 0.35),
    0 0 45px rgba(255, 45, 117, 0.14),
    inset 0 0 18px rgba(255, 45, 117, 0.08);

  overflow: hidden;
}

.guestbook-os-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;

  padding: 8px 10px;

  background:
    linear-gradient(
      90deg,
      rgba(255, 45, 117, 0.62),
      rgba(15, 0, 18, 0.98)
    );

  border-bottom: 1px solid rgba(255, 45, 117, 0.75);

  color: #ffb3cb;
  font-family: 'Silkscreen', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
}

.guestbook-frame {
  width: 100%;
  min-height: 760px;

  display: block;

  border: none;
  background: rgba(0, 0, 0, 0.92);
}

/* credits page borrowed graphics */

.credit-link {
  color: #ff7ca5;
  text-decoration: none;

  text-shadow:
    0 0 6px rgba(255, 45, 117, 0.7);
}

.credit-link:hover {
  color: #ffffff;

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 8px #ff2d75;
}

.credit-stamp {
  display: flex;
  justify-content: center;

  margin-top: 14px;
}

.credit-stamp img {
  display: block;
  max-width: 100%;
  height: auto;

  image-rendering: pixelated;

  border: none;
  background: transparent;
  box-shadow: none;
}

.credit-stamp img:hover {
  filter:
    drop-shadow(0 0 6px rgba(255, 45, 117, 0.85));
}

/* footer credits link */

.secret-footer-link {
  color: #ff7ca5;
  text-decoration: none;

  margin-left: 8px;

  text-shadow:
    0 0 6px rgba(255, 45, 117, 0.7);
}

.secret-footer-link::before {
  content: "// ";
  color: rgba(255, 124, 165, 0.55);
}

.secret-footer-link:hover {
  color: #ffffff;

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 8px #ff2d75;
}

/* multiple credit stamps */

.credit-list {
  padding-left: 18px;
}

.credit-list li {
  margin-bottom: 8px;
}

.credit-stamp-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 8px;
  margin-top: 14px;
}

.credit-stamp-row img {
  display: block;
  max-width: 100%;
  height: auto;

  image-rendering: pixelated;

  border: none;
  background: transparent;
  box-shadow: none;
}

.credit-stamp-row img:hover {
  filter:
    drop-shadow(0 0 6px rgba(255, 45, 117, 0.85));
}

/* ===================== */
/* AVATAR.EXE IMAGE FIT */
/* ===================== */

.profile-window {
  width: 190px;
  margin: 14px auto 18px;
  overflow: hidden;
}

.profile-tooltip-wrap {
  width: 100%;
  margin: 0;
  display: block;
}

.profile-window .profile-pic {
  width: 100%;
  height: 230px;

  object-fit: cover;
  object-position: center 20%;

  display: block;
  margin: 0;
  padding: 0;

  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.cherry-pic {
  filter:
    drop-shadow(0 0 3px rgba(255, 45, 117, 0.8))
    drop-shadow(0 0 8px rgba(255, 45, 117, 0.45));
}

/* custom cursor */

body {
  cursor: url("cursor.cur"), auto;
}

a,
button,
.os-button,
[data-popup-open],
#start-button,
.friend,
nav a {
  cursor: url("cursor-hover.cur"), pointer;
}

/* custom cursor for popups */

.error-popup,
.error-popup *,
.page-toast,
.page-toast *,
#start-menu,
#start-menu * {
  cursor: url("cursor.cur") 4 4, auto !important;
}

/* clickable bits inside popups */

.error-popup button,
.error-popup .window-buttons button,
.error-body button,
.page-toast button,
#close-start-menu,
[data-popup-close] {
  cursor: url("cursor-hover.cur") 4 4, pointer !important;
}

/* draggable / grabby popup areas */

.error-top,
.warning-top,
.profile-window-top,
.page-toast-top {
  cursor: url("cursor-hover.cur") 4 4, grab !important;
}

.error-popup:active,
.error-top:active,
.warning-top:active,
.page-toast-top:active {
  cursor: url("cursor-hover.cur") 4 4, grabbing !important;
}

/* popup title readability */

.error-popup h2,
.error-popup .error-body h2,
#warning-popup h2,
#heart-popup h2,
#cherry-popup h2,
#ghost-popup h2 {
  font-family: 'Silkscreen', monospace !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;

  color: #ffd6e4 !important;

  filter: none !important;
  -webkit-text-stroke: 0 !important;

  text-shadow:
    1px 0 rgba(0, 255, 225, 0.65),
    -1px 0 rgba(255, 45, 117, 0.7),
    0 0 5px rgba(255, 45, 117, 0.9) !important;
}

/* hover tooltips */

.has-tooltip {
  position: relative;
}

.has-tooltip::after {
  content: attr(data-tooltip);

  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);

  transform: translateX(-50%) translateY(4px);

  width: max-content;
  max-width: 220px;

  padding: 6px 8px;

  background: rgba(4, 0, 8, 0.96);
  border: 1px solid rgba(255, 45, 117, 0.75);

  color: #ffd6e4;

  font-family: 'Silkscreen', sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
  line-height: 1.4;
  text-align: center;

  box-shadow:
    0 0 10px rgba(255, 45, 117, 0.45),
    inset 0 0 8px rgba(255, 45, 117, 0.08);

  opacity: 0;
  pointer-events: none;

  z-index: 90000;

  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.has-tooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* bottom/status tooltip fix */

.status-bar .has-tooltip::after,
.page-meta .has-tooltip::after {
  top: calc(100% + 8px);
  bottom: auto;

  left: 50%;
  transform: translateX(-50%) translateY(-4px);
}

.status-bar .has-tooltip:hover::after,
.page-meta .has-tooltip:hover::after {
  transform: translateX(-50%) translateY(0);
}

/* allow avatar tooltip to escape */

.profile-window.has-tooltip {
  overflow: visible !important;
}

.profile-tooltip-wrap {
  width: fit-content;
  margin: 0 auto;
}

/* avatar tooltip polish */

.profile-tooltip-wrap.has-tooltip::after {
  bottom: calc(100% + 12px);
  max-width: 150px;
  width: max-content;

  padding: 5px 8px;

  font-size: 8px;
  line-height: 1.5;
}

/* tooltip text wrapping fix */

.has-tooltip::after {
  white-space: normal !important;
  width: 260px !important;
  max-width: 260px !important;

  overflow-wrap: break-word !important;
  word-break: normal !important;
}

/* friend tooltip polish */

.friend.has-tooltip::after {
  width: 190px !important;
  max-width: 190px !important;

  white-space: normal !important;
  text-align: center !important;

  left: 50%;
  bottom: calc(100% + 8px);

  font-size: 8px !important;
  line-height: 1.5 !important;
}

/* heart divider */

.intro-panel {
  position: relative;
}

.intro-panel .heart-divider {
  position: absolute;

  left: 50%;
  bottom: 8px;

  transform: translateX(-50%);

  width: 145px;
  max-width: 145px;
  height: auto;

  margin: 0;

  image-rendering: pixelated;
  pointer-events: none;

  filter:
    drop-shadow(0 0 5px rgba(255, 45, 117, 0.75));
}

/* linkback button size fix */

.linkback-preview img {
  width: 176px !important;
  max-width: 176px !important;
  height: auto !important;

  image-rendering: pixelated;

  display: block;
  margin: 0 auto;

  filter:
    drop-shadow(0 0 6px rgba(255, 45, 117, 0.75));
}

/* lore entry heading buttons */

.lore-toggle {
  display: inline-block !important;

  background: rgba(255, 45, 117, 0.12) !important;
  border: 1px solid rgba(255, 124, 165, 0.65) !important;

  color: #ffb3cb !important;

  padding: 5px 9px !important;
  margin-bottom: 12px !important;

  font-family: 'Silkscreen', sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 1px !important;

  text-transform: uppercase !important;

  box-shadow:
    0 0 10px rgba(255, 45, 117, 0.22) !important;

  text-shadow:
    1px 0 rgba(0, 255, 225, 0.35),
    -1px 0 rgba(255, 45, 117, 0.55),
    0 0 6px rgba(255, 45, 117, 0.7) !important;

  cursor: url("cursor-hover.cur") 4 4, pointer !important;
}

.lore-toggle:hover {
  color: #ffffff !important;

  background: rgba(255, 45, 117, 0.2) !important;

  box-shadow:
    0 0 12px rgba(255, 45, 117, 0.45),
    inset 0 0 8px rgba(255, 45, 117, 0.12) !important;
}

.lore-toggle::before {
  content: "♡ ";
  color: #ff7ca5;
}

/* playlist album art sizing */

.playlist-player,
.player-window,
.playlist-now-playing {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.album-art,
.album-art-wrap {
  width: 360px !important;
  max-width: 100% !important;
  height: 360px !important;

  margin: 0 auto 18px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: hidden !important;

  border: 1px solid rgba(255, 45, 117, 0.45);
  background: rgba(0, 0, 0, 0.55);

  box-shadow:
    0 0 14px rgba(255, 45, 117, 0.25),
    inset 0 0 12px rgba(255, 45, 117, 0.08);
}

.album-art img,
#album-art-img {
  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center !important;

  display: block !important;
}

/* playlist controls centered */

.playlist-controls,
.player-controls,
.control-buttons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

  gap: 8px !important;
  margin-top: 14px !important;
}

.playlist-controls,
.player-controls,
.control-buttons,
.controls {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

  gap: 8px !important;
  margin-top: 14px !important;
}

/* playlist track hover polish */

#track-list li {
  cursor: url("cursor-hover.cur") 4 4, pointer;
}

#track-list li:hover {
  background: rgba(255, 45, 117, 0.08);
  padding-left: 8px;
  padding-right: 8px;
}

/* sticker page tighter sections */

.sticker-section {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.stamp-wall,
.blinkie-wall,
.button-wall,
.sticker-wall-grid {
  margin-top: 8px !important;
}

/* password gate */

#password-gate {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at center,
      rgba(255, 45, 117, 0.12),
      rgba(0, 0, 0, 0.96) 72%
    );

  z-index: 999999;

  backdrop-filter: blur(4px);
}

#password-gate.unlocked {
  display: none;
}

.password-window {
  width: 360px;
  max-width: calc(100% - 40px);

  background: rgba(4, 0, 8, 0.98);
  border: 1px solid rgba(255, 45, 117, 0.9);

  box-shadow:
    0 0 18px rgba(255, 45, 117, 0.65),
    0 0 45px rgba(255, 45, 117, 0.25),
    8px 8px 0 rgba(0, 0, 0, 0.45);

  overflow: hidden;
}

.password-window-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 8px 10px;

  background:
    linear-gradient(
      90deg,
      rgba(255, 45, 117, 0.62),
      rgba(15, 0, 18, 0.98)
    );

  border-bottom: 1px solid rgba(255, 45, 117, 0.85);

  color: #ffb3cb;

  font-family: 'Silkscreen', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
}

.password-window h2 {
  margin: 18px 18px 10px;

  color: #ff7ca5;
  font-size: 24px;
}

.password-window p {
  margin: 0 18px 14px;
}

#password-input {
  width: calc(100% - 36px);

  margin: 0 18px 14px;
  padding: 10px;

  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 45, 117, 0.65);

  color: #ffd6e4;

  font-family: 'Silkscreen', sans-serif;
  font-size: 10px;

  outline: none;
}

#password-input:focus {
  box-shadow:
    0 0 10px rgba(255, 45, 117, 0.45);
}

#password-button {
  margin: 0 18px 16px;
}

#password-error {
  color: #ff7ca5;
  font-size: 9px;
  text-align: center;
}

/* current status skull divider */

.status-divider-img {
  display: block;

  width: auto;
  max-width: 180px;
  height: auto;

  margin: 16px auto 0;

  image-rendering: pixelated;

  filter:
    drop-shadow(0 0 5px rgba(255, 45, 117, 0.65));
}

/* likes cherry divider */

.likes-divider-img {
  display: block;

  width: auto;
  max-width: 220px;
  height: auto;

  margin: 16px auto 0;

  image-rendering: pixelated;

  filter:
    drop-shadow(0 0 5px rgba(255, 45, 117, 0.55));
}

/* page transition */

.page-transition {
  display: none;
  pointer-events: none;
}

.page-transition.show {
  display: flex;
  pointer-events: auto;
}

/* shae.exe badges */

.shae-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  margin-top: 14px;
}

.shae-badges img {
  display: block;

  max-width: 100%;
  height: auto;

  image-rendering: pixelated;

  filter:
    drop-shadow(0 0 5px rgba(255, 45, 117, 0.55));
}

/* archive index decoration */

.archive-index-img {
  display: block;

  width: auto;
  max-width: 160px;
  height: auto;

  margin: 16px auto 0;

  image-rendering: pixelated;

  filter:
    drop-shadow(0 0 5px rgba(255, 45, 117, 0.45));
}

/* credits links polish */

.credits-main a,
.credits-main a:visited {
  color: #ff7ca5;
  text-decoration: none;

  border-bottom: 1px dotted rgba(255, 124, 165, 0.65);

  text-shadow:
    0 0 6px rgba(255, 45, 117, 0.65);
}

.credits-main a:hover {
  color: #ffffff;

  border-bottom-color: #00ffe1;

  text-shadow:
    1px 0 rgba(0, 255, 225, 0.75),
    -1px 0 rgba(255, 45, 117, 0.85),
    0 0 8px rgba(255, 45, 117, 0.9);
}

.credits-main ul {
  list-style: none;
  padding-left: 0;
  margin: 18px 0;
}

.credits-main li {
  position: relative;

  margin-bottom: 10px;
  padding-left: 18px;

  color: #ffd6e4;
}

.credits-main li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;

  color: #ff2d75;

  text-shadow:
    0 0 6px rgba(255, 45, 117, 0.8);
}

.credit-note {
  color: #ffd6e4;
  opacity: 0.85;
}

.taskbar-ghost {
  width: 16px;
  height: 16px;
  object-fit: contain;
  image-rendering: pixelated;
  vertical-align: middle;
  margin-left: 6px;
  flex-shrink: 0;
}

/* mini fridge */

.mini-fridge-wrap {
  width: 270px;
  margin: 20px auto 0 auto;
  position: relative;
  font-family: Verdana, sans-serif;
  overflow: visible;
}

/* separate cute label */
.fridge-label {
  width: fit-content;
  margin: 0 auto 12px auto;
  padding: 5px 18px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff2f8;
  background: linear-gradient(#8b4a64, #5f2f44);
  border: 2px solid #ffd6e8;
  border-radius: 999px;
  box-shadow:
    inset 0 0 6px rgba(255,255,255,0.35),
    0 0 8px rgba(255,140,190,0.75),
    0 0 14px rgba(255,90,160,0.35);
  text-shadow:
    0 0 4px #ff78b5,
    0 0 8px #ff78b5;
}

/* whole fridge area */
.mini-fridge {
  position: relative;
  width: 270px;
  min-height: 300px;
  overflow: visible;
}

/* main visible fridge shell */
.fridge-box {
  position: relative;
  z-index: 3;
  width: 210px;
  min-height: 255px;
  margin: 0 auto;
  padding: 18px 13px 16px 13px;
  box-sizing: border-box;

  background:
    radial-gradient(circle at 25% 8%, rgba(255,255,255,0.75), transparent 22%),
    linear-gradient(180deg, #ffe3ee 0%, #f8bfd5 45%, #e9a4bf 100%);

  border: 3px solid #ffd7e8;
  border-radius: 26px 26px 32px 32px;

  box-shadow:
    inset 0 0 12px rgba(255,255,255,0.55),
    inset 0 0 25px rgba(140,40,85,0.18),
    0 0 10px rgba(255,150,200,0.55),
    0 0 22px rgba(255,80,155,0.25),
    0 8px 0 rgba(73,25,45,0.65);
}

/* cute inner outline so it reads as a fridge */
.fridge-box::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(255,255,255,0.65);
  border-radius: 20px 20px 26px 26px;
  pointer-events: none;
}

/* tiny fridge feet */
.fridge-box::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -12px;
  width: 150px;
  height: 12px;
  background:
    radial-gradient(circle at 12px 6px, #b78399 0 5px, transparent 6px),
    radial-gradient(circle at 138px 6px, #b78399 0 5px, transparent 6px);
}

/* visible open door behind the fridge */
.fridge-open-door {
  position: absolute;
  z-index: 1;
  right: -4px;
  top: 16px;
  width: 82px;
  height: 250px;

  background:
    radial-gradient(circle at 25% 8%, rgba(255,255,255,0.7), transparent 28%),
    linear-gradient(180deg, #ffeaf2 0%, #f8c7da 50%, #e7a2bd 100%);

  border: 3px solid #ffd7e8;
  border-radius: 18px 28px 28px 18px;

  transform: rotate(-7deg);
  transform-origin: left center;

  box-shadow:
    inset 0 0 12px rgba(255,255,255,0.4),
    8px 8px 16px rgba(0,0,0,0.35),
    0 0 12px rgba(255,120,180,0.25);
}

/* hinge strip */
.fridge-open-door::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 20px;
  bottom: 20px;
  width: 8px;
  background: linear-gradient(#d89bb4, #a9617d);
  border-radius: 8px 0 0 8px;
}

/* door inner outline */
.fridge-open-door::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 12px 20px 20px 12px;
}

/* little shelves inside the open door */
.door-shelf {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 45px;
  margin: 22px auto 0 auto;

  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(166,86,120,0.65);
  border-bottom: 4px solid rgba(166,86,120,0.8);
  border-radius: 10px;

  box-shadow:
    inset 0 0 8px rgba(255,255,255,0.25),
    0 0 4px rgba(255,105,180,0.12);
}

/* shelves inside main fridge */
.fridge-shelf {
  position: relative;
  z-index: 4;
  min-height: 56px;
  margin-bottom: 14px;
  padding: 8px;
  box-sizing: border-box;

  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  justify-content: center;

  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.08) 0px,
      rgba(255,255,255,0.08) 1px,
      rgba(60,30,45,0.08) 2px,
      rgba(60,30,45,0.08) 4px
    ),
    linear-gradient(180deg, rgba(255,255,255,0.32), rgba(255,255,255,0.08));

  border: 1px solid #b96d8c;
  border-bottom: 4px solid #9f4e70;
  border-radius: 13px;

  box-shadow:
    inset 0 0 9px rgba(255,255,255,0.18),
    inset 0 0 10px rgba(95,25,55,0.16),
    0 0 7px rgba(255,95,165,0.18);
}

.fridge-shelf::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 10px;
  right: 10px;
  height: 1px;
  background: rgba(255,255,255,0.65);
}

.fridge-shelf img {
  max-width: 45px;
  max-height: 45px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.fridge-shelf img:hover {
  transform: scale(1.12) rotate(-3deg);
  filter: drop-shadow(0 0 5px #ff78b5);
}

.fridge-shelf p {
  margin: 0;
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
  color: #7a3d59;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 0 0 3px rgba(255,255,255,0.7);
}

.empty-shelf {
  min-height: 43px;
}

.credit-entry ul {
  list-style: none;
  padding-left: 0;
}

.credit-entry li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}

.credit-entry li::before {
  content: "♡";
  position: absolute;
  left: 0;
  color: #ff4fa3;
  text-shadow:
    0 0 4px #ff4fa3,
    0 0 8px #ff4fa3;
}

.pixel-box {
  position: relative;
  width: 187px;
  height: 213px;
  background-image: url("https://i.imgur.com/Cc2sjcV.gif");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 187px 213px;
  border: none;
}

.pixel-box-content {
  position: absolute;
  top: 20px;
  left: 12px;

  width: 162px;
  height: 155px;
  overflow: auto;

  font-family: Verdana, sans-serif;
  font-size: 9px;
  color: #f5c1d5;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 4px rgba(255, 79, 154, 0.45);

  box-sizing: border-box;
  padding: 6px;
  border: none;
}

.pixel-box {
  filter:
    drop-shadow(0 0 5px rgba(255, 79, 154, 0.45))
    drop-shadow(0 0 12px rgba(255, 79, 154, 0.2));
}

.pixel-box-content::-webkit-scrollbar {
  width: 5px;
}

.pixel-box-content::-webkit-scrollbar-track {
  background: rgba(10, 0, 12, 0.5);
}

.pixel-box-content::-webkit-scrollbar-thumb {
  background: rgba(255, 79, 154, 0.55);
  border-radius: 999px;
}

.tiny-gift {
  text-align: center;
  margin-top: 10px;
}

.tiny-gift img {
  max-width: 60px;
}

.take-this-text {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: 9px;
  letter-spacing: 1px;
  line-height: 1.6;
  text-transform: uppercase;
  text-shadow:
    0 0 3px #ff4f9a,
    0 0 7px #ff4f9a,
    1px 1px 0 #000;
}

/* ===================== */
/* TINY INVENTORY BOX */
/* ===================== */

.tiny-inventory {
  margin-top: 18px;
}

.tiny-inventory h2 {
  text-align: center;
  margin-bottom: 12px;
}

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

.inventory-item {
  min-height: 54px;
  padding: 8px 6px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 79, 154, 0.45);
  background:
    linear-gradient(
      180deg,
      rgba(255, 79, 154, 0.13),
      rgba(10, 0, 15, 0.45)
    );

  box-shadow:
    inset 0 0 8px rgba(255, 79, 154, 0.08),
    0 0 6px rgba(255, 79, 154, 0.16);

  text-align: center;
}

.inventory-icon {
  display: block;
  margin-bottom: 4px;

  color: #ff7ab6;
  font-size: 14px;
  line-height: 1;

  text-shadow:
    0 0 4px #ff4f9a,
    0 0 8px rgba(255, 79, 154, 0.55);
}

.inventory-item p {
  margin: 0;

  color: #f5c1d5;
  font-size: 8px;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;

  text-shadow: 0 0 4px rgba(255, 79, 154, 0.45);
}

.inventory-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 182, 0.85);

  box-shadow:
    inset 0 0 10px rgba(255, 79, 154, 0.12),
    0 0 10px rgba(255, 79, 154, 0.3);
}

/* ===================== */
/* RARE INVENTORY ITEM */
/* ===================== */

.rare-item {
  border-color: rgba(255, 210, 245, 0.9);
  box-shadow:
    inset 0 0 10px rgba(255, 210, 245, 0.14),
    0 0 12px rgba(255, 122, 182, 0.35),
    0 0 22px rgba(255, 79, 154, 0.18);
}

/* ===================== */
/* LOST FILES ZIP BOX */
/* ===================== */

.lost-files {
  margin-top: 18px;
}

.lost-files h2 {
  text-align: center;
  margin-bottom: 10px;
}

.lost-files-intro {
  margin: 0 0 12px 0;

  color: #f5c1d5;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;

  text-shadow: 0 0 4px rgba(255, 79, 154, 0.45);
}

.lost-file-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lost-file {
  padding: 0;
  box-sizing: border-box;

  border: 1px solid rgba(255, 79, 154, 0.35);
  background:
    linear-gradient(
      90deg,
      rgba(255, 79, 154, 0.16),
      rgba(10, 0, 15, 0.35)
    );

  box-shadow:
    inset 0 0 8px rgba(255, 79, 154, 0.06),
    0 0 5px rgba(255, 79, 154, 0.12);

  font-size: 9px;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.lost-file summary {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 7px 8px;
  cursor: pointer;
  list-style: none;

  color: #f8d5e5;
}

.lost-file summary::-webkit-details-marker {
  display: none;
}

.lost-file summary::after {
  content: "+";
  margin-left: auto;

  color: #ff7ab6;
  text-shadow:
    0 0 4px #ff4f9a,
    0 0 8px rgba(255, 79, 154, 0.55);
}

.lost-file[open] summary::after {
  content: "-";
}

.file-icon {
  width: 18px;
  text-align: center;

  color: #ff7ab6;
  font-size: 12px;

  text-shadow:
    0 0 4px #ff4f9a,
    0 0 8px rgba(255, 79, 154, 0.55);
}

.lost-file:hover {
  transform: translateX(2px);

  border-color: rgba(255, 122, 182, 0.85);

  background:
    linear-gradient(
      90deg,
      rgba(255, 79, 154, 0.28),
      rgba(20, 0, 25, 0.55)
    );

  box-shadow:
    inset 0 0 10px rgba(255, 79, 154, 0.1),
    0 0 10px rgba(255, 79, 154, 0.28);
}

.file-message {
  margin: 0;
  padding: 0 10px 9px 34px;

  color: #ffffff;
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;

  text-shadow:
    0 0 4px rgba(255, 79, 154, 0.65),
    1px 1px 0 #000;
    
}

/* ===================== */
/* LOST FILES CLICK CURSOR */
/* ===================== */

.lost-file summary,
.lost-file summary:hover {
  cursor: url("cursor-hover.cur"), pointer;
}

/* ===================== */
/* BECOMING + MANIFESTO ROW */
/* ===================== */

.card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 900px;
  margin: 24px auto;
}

.card-row .window {
  margin: 0;
}

@media (max-width: 700px) {
  .card-row {
    grid-template-columns: 1fr;
  }
}

/* ===================== */
/* JUNKDRAWER PAGE */
/* ===================== */

.junkdrawer-hero {
  text-align: center;
  margin-bottom: 24px;
}

.junkdrawer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;

  max-width: 1050px;
  margin: 24px auto;
}


/* ===================== */
/* FUN STUFF CARDS */
/* ===================== */

.fun-card {
  min-height: 230px;
  box-sizing: border-box;
}

.fun-card h2 {
  text-align: center;
  margin-bottom: 12px;
}

.fun-card p {
  text-align: center;
}

.fun-placeholder {
  margin-top: 16px;
  padding: 14px 10px;
  box-sizing: border-box;

  border: 1px solid rgba(255, 79, 154, 0.4);
  background:
    linear-gradient(
      180deg,
      rgba(255, 79, 154, 0.12),
      rgba(8, 0, 12, 0.55)
    );

  color: #f5c1d5;
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;

  text-shadow:
    0 0 4px rgba(255, 79, 154, 0.6),
    1px 1px 0 #000;

  box-shadow:
    inset 0 0 10px rgba(255, 79, 154, 0.08),
    0 0 8px rgba(255, 79, 154, 0.16);
}


/* ===================== */
/* JUNKDRAWER FOOTER */
/* ===================== */

.junkdrawer-footer {
  text-align: center;
  margin: 26px 0;
}

.junkdrawer-footer a {
  color: #ff7ab6;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 9px;

  text-shadow:
    0 0 4px #ff4f9a,
    0 0 8px rgba(255, 79, 154, 0.55);
}

.junkdrawer-footer a:hover {
  color: #ffffff;
  text-shadow:
    0 0 5px #ff4f9a,
    0 0 10px #ff4f9a;
}


/* ===================== */
/* JUNKDRAWER MOBILE */
/* ===================== */

@media (max-width: 850px) {
  .junkdrawer-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}
  
/* ===================== */
/* TINY OMEN GENERATOR */
/* ===================== */

.omen-popup {
  width: 100%;
  min-height: 280px;
  box-sizing: border-box;
}

.omen-popup-body {
  padding: 22px 20px;
  box-sizing: border-box;
}

.omen-popup-body h2 {
  margin: 0 0 18px 0;

  color: #ffd8e8;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;

  text-shadow:
    0 0 4px #ff4f9a,
    0 0 10px rgba(255, 79, 154, 0.85);
}

.omen-popup-body p {
  margin: 0 0 16px 0;

  color: #f7c6d9;
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 2px;
  text-transform: uppercase;

  text-shadow:
    0 0 4px rgba(255, 79, 154, 0.45),
    1px 1px 0 #000;
}

.omen-output {
  margin: 16px 0;
  padding: 12px;
  min-height: 52px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 79, 154, 0.45);
  background: rgba(8, 0, 12, 0.65);

  color: #ffffff;
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;

  text-shadow:
    0 0 4px #ff4f9a,
    0 0 8px rgba(255, 79, 154, 0.5),
    1px 1px 0 #000;

  box-shadow:
    inset 0 0 10px rgba(255, 79, 154, 0.1),
    0 0 8px rgba(255, 79, 154, 0.14);
}

.omen-button {
  margin-top: 2px;
}

/* ===================== */
/* OMEN BUTTON CURSOR */
/* ===================== */

.omen-button,
.omen-button:hover {
  cursor: url("cursor-hover.cur"), auto;
}

/* ===================== */
/* OMEN BUTTON STYLE */
/* ===================== */

.omen-button {
  display: inline-block;
  margin-top: 2px;
  padding: 8px 13px;
  box-sizing: border-box;

  border: 1px solid rgba(255, 79, 154, 0.85);
  background:
    linear-gradient(
      180deg,
      rgba(255, 47, 143, 0.2),
      rgba(8, 0, 12, 0.78)
    );

  color: #ffb8d8;
  font-family: inherit;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;

  text-shadow:
    0 0 4px #ff4f9a,
    0 0 8px rgba(255, 79, 154, 0.55);

  box-shadow:
    inset 0 0 8px rgba(255, 79, 154, 0.1),
    0 0 8px rgba(255, 79, 154, 0.18);

  appearance: none;
  -webkit-appearance: none;
}

.omen-button:hover {
  color: #ffffff;
  border-color: rgba(255, 210, 232, 0.95);

  box-shadow:
    inset 0 0 10px rgba(255, 79, 154, 0.14),
    0 0 12px rgba(255, 79, 154, 0.4);
}

/* ===================== */
/* ONLINE FRIENDS TITLE GIF */
/* ===================== */

.online-friends-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;

  margin-bottom: 14px;
  padding-bottom: 8px;

  border-bottom: 1px solid rgba(255, 45, 117, 0.25);
}

.online-friends-title h2 {
  margin: 0;
  padding: 0;
  border-bottom: none;

  line-height: 1.05;
}

.online-friends-gif {
  width: 36px;
  height: auto;

  display: block;
  flex: 0 0 auto;

  margin-top: -4px;

  image-rendering: pixelated;

  filter:
    drop-shadow(0 0 5px rgba(255, 45, 117, 0.75));
}

/* ===================== */
/* PAGE SPRINKLES */
/* ===================== */

.page-sprinkles {
  position: fixed;
  inset: 0;

  width: 100vw;
  height: 100vh;

  pointer-events: none;
  z-index: 3;
}

.sprinkle {
  position: absolute;

  color: #ff7ca5;
  font-size: 12px;
  opacity: 0.55;

  text-shadow:
    0 0 5px rgba(255, 45, 117, 0.85),
    0 0 12px rgba(255, 45, 117, 0.35);

  animation: sprinkle-float 4s ease-in-out infinite;
}

.sprinkle-1 {
  top: 14%;
  left: 8%;
}

.sprinkle-2 {
  top: 28%;
  right: 10%;
  animation-delay: 0.8s;
}

.sprinkle-3 {
  top: 54%;
  left: 6%;
  animation-delay: 1.4s;
}

.sprinkle-4 {
  top: 68%;
  right: 14%;
  animation-delay: 0.4s;
}

.sprinkle-5 {
  bottom: 18%;
  left: 18%;
  animation-delay: 1s;
}

.sprinkle-6 {
  bottom: 12%;
  right: 8%;
  animation-delay: 1.8s;
}

@keyframes sprinkle-float {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  50% {
    transform: translateY(-5px);
    opacity: 0.8;
  }
}
  
  /* ===================== */
/* DANGEROUS TO GO ALONE BOX */
/* ===================== */

.dangerous-box {
  width: 187px;
  height: 213px;

  margin: 18px auto 0 auto;

  background-image: url("https://i.imgur.com/Cc2sjcV.gif");
  background-repeat: no-repeat;
  background-size: 187px 213px;
  background-position: center;

  position: relative;
}

.dangerous-screen {
  width: 162px;
  height: 155px;

  position: absolute;
  top: 34px;
  left: 12px;

  overflow: hidden;
  text-align: center;

  color: #ffd6e4;
  font-family: "Silkscreen", sans-serif;
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;

  text-shadow:
    0 0 4px rgba(255, 45, 117, 0.7),
    1px 1px 0 #000;
}

.dangerous-screen p {
  margin: 10px 0 8px 0;
}

.dangerous-screen img {
  display: block;
  margin: 0 auto;

  max-width: 48px;
  height: auto;

  image-rendering: pixelated;

  filter:
    drop-shadow(0 0 5px rgba(255, 45, 117, 0.75));
}

/* CRT effect final rescue */

body::before,
body::after {
  content: "" !important;
  position: fixed !important;
  inset: 0 !important;

  pointer-events: none !important;
  display: block !important;

  opacity: 1 !important;
}

body::before {
  z-index: 99998 !important;

  background:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 50%,
      rgba(0, 0, 0, 0.16) 50%
    ) !important;

  background-size: 100% 4px !important;
  mix-blend-mode: overlay !important;
}

body::after {
  z-index: 99997 !important;

  background:
    radial-gradient(
      circle at center,
      rgba(255, 0, 90, 0.065),
      rgba(0, 0, 0, 0.42) 78%
    ) !important;
}

/* non-clickable visual overlays */

.rain,
.rain *,
.vhs-line,
body::before,
body::after {
  pointer-events: none !important;
}

/* start menu final clean fix */

#start-toggle {
  display: none !important;
}

#start-button {
  display: inline-block !important;

  padding: 3px 10px !important;

  background: #e8e8e8 !important;
  border: 1px solid #ffffff !important;

  color: #151015 !important;
  text-decoration: none !important;

  font-family: 'Silkscreen', sans-serif !important;
  font-size: 9px !important;
  text-transform: uppercase !important;

  box-shadow:
    inset -1px -1px 0 #777,
    inset 1px 1px 0 #fff;

  cursor: url("cursor-hover.cur") 4 4, pointer !important;
}

#start-menu {
  position: fixed !important;
  left: 10px !important;
  bottom: 38px !important;

  width: 250px !important;

  display: none !important;

  z-index: 90000 !important;
  pointer-events: auto !important;
}

#start-menu.show {
  display: block !important;
}

header {
  border: none !important;
  box-shadow: none !important;
}

.page {
  border: none !important;
  box-shadow: none !important;
}

.hero {
  border: 1px solid rgba(255, 47, 143, 0.7) !important;
}

/* ===================== */
/* TINY OMEN GENERATOR - UNHIDE FIX */
/* ===================== */

.omen-popup {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;

  width: 100% !important;
  min-height: 280px;
  box-sizing: border-box;
}

/* ===================== */
/* TINY OMEN GENERATOR WINDOW BASE */
/* ===================== */

.omen-popup {
  width: 100%;
  min-height: 280px;
  box-sizing: border-box;

  border: 1px solid rgba(255, 47, 143, 0.85);
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 1px,
      rgba(0, 0, 0, 0.12) 2px,
      rgba(0, 0, 0, 0.12) 4px
    ),
    rgba(22, 0, 16, 0.9);

  box-shadow:
    0 0 10px rgba(255, 47, 143, 0.55),
    0 0 24px rgba(255, 47, 143, 0.22),
    inset 0 0 18px rgba(255, 47, 143, 0.08);

  overflow: hidden;
}

/* ===================== */
/* OMEN FONT + BUTTON FIX */
/* ===================== */

.omen-popup,
.omen-popup * {
  font-family: inherit;
}

.omen-popup-body {
  font-family: inherit;
}

.omen-popup-body h2,
.omen-popup-body p,
.omen-output,
.omen-button {
  font-family: inherit;
}

/* ===================== */
/* TINY OMEN GENERATOR FINAL FIX */
/* ===================== */

.omen-popup {
  width: 100%;
  min-height: 280px;
  box-sizing: border-box;
  overflow: hidden;

  border: 1px solid rgba(255, 47, 143, 0.85);
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 1px,
      rgba(0, 0, 0, 0.12) 2px,
      rgba(0, 0, 0, 0.12) 4px
    ),
    rgba(22, 0, 16, 0.9);

  box-shadow:
    0 0 10px rgba(255, 47, 143, 0.45),
    0 0 24px rgba(255, 47, 143, 0.16),
    inset 0 0 18px rgba(255, 47, 143, 0.08);
}

.omen-popup .error-top {
  height: 31px;
}

.omen-popup .window-title {
  font-size: 7px;
  letter-spacing: 1.5px;
  line-height: 1.4;
}

.omen-popup-body {
  padding: 18px 18px 20px 18px;
  box-sizing: border-box;
}

.omen-popup-body h2 {
  margin: 0 0 14px 0;
  padding-bottom: 12px;

  border-bottom: 1px solid rgba(255, 79, 154, 0.35);

  color: #ff5fa2;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: lowercase;

  text-shadow:
    0 0 4px #ff4f9a,
    0 0 10px rgba(255, 79, 154, 0.85);
}

.omen-popup-body p {
  margin: 0 0 14px 0;

  color: #f7c6d9;
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 1px;
  text-transform: lowercase;

  text-shadow:
    0 0 4px rgba(255, 79, 154, 0.45),
    1px 1px 0 #000;
}

.omen-output {
  margin: 12px 0 14px 0;
  padding: 11px 10px;
  min-height: 50px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 79, 154, 0.45);
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 1px,
      rgba(0, 0, 0, 0.08) 2px,
      rgba(0, 0, 0, 0.08) 4px
    ),
    rgba(8, 0, 12, 0.65);

  color: #ffffff;
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;

  text-shadow:
    0 0 4px #ff4f9a,
    0 0 8px rgba(255, 79, 154, 0.5),
    1px 1px 0 #000;

  box-shadow:
    inset 0 0 10px rgba(255, 79, 154, 0.1),
    0 0 8px rgba(255, 79, 154, 0.14);
}


/* ===================== */
/* OMEN BUTTON FINAL FIX */
/* ===================== */

.omen-button {
  display: inline-block;
  padding: 8px 13px;
  box-sizing: border-box;

  border: 1px solid rgba(255, 79, 154, 0.85);
  background:
    linear-gradient(
      180deg,
      rgba(255, 47, 143, 0.2),
      rgba(8, 0, 12, 0.78)
    );

  color: #ffb8d8;
  font-family: inherit;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  text-shadow:
    0 0 4px #ff4f9a,
    0 0 8px rgba(255, 79, 154, 0.55);

  box-shadow:
    inset 0 0 8px rgba(255, 79, 154, 0.1),
    0 0 8px rgba(255, 79, 154, 0.18);

  appearance: none;
  -webkit-appearance: none;
}

.omen-button:hover {
  color: #ffffff;
  border-color: rgba(255, 210, 232, 0.95);

  box-shadow:
    inset 0 0 10px rgba(255, 79, 154, 0.14),
    0 0 12px rgba(255, 79, 154, 0.4);
}

.omen-popup .window-title {
  font-size: 7px;
  letter-spacing: 1.5px;
  line-height: 1.4;
}


/* ===================== */
/* OMEN BUTTON HARD RESET */
/* ===================== */

#omen-button {
  all: unset;
  display: inline-block;

  margin-top: 4px;
  padding: 8px 14px;
  box-sizing: border-box;

  border: 1px solid rgba(255, 79, 154, 0.9);
  background:
    linear-gradient(
      180deg,
      rgba(255, 47, 143, 0.22),
      rgba(8, 0, 12, 0.85)
    );

  color: #ffb8d8;
  font-family: inherit;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;

  text-shadow:
    0 0 4px #ff4f9a,
    0 0 8px rgba(255, 79, 154, 0.65);

  box-shadow:
    inset 0 0 8px rgba(255, 79, 154, 0.12),
    0 0 8px rgba(255, 79, 154, 0.22);

  cursor: url("cursor-hover.cur"), auto;
}

#omen-button:hover {
  color: #ffffff;
  border-color: rgba(255, 210, 232, 1);

  background:
    linear-gradient(
      180deg,
      rgba(255, 79, 154, 0.32),
      rgba(12, 0, 18, 0.9)
    );

  box-shadow:
    inset 0 0 10px rgba(255, 79, 154, 0.18),
    0 0 14px rgba(255, 79, 154, 0.42);
}

#omen-button:active {
  transform: translateY(1px);
}

/* ===================== */
/* OMEN FONT MATCH FIX */
/* ===================== */

.omen-popup-body,
.omen-popup-body p,
.omen-output,
#omen-button {
  font-family: inherit;
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f7c6d9;

  text-shadow:
    0 0 4px rgba(255, 79, 154, 0.45),
    1px 1px 0 #000;
}

/* ===================== */
/* OMEN OUTPUT TEXT STYLE */
/* ===================== */

.omen-output {
  display: block;

  margin: 14px 0;
  padding: 0;

  min-height: auto;
  border: none;
  background: transparent;
  box-shadow: none;

  color: #f7c6d9;
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
}

/* ===================== */
/* OMEN HEADING SOFTEN */
/* ===================== */

.omen-popup-body h2 {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: lowercase;
}

/* ===================== */
/* OMEN BUTTON FONT ONLY */
/* ===================== */

#omen-button {
  font-family: inherit;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.omen-output {
  border: none;
  background: transparent;
  box-shadow: none;
}

/* ===================== */
/* ONLINE FRIENDS TITLE GIF */
 /* ===================== */

.online-friends-heading {
  position: relative !important;
  display: inline-block !important;

  margin: 0 0 14px 0 !important;
  padding: 0 54px 8px 0 !important;

  line-height: 1.05 !important;
  border-bottom: 1px solid rgba(255, 45, 117, 0.25) !important;
}

.online-friends-heading .online-friends-gif {
  position: absolute !important;

  top: 50% !important;
  right: 0 !important;

  width: 38px !important;
  height: auto !important;

  transform: translateY(-50%) !important;

  display: block !important;
  image-rendering: pixelated !important;

  filter:
    drop-shadow(0 0 5px rgba(255, 45, 117, 0.75));
}

/* ===================== */
/* REMOVE OUTER HERO HEADER FRAME */
/* ===================== */

.page > header {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* ===================== */
/* REMOVE EXTRA HERO OUTER FRAMES */
/* ===================== */

.page,
.page::before,
.page::after,
header,
header::before,
header::after {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* keep the actual hero box */
header .hero,
header .window.hero {
  border: 1px solid rgba(255, 45, 117, 0.55) !important;

  box-shadow:
    0 0 18px rgba(255, 45, 117, 0.22),
    inset 0 0 15px rgba(255, 45, 117, 0.08) !important;

  background: rgba(8, 8, 10, 0.72) !important;
}

/* ===================== */
/* HERO CORNER MOTH FINAL */
/* ===================== */

.window.hero {
  position: relative;
  overflow: visible;
}

.window.hero .corner-moth {
  position: absolute !important;
  top: -26px !important;
  left: -26px !important;

  width: 54px !important;
  height: auto !important;

  display: block !important;
  margin: 0 !important;

  z-index: 20 !important;
  pointer-events: none;

  image-rendering: pixelated;

  filter:
    drop-shadow(0 0 5px rgba(255, 45, 117, 0.9))
    drop-shadow(0 0 12px rgba(255, 45, 117, 0.55));
}

/* ===================== */
/* FUTURE PAGE MOON DIVIDER */
/* ===================== */

.future-moon-divider {
  width: 100%;
  margin: 26px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.future-moon-divider img {
  width: 210px;
  max-width: 80%;
  height: auto;

  image-rendering: auto;

  filter:
    drop-shadow(0 0 6px rgba(255, 45, 117, 0.55))
    drop-shadow(0 0 14px rgba(255, 190, 220, 0.25));
}

/* ===================== */
/* FUTURE PAGE MOON DIVIDER */
/* ===================== */

.future-moon-divider {
  grid-column: 1 / -1;

  width: 100%;
  margin: 14px auto 20px auto;

  display: flex;
  justify-content: center;
  align-items: center;
}

.future-moon-divider img {
  width: 210px;
  max-width: 80%;
  height: auto;

  image-rendering: auto;

  filter:
    drop-shadow(0 0 6px rgba(255, 45, 117, 0.55))
    drop-shadow(0 0 14px rgba(255, 190, 220, 0.25));
}

/* ===================== */
/* FUTURE PAGE WIDE ENTRY */
/* ===================== */

.diary-wide {
  grid-column: span 2;
}

/* ===================== */
/* START MENU HINT */
/* ===================== */

.start-menu-hint {
  margin: 10px 8px 4px;
  padding-top: 8px;

  border-top: 1px solid rgba(255, 45, 117, 0.25);

  color: #ff7ca5;
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  opacity: 0.75;
}

/* ===================== */
/* SITE HINT */
/* ===================== */

.site-hint {
  margin: -12px auto 24px;
  text-align: center;

  color: #ff7ca5;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;

  opacity: 0.7;

  text-shadow:
    0 0 5px rgba(255, 45, 117, 0.65);
}

/* ===================== */
/* GUESTBOOK NUDGE */
/* ===================== */

.guestbook-nudge {
  text-align: center;
}

.guestbook-nudge img {
  display: block;
  width: 52px;
  height: auto;

  margin: 0 auto 10px auto;

  image-rendering: pixelated;

  filter:
    drop-shadow(0 0 5px rgba(255, 45, 117, 0.75));
}

.guestbook-nudge p {
  margin: 6 0 12px 0;

  color: #ffd6e4;
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;

  text-shadow:
    0 0 5px rgba(255, 45, 117, 0.65);
}

.guestbook-nudge a {
  display: inline-block;

  padding: 7px 10px;

  border: 1px solid rgba(255, 45, 117, 0.55);
  background: rgba(5, 0, 8, 0.68);

  color: #ff9cbd;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;

  box-shadow:
    inset 0 0 8px rgba(255, 45, 117, 0.1),
    0 0 8px rgba(255, 45, 117, 0.16);
}

.guestbook-nudge a:hover {
  color: #ffffff;

  text-shadow:
    2px 0 #00ffe1,
    -2px 0 #ff2d75,
    0 0 8px #ff2d75;
}

/* ===================== */
/* GUESTBOOK NUDGE GIF CLEANUP */
/* ===================== */

.guestbook-nudge img {
  image-rendering: auto;
  filter:
    drop-shadow(0 0 5px rgba(255, 45, 117, 0.75));
}

/* ===================== */
/* GUESTBOOK NUDGE TIGHTEN */
/* ===================== */

.guestbook-nudge {
  padding: 18px 14px;
}

.guestbook-nudge p {
  margin-bottom: 10px;
}

/* ===================== */
/* PATCH NOTE LISTS */
/* ===================== */

.patch-list {
  margin: 18px 0 0 22px;
  padding: 0;

  text-align: left;
}

.patch-list li {
  margin-bottom: 10px;
  padding-left: 2px;

  line-height: 1.7;
}