:root {
  --ink: #34214f;
  --ink-soft: #5c4776;
  --edge-dark: #513b72;
  --edge-mid: #8c72aa;
  --edge-light: #eadbfa;
  --lavender: #dbc7ed;
  --lavender-light: #f1e8fa;
  --pink: #d35faf;
  --pink-bright: #f07dcc;
  --purple: #6d42b5;
  --blue: #315cff;
  --white: #fffaff;
  --pixel: "Pixelify Sans", monospace;
  --mono: "VT323", monospace;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  background:
    radial-gradient(circle at 76% 20%, rgba(240, 125, 204, .22), transparent 24%),
    radial-gradient(circle at 20% 78%, rgba(49, 92, 255, .3), transparent 28%),
    linear-gradient(145deg, #34245b 0%, #725493 48%, #38265c 100%);
  color: var(--ink);
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  background: linear-gradient(rgba(255,255,255,.025) 50%, rgba(38,20,64,.03) 50%);
  background-size: 100% 4px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 10;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.sr-only {
  clip: rect(0,0,0,0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.wallpaper-glow {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 214, 250, .16), transparent 19%),
    radial-gradient(circle at 50% 42%, rgba(109, 66, 181, .24), transparent 40%);
  inset: 0;
  pointer-events: none;
  position: fixed;
}

.wallpaper-pixels {
  background-image:
    radial-gradient(circle, rgba(255,255,255,.68) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(240,125,204,.55) 0 1px, transparent 1.5px);
  background-position: 0 0, 23px 29px;
  background-size: 61px 61px, 73px 73px;
  inset: 0;
  opacity: .35;
  pointer-events: none;
  position: fixed;
}

.desktop {
  margin: 0 auto;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  width: min(100%, 1920px);
}

.desktop-heading {
  color: var(--white);
  left: 50%;
  position: absolute;
  text-align: center;
  text-shadow: 2px 2px 0 rgba(52,33,79,.7);
  top: 3vh;
  transform: translateX(-50%);
  width: min(90%, 620px);
}

.desktop-heading p,
.desktop-heading span {
  font-family: var(--pixel);
  font-size: 11px;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

.desktop-heading h1 {
  color: var(--white);
  font-family: var(--pixel);
  font-size: clamp(28px, 3vw, 50px);
  letter-spacing: 1px;
  line-height: .9;
  margin: 5px 0 9px;
  text-shadow: 3px 3px 0 var(--purple), 5px 5px 0 rgba(52,33,79,.5);
}

.desktop-heading span { color: #f2c8ec; }

.desktop-status {
  align-items: center;
  background: rgba(219,199,237,.72);
  border: 1px solid var(--edge-dark);
  bottom: 23px;
  box-shadow: inset 1px 1px var(--edge-light), inset -1px -1px var(--edge-mid);
  color: var(--ink);
  display: flex;
  font-family: var(--mono);
  font-size: 18px;
  gap: 6px;
  left: 22px;
  padding: 3px 8px;
  position: absolute;
}

.desktop-status i,
.room-status i {
  animation: pulse 1.6s infinite;
  background: #52e98b;
  border: 1px solid #247c4b;
  border-radius: 50%;
  display: inline-block;
  height: 7px;
  width: 7px;
}

.desktop-window {
  background: rgba(219, 199, 237, .9);
  border: 1px solid var(--edge-dark);
  box-shadow:
    inset 1px 1px var(--edge-light),
    inset -1px -1px var(--edge-mid),
    5px 5px 0 rgba(52,33,79,.25),
    0 18px 40px rgba(35,20,61,.18);
  color: var(--ink);
  padding: 4px;
  position: absolute;
}

.desktop-window.is-active:not(.is-maximized) { z-index: 8; }

.window-bar {
  align-items: center;
  background: linear-gradient(90deg, var(--purple), #a24ab4 52%, var(--pink));
  color: white;
  display: flex;
  height: 28px;
  justify-content: space-between;
  padding: 2px 4px 2px 8px;
  text-shadow: 1px 1px var(--edge-dark);
}

.window-bar h2 {
  font-family: var(--pixel);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
  margin: 0;
}

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

.window-controls button {
  align-items: center;
  background: var(--lavender);
  border: 1px solid var(--edge-dark);
  box-shadow: inset 1px 1px white, inset -1px -1px var(--edge-mid);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  height: 19px;
  justify-content: center;
  line-height: 1;
  text-shadow: none;
  width: 20px;
}

.window-controls button:active {
  box-shadow: inset 1px 1px var(--edge-mid);
  transform: translate(1px, 1px);
}

.desktop-window.is-minimized > :not(.window-bar) { display: none; }

.desktop-window.is-maximized {
  bottom: 5vh;
  height: auto;
  left: 5%;
  right: 5%;
  top: 5vh;
  width: auto;
  z-index: 20;
}

.desktop-window.is-maximized .stream-embed {
  height: calc(100vh - 124px);
  max-height: none;
}

.desktop-window.is-maximized .chat-content,
.desktop-window.is-maximized .links-list {
  height: calc(100vh - 82px);
  overflow: auto;
}

.links-window {
  left: 14.5%;
  top: 8.5%;
  width: 350px;
  z-index: 3;
}

.links-list {
  background: rgba(255,250,255,.68);
  border: 1px solid var(--edge-mid);
  display: block;
  margin-top: 4px;
}

.links-list a {
  align-items: center;
  border-bottom: 1px solid rgba(81,59,114,.4);
  display: grid;
  font-family: var(--pixel);
  gap: 9px;
  grid-template-columns: 19px 1fr auto;
  min-height: 40px;
  padding: 7px 11px;
  transition: background .15s, color .15s, padding .15s;
}

.links-list a:last-child { border-bottom: 0; }
.links-list a span { color: var(--pink); font-size: 16px; }
.links-list a b { font-size: 13px; font-weight: 500; }
.links-list a small { color: var(--ink-soft); font-family: var(--mono); font-size: 16px; }

.links-list a:hover,
.links-list a:focus-visible {
  background: var(--pink);
  color: white;
  outline: 0;
  padding-left: 16px;
  text-shadow: 1px 1px var(--edge-dark);
}

.links-list a:hover span,
.links-list a:focus-visible span,
.links-list a:hover small,
.links-list a:focus-visible small { color: white; }

.cam-window {
  left: 25.2%;
  top: 24.3%;
  width: 49.5%;
  z-index: 2;
}

.stream-embed {
  aspect-ratio: 16 / 9;
  background: #110d1b;
  border: 1px solid var(--edge-dark);
  box-shadow: inset 2px 2px 6px rgba(0,0,0,.75);
  margin-top: 4px;
  overflow: hidden;
  position: relative;
}

.stream-embed iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.offline-card {
  align-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(211,95,175,.35), transparent 24%),
    linear-gradient(145deg, #34245b, #151024);
  color: white;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: absolute;
  text-align: center;
}

.offline-card[hidden] { display: none; }

.offline-icon {
  color: var(--pink-bright);
  font-size: 45px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(240,125,204,.7);
}

.offline-card p {
  color: #efc9e9;
  font-family: var(--pixel);
  font-size: 10px;
  letter-spacing: 1px;
  margin: 8px 0;
  text-transform: uppercase;
}

.offline-card strong {
  font-family: var(--pixel);
  font-size: clamp(18px, 2.5vw, 35px);
  font-weight: 500;
}

.offline-card a {
  background: var(--lavender);
  border: 1px solid var(--edge-dark);
  box-shadow: inset 1px 1px white, inset -1px -1px var(--edge-mid), 3px 3px 0 rgba(0,0,0,.25);
  color: var(--ink);
  font-family: var(--pixel);
  font-size: 10px;
  margin-top: 17px;
  padding: 8px 12px;
}

.stream-status {
  align-items: center;
  background: rgba(255,250,255,.58);
  border: 1px solid var(--edge-mid);
  display: flex;
  font-family: var(--mono);
  font-size: 17px;
  justify-content: space-between;
  margin-top: 4px;
  padding: 4px 7px;
}

.stream-status a { color: #7b2c79; font-weight: bold; }
.room-status.offline i {
  animation: none;
  background: var(--pink);
  border-color: #8a376f;
}

.chat-window {
  left: 55%;
  top: 66%;
  width: 31%;
  z-index: 1;
}

.chat-content {
  background: rgba(255,250,255,.54);
  border: 1px solid var(--edge-mid);
  margin-top: 4px;
  padding: 10px;
}

.chat-history {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--edge-dark);
  box-shadow: inset 1px 1px 4px rgba(52,33,79,.24);
  height: 74px;
  overflow: hidden;
  padding: 7px 9px;
}

.chat-history p {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 19px;
  line-height: 1;
  margin: 0 0 6px;
}

.chat-history b { color: #7b2c79; font-weight: normal; }
.message-form { margin-top: 7px; }
.message-form .honeypot { display: none; }

.message-form input,
.message-form textarea {
  background: rgba(255,255,255,.85);
  border: 1px solid var(--edge-dark);
  border-radius: 0;
  box-shadow: inset 1px 1px 3px rgba(52,33,79,.18);
  color: var(--ink);
  display: block;
  font-family: var(--mono);
  font-size: 18px;
  padding: 4px 6px;
  resize: none;
  width: 100%;
}

.message-form input { margin-bottom: 5px; }
.message-row { display: flex; gap: 5px; }
.message-form textarea { height: 46px; }

.message-form button {
  background: var(--lavender);
  border: 1px solid var(--edge-dark);
  box-shadow: inset 1px 1px white, inset -1px -1px var(--edge-mid);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--pixel);
  font-size: 10px;
  min-width: 67px;
  padding: 0 8px;
}

.message-form button:active {
  box-shadow: inset 1px 1px var(--edge-mid);
  transform: translate(1px,1px);
}

.message-form button:disabled { cursor: wait; opacity: .65; }

.message-confirmation {
  color: #7b2c79;
  font-family: var(--mono);
  font-size: 17px;
  margin: 6px 0 0;
  min-height: 16px;
}

footer {
  bottom: 23px;
  color: rgba(255,250,255,.82);
  display: flex;
  font-family: var(--pixel);
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 1px;
  position: absolute;
  right: 24px;
  text-shadow: 1px 1px var(--edge-dark);
  text-transform: uppercase;
  width: min(430px, 42vw);
}

/* Blog desktop */
.home-shortcut {
  color: var(--ink);
  text-decoration: none;
}

.shortcut-icon {
  color: #7b2c79;
  font-family: var(--pixel);
  font-size: 16px;
  font-weight: bold;
}

.lovers-window {
  height: 60%;
  left: 8.8%;
  top: 15.6%;
  width: 18.9%;
  z-index: 3;
}

.aim-body {
  background: #d8d2db;
  border: 1px solid var(--edge-mid);
  font-family: Arial, sans-serif;
  height: calc(100% - 32px);
  margin-top: 4px;
  overflow-y: auto;
  padding: 5px;
}

.aim-menu {
  display: flex;
  font-size: 12px;
  gap: 18px;
  padding: 3px 3px 7px;
  text-decoration: underline;
}

.aim-banner {
  align-items: center;
  background: linear-gradient(135deg, #39215d, #7547bd 55%, #d35faf);
  border: 2px inset #eee;
  color: white;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 7px;
  min-height: 75px;
  padding: 8px;
  text-shadow: 1px 1px var(--edge-dark);
}

.aim-heart { color: #f0b9e2; font-size: 42px; }
.aim-banner b { display: block; font-family: var(--pixel); font-size: 13px; }
.aim-banner small { display: block; font-family: var(--mono); font-size: 16px; }

.aim-tabs {
  align-items: end;
  display: flex;
  font-size: 12px;
  gap: 2px;
}

.aim-tabs b,
.aim-tabs span {
  background: #ddd8df;
  border: 1px solid #77707c;
  border-bottom: 0;
  padding: 6px 11px;
}

.buddy-list {
  background: #f6f4f7;
  border: 1px inset white;
  min-height: 205px;
  padding: 9px 8px;
}

.buddy-list strong {
  background: #e7d9a0;
  display: block;
  font-size: 14px;
  padding: 2px 4px;
}

.buddy-list ol { list-style: none; margin: 7px 0 15px; padding: 0 4px; }
.buddy-list li { align-items: center; display: grid; font-size: 13px; gap: 5px; grid-template-columns: 8px 1fr auto; padding: 3px 0; }
.buddy-list li i { background: #53ce73; border: 1px solid #268b45; border-radius: 50%; height: 6px; width: 6px; }
.buddy-list li small { color: #756b7c; font-size: 10px; }
.buddy-list p { color: #968c9c; font-size: 12px; margin: 0 4px; }

.photos-window { left: 61.5%; top: 28.9%; width: 31.25%; z-index: 2; }

.folder-toolbar,
.folder-status {
  align-items: center;
  background: #e2dce6;
  border: 1px solid var(--edge-mid);
  display: flex;
  font-family: var(--mono);
  font-size: 17px;
  justify-content: space-between;
  margin-top: 4px;
  padding: 3px 7px;
}

.folder-toolbar a { color: #7b2c79; }

.thumbnail-grid {
  background: rgba(255,250,255,.68);
  border: 1px solid var(--edge-mid);
  display: grid;
  gap: 18px 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: min(48vh, 430px);
  margin-top: 4px;
  overflow-y: auto;
  padding: 18px;
}

.thumbnail-grid figure { margin: 0; min-width: 0; text-align: center; }

.photo-thumb {
  align-items: center;
  aspect-ratio: 4 / 3;
  border: 3px ridge #eee;
  box-shadow: 2px 2px 0 rgba(52,33,79,.2);
  display: flex;
  justify-content: center;
  margin: 0 auto 5px;
  max-width: 155px;
  overflow: hidden;
  position: relative;
}

.photo-thumb::before {
  border: 1px dashed rgba(255,255,255,.7);
  content: "";
  inset: 8px;
  position: absolute;
}

.photo-thumb span {
  color: rgba(255,255,255,.85);
  font-family: var(--pixel);
  font-size: 10px;
  position: relative;
  text-shadow: 1px 1px var(--edge-dark);
  z-index: 1;
}

.pink-photo { background: linear-gradient(145deg, #d35faf, #f0b9e2); }
.purple-photo { background: linear-gradient(145deg, #4d286f, #a24ab4); }
.blue-photo { background: linear-gradient(145deg, #315cff, #9cb3ff); }
.silver-photo { background: linear-gradient(145deg, #9d8daa, #f1e8fa); }
.dark-photo { background: linear-gradient(145deg, #171023, #6d42b5); }
.candy-photo { background: linear-gradient(145deg, #f07dcc, #7960c6 55%, #c7d1ff); }

.thumbnail-grid figcaption,
.pixel-file span {
  font-family: var(--mono);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.art-window { left: 29.4%; top: 53.6%; width: 34.3%; z-index: 4; }

.art-scroll {
  background: rgba(255,250,255,.68);
  border: 1px solid var(--edge-mid);
  display: flex;
  gap: 14px;
  margin-top: 4px;
  max-height: 190px;
  overflow: auto;
  padding: 13px;
}

.pixel-file { flex: 0 0 92px; text-align: center; }

.pixel-art {
  align-items: center;
  background-color: #f6eff9;
  background-image:
    linear-gradient(rgba(81,59,114,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(81,59,114,.12) 1px, transparent 1px);
  background-size: 8px 8px;
  border: 2px ridge #eee;
  color: var(--pink);
  display: flex;
  font-family: var(--pixel);
  font-size: 42px;
  height: 82px;
  justify-content: center;
  margin-bottom: 5px;
  width: 82px;
}

.pixel-heart::before {
  color: var(--pink);
  content: "♥";
  filter: drop-shadow(4px 4px 0 #7b2c79);
  font-size: 43px;
}

.pixel-star { color: #7852c4; text-shadow: 3px 3px #e8a7d8; }
.pixel-mail { background-color: #dcd1f0; color: #7b2c79; }
.pixel-blank { color: #ad9db8; }

.blog-page footer a { color: #f2c8ec; }

.desktop-window.is-maximized .thumbnail-grid {
  height: calc(100vh - 132px);
}

.desktop-window.is-maximized .art-scroll {
  align-content: flex-start;
  flex-wrap: wrap;
  height: calc(100vh - 82px);
  max-height: none;
}

.desktop-window.is-maximized .aim-body {
  height: calc(100vh - 42px);
  overflow: auto;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 4px rgba(82,233,139,.18); opacity: .72; }
}

@media (max-width: 1050px) {
  body { background: linear-gradient(160deg, #443068, #725493 55%, #34245b); }

  .desktop {
    min-height: 100vh;
    overflow: visible;
    padding: 36px 18px 70px;
  }

  .desktop-heading {
    left: auto;
    margin: 0 auto;
    max-width: 620px;
    position: relative;
    top: auto;
    transform: none;
  }

  .desktop-heading h1 { font-size: 38px; }

  .desktop-window {
    box-shadow:
      inset 1px 1px var(--edge-light),
      inset -1px -1px var(--edge-mid),
      5px 5px 0 rgba(52,33,79,.25);
    left: auto;
    margin: 24px auto 0;
    position: relative;
    top: auto;
    width: min(100%, 620px);
  }

  .desktop-window.is-maximized {
    bottom: 12px;
    height: auto;
    left: 12px;
    margin: 0;
    position: fixed;
    right: 12px;
    top: 12px;
    width: auto;
  }

  .desktop-window.is-maximized .stream-embed {
    height: calc(100vh - 105px);
  }

  .links-window { margin-top: 32px; }
  .cam-window { z-index: 2; }
  .chat-window { z-index: 1; }
  .desktop-status { display: none; }

  .blog-desktop .desktop-window { width: min(100%, 620px); }
  .blog-desktop .lovers-window { max-width: 370px; }
  .thumbnail-grid { height: 420px; }
  .art-scroll { max-height: 225px; }

  footer {
    bottom: auto;
    margin: 40px auto 0;
    max-width: 620px;
    position: relative;
    right: auto;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .desktop { padding: 25px 11px 48px; }
  .desktop-heading { padding: 0 5px; }
  .desktop-heading h1 { font-size: 31px; }
  .desktop-heading p, .desktop-heading span { font-size: 9px; }
  .desktop-window { margin-top: 18px; padding: 3px; }
  .links-window { margin-top: 27px; }
  .window-bar { height: 27px; padding-left: 6px; }
  .window-bar h2 { font-size: 11px; }
  .window-controls button { height: 18px; width: 19px; }
  .links-list { margin-top: 3px; }
  .links-list a { min-height: 38px; padding: 6px 9px; }
  .links-list a b { font-size: 11px; }
  .links-list a small { font-size: 14px; }
  .stream-embed { margin-top: 3px; }
  .stream-status { font-size: 15px; margin-top: 3px; }
  .stream-status .room-status { max-width: 60%; }
  .chat-content { margin-top: 3px; padding: 8px; }
  .chat-history { height: 70px; }
  .message-form button { min-width: 60px; }
  footer { flex-direction: column; gap: 7px; }
  .thumbnail-grid { gap: 14px 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); height: 390px; padding: 12px; }
  .photo-thumb { border-width: 2px; }
  .art-scroll { max-height: 205px; }
}

/* Blog desktop v2 */
.aim-ad {
  align-items: center;
  background: #c8c2cb;
  border: 2px inset #eee;
  display: flex;
  height: 218px;
  justify-content: center;
  margin: 0 auto 7px;
  overflow: hidden;
  width: 248px;
}

.aim-ad iframe {
  background: #c8c2cb;
  border: 0;
  display: block;
  height: 210px;
  overflow: hidden;
  width: 240px;
}

.aim-tabs a {
  background: #ddd8df;
  border: 1px solid #77707c;
  border-bottom: 0;
  color: var(--ink);
  padding: 6px 11px;
}

.buddy-list { min-height: 128px; }
.photos-window { height: 42.3%; }
.art-window { height: 33.2%; }

.thumbnail-grid {
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: calc(100% - 89px);
  padding: 10px;
}

.photo-file { margin: 0; min-width: 0; text-align: center; }
.photo-file a, .pixel-file a { display: block; }

.photo-file img {
  aspect-ratio: 4 / 3;
  border: 2px ridge #eee;
  display: block;
  height: 68px;
  margin: 0 auto 3px;
  object-fit: cover;
  width: 82px;
}

.photo-file figcaption,
.pixel-file span {
  display: block;
  font-family: var(--mono);
  font-size: 14px;
  line-height: .9;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.paint-menu,
.notepad-menu {
  background: #e2dce6;
  border: 1px solid var(--edge-mid);
  font-family: Arial, sans-serif;
  font-size: 11px;
  margin-top: 4px;
  padding: 3px 6px;
}

.paint-workspace {
  background: #aaa2ad;
  border: 1px solid var(--edge-mid);
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  height: calc(100% - 86px);
  margin-top: 3px;
  overflow: hidden;
}

.paint-tools {
  align-content: start;
  background: #d8d2db;
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(2, 18px);
  padding: 4px 3px;
}

.paint-tools button {
  align-items: center;
  background: #d8d2db;
  border: 2px outset #eee;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 10px;
  height: 19px;
  justify-content: center;
  padding: 0;
  width: 19px;
}

.art-scroll {
  align-content: start;
  background: white;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 5px;
  max-height: none;
  overflow: auto;
  padding: 11px;
}

.pixel-file { flex: 0 0 74px; text-align: center; }
.pixel-file img {
  background-image:
    linear-gradient(#ddd 1px, transparent 1px),
    linear-gradient(90deg, #ddd 1px, transparent 1px);
  background-size: 6px 6px;
  border: 1px dotted #777;
  display: block;
  height: 68px;
  image-rendering: pixelated;
  margin: 0 auto 3px;
  object-fit: contain;
  width: 68px;
}

.paint-palette {
  background: #d8d2db;
  border: 1px solid var(--edge-mid);
  display: flex;
  gap: 2px;
  margin-top: 3px;
  padding: 4px 6px;
}

.paint-palette i { border: 1px inset #eee; display: block; height: 13px; width: 18px; }
.paint-palette i:nth-child(1) { background:#000; }.paint-palette i:nth-child(2) { background:#fff; }
.paint-palette i:nth-child(3) { background:#6d42b5; }.paint-palette i:nth-child(4) { background:#a24ab4; }
.paint-palette i:nth-child(5) { background:#d35faf; }.paint-palette i:nth-child(6) { background:#f07dcc; }
.paint-palette i:nth-child(7) { background:#315cff; }.paint-palette i:nth-child(8) { background:#eadbfa; }
.paint-palette i:nth-child(9) { background:#ffe45c; }.paint-palette i:nth-child(10) { background:#52e98b; }

.notes-window {
  height: 32.4%;
  left: 30.6%;
  top: 15.6%;
  width: 36.4%;
  z-index: 5;
}

.notes-scroll {
  background: #fffef4;
  border: 1px solid var(--edge-mid);
  height: calc(100% - 57px);
  overflow-y: auto;
  padding: 8px 10px;
}

.notes-scroll article { border-bottom: 1px dotted #aaa; padding: 4px 0 8px; }
.notes-scroll article:last-child { border-bottom: 0; }
.notes-scroll time { color: #8a6d84; font-family: var(--mono); font-size: 14px; }
.notes-scroll p { font-family: var(--mono); font-size: 18px; line-height: 1; margin: 3px 0 0; white-space: pre-wrap; }

.folder-empty {
  color: #8a7d91;
  font-family: var(--mono);
  font-size: 18px;
  grid-column: 1 / -1;
  margin: auto;
  text-align: center;
}

.desktop-window.is-maximized .paint-workspace { height: calc(100vh - 122px); }
.desktop-window.is-maximized .art-scroll { height: auto; }
.desktop-window.is-maximized .notes-scroll { height: calc(100vh - 82px); }

@media (max-width: 1050px) {
  .blog-desktop .photos-window,
  .blog-desktop .art-window,
  .blog-desktop .notes-window { width: min(100%, 620px); }
  .thumbnail-grid { height: 245px; }
  .paint-workspace { height: 245px; }
  .notes-scroll { height: 220px; }
}

@media (max-width: 560px) {
  .thumbnail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); height: 250px; }
  .photo-file img { height: 58px; width: 70px; }
  .paint-workspace { height: 235px; }
  .aim-ad { max-width: 100%; }
}
