/* =========================================================
       CUSTOMIZE HERE: change these colors to make the site yours
       ========================================================= */
    :root {
      --ink: #26352f;
      --muted: #66736b;
      --paper: #fffdf4;
      --paper-2: #f4f0d8;
      --mint: #d7ebcf;
      --mint-dark: #9cc28f;
      --pink: #f5c8cb;
      --yellow: #f6df8c;
      --blue: #c7ddea;
      --line: #789276;
      --shadow: rgba(38, 53, 47, .20);
      --display: Georgia, "Times New Roman", serif;
      --body: "Trebuchet MS", Verdana, sans-serif;
      --pixel: "Courier New", monospace;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--ink);
      font-family: var(--body);
      font-size: 15px;
      line-height: 1.55;
      background-color: #dcebd1;
      background-image:
        linear-gradient(45deg, rgba(255,255,255,.38) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.38) 75%),
        linear-gradient(45deg, rgba(255,255,255,.38) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.38) 75%),
        radial-gradient(rgba(68, 100, 73, .16) 1px, transparent 1px);
      background-position: 0 0, 14px 14px, 0 0;
      background-size: 28px 28px, 28px 28px, 7px 7px;
    }

    a { color: #865565; font-weight: 700; }
    a:hover, a:focus { color: #3e756c; }
    img { max-width: 100%; height: auto; }

    .site-wrap {
      width: min(1120px, calc(100% - 28px));
      margin: 24px auto 44px;
    }

    .top-strip {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      padding: 6px 12px;
      border: 2px solid var(--line);
      background: var(--yellow);
      box-shadow: 4px 4px 0 var(--shadow);
      font: 700 12px var(--pixel);
      letter-spacing: .03em;
    }

    .site-shell {
      margin-top: 12px;
      border: 3px double var(--line);
      padding: 12px;
      background: rgba(255, 253, 244, .78);
      box-shadow: 8px 8px 0 var(--shadow);
    }

    header {
      position: relative;
      overflow: hidden;
      min-height: 172px;
      padding: 30px 34px 22px;
      border: 2px solid var(--line);
      background:
        linear-gradient(135deg, rgba(255,255,255,.7), transparent 45%),
        repeating-linear-gradient(0deg, transparent, transparent 25px, rgba(89,130,92,.10) 26px),
        var(--mint);
    }

    header::after {
      content: "✦  ✿  ✦  ✿  ✦";
      position: absolute;
      right: 22px;
      bottom: 12px;
      color: #639070;
      font-size: 19px;
      letter-spacing: 8px;
      transform: rotate(-5deg);
    }

    .eyebrow {
      margin: 0 0 2px;
      font: 700 12px var(--pixel);
      text-transform: uppercase;
      letter-spacing: .15em;
    }

    h1, h2, h3 { margin-top: 0; }
    h1 {
      margin-bottom: 4px;
      font: 700 clamp(2.5rem, 7vw, 5.4rem)/.95 var(--display);
      color: #4e785e;
      text-shadow: 3px 3px 0 #fff5bf;
    }

    .tagline {
      max-width: 600px;
      margin: 0;
      font-family: var(--display);
      font-size: 1.08rem;
    }

    .layout {
      display: grid;
      grid-template-columns: 205px minmax(0, 1fr) 205px;
      gap: 13px;
      margin-top: 13px;
      align-items: start;
    }

    .column { display: grid; gap: 13px; }

    .card {
      border: 2px solid var(--line);
      padding: 12px;
      background: var(--paper);
      box-shadow: 4px 4px 0 var(--shadow);
    }

    .card:nth-child(2n) { background: var(--paper-2); }

    .card-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin: -12px -12px 10px;
      padding: 5px 9px;
      border-bottom: 2px solid var(--line);
      background: var(--pink);
      font: 700 14px var(--pixel);
      text-transform: lowercase;
    }

    .card-title span { color: #754858; }

    .nav-list, .link-list, .todo-list, .blog-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .nav-list li { border-bottom: 1px dashed #9cb39a; }
    .nav-list a {
      display: block;
      padding: 5px 2px;
      text-decoration: none;
    }
    .nav-list a::before { content: "↳ "; color: #6c9c76; }

    .stamp-row {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 9px;
    }

    .stamp {
      display: inline-block;
      padding: 3px 5px;
      border: 1px solid #778d70;
      background: #e4f1dc;
      color: #536c59;
      font: 700 10px var(--pixel);
      text-decoration: none;
      box-shadow: 2px 2px 0 rgba(77, 104, 80, .18);
    }

    .profile {
      display: grid;
      grid-template-columns: 78px 1fr;
      gap: 10px;
      align-items: center;
    }

    .avatar {
      display: grid;
      place-items: center;
      width: 78px;
      height: 78px;
      border: 2px solid var(--line);
      background: var(--pink);
      font-size: 38px;
      filter: saturate(.8);
    }

    .profile p { margin: 0; }
    .profile strong { font-family: var(--display); font-size: 1.35rem; }
    .tiny { color: var(--muted); font-size: .82rem; }

    .welcome {
      padding: 16px;
      border: 2px dashed #9b8290;
      background: #fff9e8;
      font-family: var(--display);
      font-size: 1.08rem;
    }

    .welcome p:last-child { margin-bottom: 0; }

    .notice {
      margin: 12px 0 0;
      padding: 8px 10px;
      border-left: 5px solid #cf8f9e;
      background: #fbe5dd;
      font-family: var(--pixel);
      font-size: .8rem;
    }

    .section-heading {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 10px;
      border-bottom: 2px dotted var(--line);
      padding-bottom: 4px;
      margin-bottom: 10px;
    }

    .section-heading h2 { margin: 0; font: 700 1.35rem var(--display); }
    .section-heading small { font: 700 10px var(--pixel); color: var(--muted); }

    .updates { display: grid; gap: 8px; }
    .update { display: grid; grid-template-columns: 75px 1fr; gap: 8px; }
    .date { color: #865565; font: 700 11px var(--pixel); }
    .update p { margin: 0; }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }

    .mini-note {
      min-height: 76px;
      padding: 8px;
      border: 1px solid #a9a779;
      background: #fff1a9;
      transform: rotate(-1deg);
    }
    .mini-note:nth-child(2) { background: #d8ebf1; transform: rotate(1.5deg); }
    .mini-note:nth-child(3) { background: #f6d7dc; transform: rotate(.5deg); }
    .mini-note:nth-child(4) { background: #e2efd0; transform: rotate(-1.5deg); }
    .mini-note strong { display: block; font: 700 11px var(--pixel); }
    .mini-note span { font-size: .85rem; }

    .todo-list li { margin: 4px 0; font-size: .9rem; }
    .todo-list li::before { content: "□ "; color: #8e5e6d; font-weight: 700; }
    .todo-list li.done { text-decoration: line-through; color: var(--muted); }
    .todo-list li.done::before { content: "☑ "; }

    .button-wall {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
    }

    .web-button {
      display: inline-grid;
      place-items: center;
      min-width: 78px;
      min-height: 28px;
      padding: 3px 6px;
      border: 2px outset #e8f0d1;
      background: #8eb794;
      color: #fffdf4;
      font: 700 10px var(--pixel);
      text-align: center;
      text-decoration: none;
      text-shadow: 1px 1px 0 #52715a;
    }
    .web-button:hover { color: white; background: #c5879b; }

    .mood { display: flex; gap: 5px; align-items: center; font-family: var(--pixel); font-size: .82rem; }
    .mood-dot { width: 11px; height: 11px; border-radius: 50%; background: #e2b74e; box-shadow: 0 0 0 2px #f7e7a4; }

    .fake-player { background: #d8e8ef !important; }
    .track { font: 700 11px var(--pixel); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .player-controls { display: flex; gap: 5px; margin-top: 8px; }
    .player-controls button, .theme-button {
      border: 1px solid var(--line);
      background: var(--paper);
      color: var(--ink);
      padding: 3px 7px;
      font: 700 11px var(--pixel);
      cursor: pointer;
    }
    .player-controls button:hover, .theme-button:hover { background: var(--yellow); }

    footer {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 13px;
      padding: 10px 12px;
      border: 2px solid var(--line);
      background: var(--mint);
      font: 11px var(--pixel);
    }

    .footer-links { display: flex; gap: 12px; flex-wrap: wrap; }

    @media (max-width: 900px) {
      .layout { grid-template-columns: 180px minmax(0, 1fr); }
      .right-column { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); align-items: start; }
    }

    @media (max-width: 650px) {
      .site-wrap { width: min(100% - 14px, 550px); margin-top: 10px; }
      .site-shell { padding: 7px; }
      header { padding: 22px 18px 18px; }
      .layout, .right-column { display: block; }
      .column, .right-column { margin-top: 10px; }
      .card { margin-bottom: 10px; }
      .top-strip { align-items: flex-start; flex-direction: column; gap: 2px; }
    }

    /* Optional dark-ish night mode, toggled by the button in the sidebar. */
    body.night {
      --ink: #e7ecd7;
      --muted: #b5c2ae;
      --paper: #26392f;
      --paper-2: #30483b;
      --mint: #2b493a;
      --mint-dark: #668f71;
      --pink: #704e63;
      --yellow: #75683a;
      --blue: #3f5f68;
      --line: #8db092;
      --shadow: rgba(0,0,0,.35);
      background-color: #18261e;
      background-image: linear-gradient(45deg, rgba(255,255,255,.04) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.04) 75%), linear-gradient(45deg, rgba(255,255,255,.04) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.04) 75%);
    }
    body.night h1 { color: #b8d9a5; text-shadow: 3px 3px 0 #384a3d; }

    /* =========================================================
       Cute draggable window
       ========================================================= */
    .cute-window {
      position: fixed;
      z-index: 20;
      top: 88px;
      right: clamp(18px, 5vw, 72px);
      width: min(275px, calc(100vw - 36px));
      border: 3px double var(--line);
      background: var(--paper);
      box-shadow: 7px 7px 0 var(--shadow);
      transform: rotate(1deg);
      user-select: none;
    }

    .cute-window.is-dragging {
      cursor: grabbing;
      transform: rotate(0deg) scale(1.02);
      box-shadow: 10px 10px 0 var(--shadow);
    }

    .cute-window.is-hidden { display: none; }

    .cute-window__bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 5px 8px;
      border-bottom: 2px solid var(--line);
      background: var(--pink);
      color: #754858;
      font: 700 12px var(--pixel);
      cursor: grab;
    }

    .cute-window__bar:active { cursor: grabbing; }

    .cute-window__close {
      display: grid;
      place-items: center;
      width: 20px;
      height: 20px;
      border: 1px solid var(--line);
      background: var(--paper);
      color: var(--ink);
      font: 700 16px/1 var(--pixel);
      cursor: pointer;
    }

    .cute-window__close:hover { background: var(--yellow); }

    .cute-window__body {
      padding: 12px;
      background:
        radial-gradient(rgba(133, 85, 101, .12) 1px, transparent 1px),
        var(--paper);
      background-size: 7px 7px;
      font-size: .88rem;
    }

    .cute-window__body p { margin: 0 0 8px; }
    .cute-window__body p:first-child { color: #865565; font-family: var(--display); font-size: 1.05rem; }
    .cute-window__body a { font: 700 11px var(--pixel); }

    @media (max-width: 650px) {
      .cute-window {
        top: auto;
        right: 18px;
        bottom: 18px;
      }
    }

    /* =========================================================
       Pink scrapbook skin inspired by colorful personal homepages
       ========================================================= */
    body {
      color: #6f455b;
      background-color: #ffd8e5;
      background-image:
        radial-gradient(circle at 12px 12px, rgba(255,255,255,.78) 0 3px, transparent 3.5px),
        linear-gradient(90deg, rgba(255,255,255,.28) 50%, transparent 50%),
        linear-gradient(rgba(255,255,255,.28) 50%, transparent 50%);
      background-size: 24px 24px, 48px 48px, 48px 48px;
      font-family: "Trebuchet MS", Verdana, sans-serif;
    }

    a { color: #d14f8b; }
    a:hover, a:focus { color: #7b6bc2; }

    .site-wrap {
      width: min(930px, calc(100% - 24px));
      margin: 18px auto 40px;
    }

    .top-strip {
      border: 2px solid #d77ca6;
      background: linear-gradient(#fff3fa, #ffc1df);
      color: #8d4b6e;
      box-shadow: 3px 3px 0 rgba(183, 94, 139, .28);
      border-radius: 4px;
    }

    .site-shell {
      border: 4px solid #ef9ec4;
      padding: 9px;
      background: rgba(255, 247, 252, .9);
      box-shadow: 0 0 0 4px rgba(255,255,255,.72), 8px 8px 0 rgba(180, 89, 135, .22);
      border-radius: 8px;
    }

    header {
      min-height: 192px;
      padding: 30px 30px 22px;
      border: 3px solid #de78b0;
      border-radius: 5px;
      background:
        radial-gradient(circle at 78% 42%, rgba(255,255,255,.85) 0 2px, transparent 3px),
        radial-gradient(circle at 84% 27%, rgba(255,255,255,.78) 0 3px, transparent 4px),
        linear-gradient(120deg, rgba(255,255,255,.48), transparent 35%),
        linear-gradient(135deg, #ffd3ec, #f5a9d2 58%, #d7bbef);
      box-shadow: inset 0 0 0 4px rgba(255,255,255,.42);
    }

    header::before {
      content: "♡  welcome to my homepage  ♡";
      position: absolute;
      top: 10px;
      right: 16px;
      color: #b85f91;
      font: 700 11px var(--pixel);
      letter-spacing: .04em;
    }

    header::after {
      content: "✦  ✿  ♡  ✿  ✦";
      right: 20px;
      bottom: 12px;
      color: #fff;
      text-shadow: 1px 1px 0 #bd6c99;
    }

    .eyebrow {
      color: #ab4d82;
      letter-spacing: .1em;
    }

    h1 {
      color: #e34893;
      font-family: Georgia, "Times New Roman", serif;
      font-style: italic;
      font-size: clamp(2.8rem, 8vw, 5.8rem);
      text-shadow: 2px 2px 0 #fff, 4px 4px 0 #f4a9cb;
    }

    .tagline { color: #754b67; }

    .layout {
      grid-template-columns: 180px minmax(0, 1fr) 180px;
      gap: 9px;
      margin-top: 10px;
    }

    .column { gap: 9px; }

    .card {
      border: 2px solid #e68bb6;
      padding: 10px;
      background-color: #fff9fd;
      background-image: radial-gradient(rgba(222, 117, 174, .11) 1px, transparent 1px);
      background-size: 7px 7px;
      box-shadow: 3px 3px 0 rgba(184, 101, 145, .22);
      border-radius: 3px;
    }

    .card:nth-child(2n) { background-color: #fff0f8; }

    .card-title {
      margin: -10px -10px 9px;
      padding: 6px 8px;
      border-bottom: 2px solid #e68bb6;
      background:
        linear-gradient(rgba(255,255,255,.3), rgba(255,255,255,0)),
        repeating-linear-gradient(90deg, transparent 0 8px, rgba(255,255,255,.27) 8px 12px),
        #f7b3d4;
      color: #9e4c78;
      text-shadow: 1px 1px 0 #fff;
      font-size: 13px;
    }

    .card-title span { color: #9e4c78; }

    .nav-list li { border-bottom: 1px dashed #e8aac8; }
    .nav-list a { padding: 5px 2px; }
    .nav-list a::before { content: "♡ "; color: #e56ca5; }

    .stamp {
      border: 1px solid #d47ca6;
      background: linear-gradient(#fff, #ffd6ea);
      color: #a14b78;
      box-shadow: 2px 2px 0 rgba(187, 94, 142, .18);
    }

    .avatar {
      border-color: #de82b1;
      background: linear-gradient(135deg, #ffe5f2, #f6b9d7);
      box-shadow: inset 0 0 0 4px rgba(255,255,255,.5);
    }

    .welcome {
      border: 2px dashed #e18ab7;
      background: #fffafd;
      color: #7b4e69;
      font-size: 1.04rem;
      background-image: radial-gradient(rgba(222, 117, 174, .13) 1px, transparent 1px);
      background-size: 8px 8px;
    }

    .notice {
      border-left-color: #dc73aa;
      background: #ffe1ef;
      color: #874e70;
    }

    .section-heading { border-bottom-color: #e7a4c5; }
    .section-heading h2 { color: #d25691; }
    .section-heading small { color: #a15b7d; }
    .date { color: #c0548c; }

    .mini-note { border-color: #df9db9; box-shadow: 2px 2px 0 rgba(179, 88, 132, .16); }
    .mini-note:nth-child(1) { background: #fff0a8; }
    .mini-note:nth-child(2) { background: #cfeaf0; }
    .mini-note:nth-child(3) { background: #ffd3e4; }
    .mini-note:nth-child(4) { background: #dff0c9; }

    .web-button {
      border-color: #fff;
      background: linear-gradient(#f5a8d0, #d75d9d);
      color: #fff;
      text-shadow: 1px 1px 0 #a74779;
      box-shadow: 2px 2px 0 rgba(177, 86, 131, .27);
    }
    .web-button:hover { color: #fff; background: linear-gradient(#bca3e8, #8170c4); }

    .fake-player { background: #d7eff2 !important; border-color: #8ccbd0; }
    .fake-player .card-title { background: #aee1e5; border-color: #8ccbd0; color: #4d8590; }

    footer {
      border-color: #df82ae;
      background: linear-gradient(#ffe0ef, #ffc1dc);
      color: #8d4b6e;
    }

    .cute-window {
      border-color: #d975a8;
      background: #fff7fc;
      box-shadow: 7px 7px 0 rgba(174, 82, 129, .28);
    }
    .cute-window__bar { background: linear-gradient(#ffd9ec, #f2a8cd); color: #994a77; border-color: #d975a8; }
    .cute-window__body { background-color: #fff7fc; background-image: radial-gradient(rgba(222, 117, 174, .16) 1px, transparent 1px); }
    .cute-window__body p:first-child { color: #d45291; }

    body.night {
      background-color: #3c2942;
      background-image: radial-gradient(circle at 12px 12px, rgba(255,255,255,.12) 0 3px, transparent 3.5px), linear-gradient(90deg, rgba(255,255,255,.04) 50%, transparent 50%), linear-gradient(rgba(255,255,255,.04) 50%, transparent 50%);
      background-size: 24px 24px, 48px 48px, 48px 48px;
    }

    .pixel-decor {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 7px;
      min-height: 34px;
      padding: 5px 8px;
      border: 2px solid #e794bb;
      background: repeating-linear-gradient(90deg, #fff4fb 0 12px, #ffd8eb 12px 24px);
      color: #c15a91;
      font: 700 10px var(--pixel);
      text-align: center;
      box-shadow: 2px 2px 0 rgba(184, 89, 135, .18);
    }

    .pixel-decor img {
      width: auto;
      height: 20px;
      image-rendering: pixelated;
    }

    .retro-chatbox {
      background: #fff0f8 !important;
    }

    .chatbox-screen {
      height: 156px;
      overflow-y: auto;
      padding: 7px;
      border: 3px inset #f3b0d1;
      background: #fff;
      color: #553e55;
      font: 11px/1.35 var(--pixel);
    }

    .chat-message {
      margin-bottom: 7px;
      padding: 5px 6px;
      border: 1px dashed #d783af;
      background: #fff8fc;
    }

    .chat-message:nth-child(even) { background: #f8f2ff; }

    .chat-name {
      color: #d14f8b;
      font-weight: 700;
    }

    .chat-time {
      float: right;
      color: #a98ca5;
      font-size: 9px;
    }

    .chat-message p { margin: 4px 0 0; }

    .chatbox-form {
      display: grid;
      gap: 4px;
      margin-top: 8px;
      font: 700 10px var(--pixel);
      color: #9e4c78;
    }

    .chatbox-form input,
    .chatbox-form textarea {
      width: 100%;
      border: 2px inset #f0afd0;
      padding: 5px;
      background: #fff;
      color: #553e55;
      font: 11px var(--pixel);
      resize: vertical;
    }

    .chatbox-form .web-button {
      justify-self: start;
      border: 2px outset #fff;
      cursor: pointer;
    }

    .chatbox-note {
      margin: 8px 0 0;
      color: #a26d89;
      font: 9px/1.35 var(--pixel);
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    .memo-window {
  position: fixed;
  top: 80px;
  left: 100px;
  width: 250px;
  padding: 12px;
  background: pink;
  border: 3px solid purple;
  box-shadow: 6px 6px 0 #9b6a91;
}

.memo-title {
  padding: 6px;
  background: hotpink;
  color: white;
  font-weight: bold;
  cursor: grab;
  user-select: none;
}

.memo-title:active {
  cursor: grabbing;
}

cursor: grab;
