/* -----------------------------------------------------------
   FONTS
----------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

@font-face {
  src: url("/fonts/script.ttf");
  font-family: 'script';
  font-display: swap;
}

@font-face {
  src: url(/fonts/Galmuri9.ttf);
  font-family: 'galmuri';
  font-display: swap;
}

@font-face {
  src: url(/fonts/korean.ttf);
  font-family: 'korean';
  font-display: swap;
}

@font-face {
  src: url(/fonts/angel.woff2);
  font-family: 'angel';
  font-display: swap;
}

@font-face {
  src: url(/fonts/Spirit.woff2);
  font-family: 'spirits';
  font-display: swap;
}

@font-face {
  src: url(/fonts/pc-9800.woff2);
  font-family: 'pc-9800';
  font-display: swap;
}

/* -----------------------------------------------------------
   ROOT VARIABLES & BASE
----------------------------------------------------------- */

:root {
  --brown: #a8907a;
  --offwhite: #fffaf0;
  --border: #f0b5cd;
}

body {
  background-image: url(/media/backgrounds/pinkcheck.png);
  background-size: 40px;
  overflow-x: hidden;
  font-family: 'angel';
  width: 1150px;
  overflow-y: scroll;
  overflow-x: hidden;
  letter-spacing: 0.3px;
  color: #606060;
  margin: 0 auto;
  padding-top: 20px;
}

html,
body {
  height: 100%;
  margin: 0 auto;
}

/* -----------------------------------------------------------
   CURSOR
----------------------------------------------------------- */

html,
body,
*,
a,
button,
input,
select,
textarea {
  cursor: url('/media/cursor/normal-select.gif') 0 0, progress !important;
}

/* -----------------------------------------------------------
   SELECTION & SCROLLBARS
----------------------------------------------------------- */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #fff7fa;
  -webkit-border-radius: 0ex;
  border: 1px dotted #edaecb;
}

::selection {
  background-color: #ffedf5;
  color: #8d7c76;
}

::-moz-selection {
  background-color: #ffedf5;
  color: #8d7c76;
}

/* -----------------------------------------------------------
   GLOBAL RESET & ELEMENTS
----------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #edaecb;
  transition: .1s
}

a:link {
  color: #606060;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #606060;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #606060;
  background-color: transparent;
  text-decoration: dotted underline;
  font-style: italic;
}

a:active {
  color: #606060;
  background-color: transparent;
  text-decoration: underline;
}

u {
  text-decoration-style: wavy;
  margin-right: 4px;
}

/* -----------------------------------------------------------
   MAIN FRAME & HEADER
----------------------------------------------------------- */

.main {
  background: white;
  width: 1150px;
  border: 30px solid;
  border-image: url('/media/borders/renda-bg.png') 18 repeat;
  border-image-outset: 5px;
  border-radius: 30px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  padding: 5px;
  gap: 15px;
  box-sizing: border-box;
  position: relative;
  align-items: center;
  text-align: center;
}

.main-header {
  position: relative;
  width: 100%;
  height: 150px;
  flex-shrink: 0;
  margin-top: -10px;
  margin-bottom: -10px;
  background-image:
    radial-gradient(circle, white 19%, transparent 21%),
    radial-gradient(circle, white 19%, transparent 21%),
    linear-gradient(to right, #fff5fa 0%, #fff5fa 5%, #ffe4f0 100%);
  background-size: 18px 18px, 18px 18px, 100% 100%;
  background-position: 0 0, 9px 9px, 0 0;
  border: 1px solid #eecad8;
  border-radius: 8px;
  box-shadow:
    inset 3px 3px 0px 0px rgba(255, 255, 255, 0.8),
    inset -3px -3px 0px 0px rgba(0, 0, 0, 0.05),
    0 4px 6px rgba(0, 0, 0, 0.05);
}

.main-header::before {
  content: "";
  position: absolute;
  top: -290px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  background-image: url(/media/graphics/pngs/c0m43r.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 10;
}

.clap-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

.clap-btn img {
  display: block;
  border: none;
  height: auto;
  width: 70px;
}

#title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 1;
  font-family: 'script';
  font-size: 39px;
  color: #8d7c76;
  text-align: left;
  margin-left: 85px;
  margin-top: 18px;
  white-space: nowrap;
  text-shadow:
    4px 4px 0px white,
    -4px -4px 0px white,
    4px -4px 0px white,
    -4px 4px 0px white;
  pointer-events: none;
  letter-spacing: -3px;
}

#space {
  height: 20px;
}

.space-between {
  width: 100%;
  height: 20px;
  background: white;
}

#inner-space {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  border-bottom: 1px solid lightgrey;
}

#inner-space p {
  font-family: angel;
  font-size: 10px;
  display: inline;
  color: #8d7c76;
  text-transform: uppercase;
}

/* -----------------------------------------------------------
   MARQUEE
----------------------------------------------------------- */

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 60s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content p {
  display: inline-block;
  margin: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* -----------------------------------------------------------
   HOVER ANIMATIONS
----------------------------------------------------------- */

.zoom {
  transition: transform .2s;
}

.zoom:hover {
  -ms-transform: scale(1.10);
  -webkit-transform: scale(1.10);
  transform: scale(1.10);
}

/* -----------------------------------------------------------
   TOP NAVIGATION
----------------------------------------------------------- */

#nav-buttons {
  background-color: transparent;
  width: 100%;
  position: relative;
  margin-bottom: 0;
}

.nav-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  width: 100%;
}

.nav-group {
  display: flex;
  gap: 15px;
}

.nav-left {
  justify-content: flex-end;
  padding-right: 30px;
}

.nav-right {
  justify-content: flex-start;
  padding-left: 30px;
}

.nav-item {
  width: 135px;
}

/* -----------------------------------------------------------
   TAB BOOKMARKS
----------------------------------------------------------- */

.bookmark {
  height: 38px;
  position: relative;
  padding: 4px;
  border-radius: 12px 12px 0 0;
  --bg-color: #ffdbe8;
  background:
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 3px),
    repeating-linear-gradient(90deg,
      rgba(0, 0, 0, 0.02) 0,
      rgba(0, 0, 0, 0.02) 1px,
      transparent 1px,
      transparent 4px),
    var(--bg-color);
  border: 1.25px solid #836a66;
  border-bottom: 0;
  display: flex;
  align-items: stretch;
  margin-bottom: -15px;
  overflow: hidden;
  transition: background-color 0.25s ease;
}

.bookmark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/media/backgrounds/patterned.png") repeat;
  background-size: 200px;
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

.bookmark::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow:
    -5px -5px 4px inset #00000033,
    3px 3px 3px inset #ffffff55;
  mask-image: linear-gradient(to bottom,
      transparent 70%,
      black 100%);
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 70%,
      black 100%);
}

.bookmark>* {
  position: relative;
  z-index: 2;
}

.bookmark-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  border: 1.25px dashed #836a66;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  margin-bottom: -3px;
  font-size: 12px;
  height: 100%;
  box-sizing: border-box;
  text-shadow:
    -1px 0 #fff,
    0 1px #fff,
    1px 0 #fff,
    0 -1px #fff;
}

.bookmark-inner a {
  margin-top: 2px;
  text-decoration: none;
  font-weight: bold;
  color: #ffffff;
  font-size: 14px;
  text-shadow:
    0 1px #836a66,
    1px 0 #836a66,
    0 -1px #836a66,
    -1px 0 #836a66;
}

.bookmark-inner:hover {
  font-style: italic;
}

.bookmark.active {
  --bg-color: #8e7972 !important;
  z-index: 10;
}

.bookmark.active .bookmark-inner {
  border: 1.25px dashed white;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

/* -----------------------------------------------------------
   MISC TEXT & UTILITIES
----------------------------------------------------------- */

.titles {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.scroll-hint {
  white-space: nowrap;
}

.korean {
  font-family: "korean";
  font-size: 14px;
}

mark {
  background-color: #ffedf5;
  color: #7a6760;
  font-family: spirits;
  font-size: 16px;
  margin-bottom: 1.5px;
}

/* -----------------------------------------------------------
   JOURNAL / DIARY PAGE
----------------------------------------------------------- */

.notebook-arrow {
  font-size: 10px;
}

:root {
  --notebook-line: rgba(150, 150, 150, 0.66);
}

.pattern {
  position: absolute;
  inset: 0;
  background: url('/media/graphics/pngs/hearts.png') 0 0 / 20px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.out-journal {
  width: 96%;
  margin: 0;
  position: relative;
  margin-bottom: 10px;
}

.journal::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 20px;
  transform: translateX(-50%);
  background: linear-gradient(to right,
      #00000015 0%,
      #00000010 25%,
      #ffffff40 50%,
      #00000010 75%,
      #00000020 100%);
}

.journal {
  height: 650px;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  background: url('/media/backgrounds/patterned.png');
  border-radius: 10px;
  padding: 31px 21px 31px 21px;
  box-shadow:
    -5px -5px 4px inset #00000033,
    3px 3px 3px inset #ffffff55;
  position: relative;
}

.circle {
  position: absolute;
  top: 1px;
  left: 5px;
  z-index: 10;
  pointer-events: none;
  width: 37px;
  height: 37px;
}

.pianochan {
  width: auto;
  height: 380px;
  position: absolute;
  top: -3px;
  left: -189px;
  z-index: 999;
  transform-origin: top center;
}

.page-wrap,
.background,
.journal {
  position: relative;
}

.background {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  position: relative;
  gap: 0;
  padding: 10px 0;
  overflow: hidden;
}

.background>.page {
  height: 100%;
  min-height: 0;
  width: calc(50% - 10px);
  margin: 0 5px;
  background-image:
    linear-gradient(transparent 23px,
      #e2d3c6 24px),
    url('/media/backgrounds/paperplain.png');
  background-size: 100% 24px;
  background-repeat:
    repeat,
    repeat;
  background-position: top left;
  border: 3px solid white;
  box-shadow:
    0 0 4px inset #00000055,
    0 0 2px #00000022;
  border-image-source: url('/media/borders/babado.png');
  border-image-outset: 5px;
  border-image-slice: 20;
  border-image-width: 6px;
  border-image-repeat: round;
  position: relative;
  box-sizing: border-box;
  z-index: 100;
  overflow: hidden;
}

.background>div {
  background-image:
    linear-gradient(transparent 27px,
      #e2d3c6 28px),
    url('/media/backgrounds/paperplain.png');
  background-size:
    100% 28px,
    auto;
  background-repeat:
    repeat,
    repeat;
  background-position:
    top left,
    center;
  position: relative;
  border: 3px solid white;
  box-shadow: 0px 0px 4px inset #00000055, 0px 0px 2px #00000022;
  border-image-source: url('/media/borders/babado.png');
  border-image-outset: 5px;
  border-image-slice: 20;
  border-image-width: 6px;
  border-image-repeat: round;
  position: relative;
  z-index: 100;
}

.spirals-bg,
.spirals {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  top: 50%;
}

.spirals-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 20px;
  background: url('/media/backgrounds/paperplain.png') center / cover;
  z-index: 9;
  height: 87%;
}

.spiral-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% - 4px), -50%);
  pointer-events: none;
  width: 35px;
  height: 80%;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spiral-ring {
  width: 44px;
  height: 11px;
  position: relative;
}

.spiral-inner {
  width: 39px;
  height: 8px;
  background: linear-gradient(90deg, #d8d8d8 8%, #ffffff 30%, #ffffff 70%, #d8d8d8 92%);
  border: 1px solid #b8b8b8;
  border-radius: 20px;
  position: absolute;
  z-index: 4;
  top: 2px;
  left: 2px;
}

.spiral-mid,
.spiral-outer {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background: radial-gradient(circle at 50% 45%, #ffffff 55%, #dcdcdc 100%);
  border: 1px solid #b8b8b8;
  position: absolute;
  z-index: 3;
}

.spiral-mid {
  top: 0;
  left: 0;
}

.spiral-outer {
  top: 0;
  right: 0;
}

.journal-content {
  display: none;
  position: relative;
  height: 96%;
}

.journal-content.active {
  display: block;
}

.journal-text {
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 24px;
  color: #6a6a6a;
  padding: 24px 24px 14px;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
  text-align: left;
}

.journal-text::-webkit-scrollbar {
  display: none;
}

.journal-text p {
  margin: 0;
  margin-bottom: 24px;
}

.journal-text span {
  font-family: spirits;
}

.bottom-area {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-weight: 600;
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */

.bottom-area a {
  color: #FF91BD;
  text-shadow: none;
}

.ribbon {
  width: 15px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 5px;
}

.emoji {
  width: 15px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.bottom-area,
.footer {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 12px;
  font-weight: 600;
  color: #8d7c76;
}

.bottom-area a,
.footer a {
  color: #FF91BD;
  text-shadow: none;
}

.footer {
  width: 700px;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  padding: 5px;
}

.footer span {
  font-family: spirits;
  font-weight: 500;
}

/* -----------------------------------------------------------
   POLAROIDS
----------------------------------------------------------- */

.polaroid {
  position: relative;
  width: 180px;
  border: 1px #c1aeac solid;
  border-radius: 5px;
  padding: 5px 5px 20px;
  box-sizing: border-box;
  background: url('/media/backgrounds/paperplain.png');
  box-shadow: 0 2px 6px rgba(120, 90, 60, 0.15);
  margin-bottom: 10px;
}

.polaroid img {
  display: block;
  width: 100%;
  height: auto;
}

.polaroid::before {
  content: "";
  width: 55%;
  border: 1px var(--brown) solid;
  border-radius: 1px;
  height: 15px;
  background: url('/media/graphics/pngs/tape.png') center center;
  background-size: cover;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
  z-index: 2;
  opacity: 0.9;
  pointer-events: none;
}

.polaroid-right {
  float: right;
  margin-left: 15px;
  transform: rotate(2deg);
}

.polaroid-left {
  float: left;
  margin-right: 15px;
  transform: rotate(-2deg);
}

/* -----------------------------------------------------------
   BANNER & TITLE DECORATION
----------------------------------------------------------- */

#banner {
  width: 460px;
  height: 120px;
  border: 1px #c1aeac solid;
  border-radius: 10px;
  background: url('/media/gifs/chantilly.gif');
  background-size: cover;
  background-position: center;
  image-rendering: auto;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.title-deco {
  position: absolute;
  left: 525px;
  top: 60%;
  transform: translateY(-50%);
  width: 120px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.3));
}

/* -----------------------------------------------------------
   TRIPLE BOX LAYOUT
----------------------------------------------------------- */

.triple-wrapper {
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  overflow: visible;
  background: url('/media/backgrounds/pink.png');
  border: 1px solid #eecad8;
  border-radius: 8px;
  box-shadow:
    inset 3px 3px 0px 0px rgba(255, 255, 255, 0.8),
    inset -3px -3px 0px 0px rgba(0, 0, 0, 0.05),
    0 4px 6px rgba(0, 0, 0, 0.05);
}

.triple-box {
  position: relative;
  background: white;
  box-sizing: border-box;
  height: 250px;
  border: 3px solid white;
  outline: 1px solid #D1B9B3;
  border-radius: 4px;
  overflow: hidden;
  padding: 5px;
}

.triple-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url('/media/borders/lacey.png');
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 100%;
  filter: drop-shadow(0px 1px #D1B9B3);
  pointer-events: none;
  z-index: 1;
}

.quote-box::before {
  display: none !important;
}

.triple-box-side {
  flex: 1;
}

.triple-wrapper>.triple-box:nth-child(1) {
  flex: 1.25;
}

.triple-wrapper>.triple-box:nth-child(3) {
  flex: 0.85;
}

.triple-box-center {
  flex: 2;
}

.center-inner-scroll {
  position: relative;
  height: 87%;
  width: 73%;
  margin: 25px 10px 0 auto;
  padding: 15px 15px 5px 70px;
  background-color: white;
  outline-offset: -8px;
  box-shadow: none;
  border-width: 7px;
  border-style: solid;
  border-color: currentcolor;
  border-image: url('/media/borders/brown-clouds.png') 5 fill / 1 / 2px round;
  border-radius: 8px;
  outline: rgb(255, 176, 201) dashed 1px;
  text-align: left;
  border-radius: 4px;
  font-size: 13px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  align-items: center;
}

.center-inner-scroll span {
  font-family: spirits;
}

.center-box-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}

.center-icon {
  position: absolute;
  top: 2px;
  left: -3px;
  width: 200px;
  height: auto;
  z-index: 5;
  transition: .4s;
  filter: drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(1px 1px 0px #0000002d);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  background-size: contain;
  transform: rotate(-8deg);
}

.center-inner-scroll::-webkit-scrollbar {
  display: none;
}

.triple-box-pink {
  background-image:
    radial-gradient(circle, white 19%, transparent 21%),
    radial-gradient(circle, white 19%, transparent 21%),
    linear-gradient(to bottom, #fff5fa 0%, #fff5fa 5%, #ffe4f0 100%);
  background-size: 18px 18px, 18px 18px, 100% 100%;
  background-position: 0 0, 9px 9px, 0 0;
}

.stacked-scrolls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 99%;
}

.triple-wrapper .triple-box-side:first-child .stacked-scrolls {
  gap: 8px;
}

.triple-box-inner-scroll {
  position: relative;
  flex: 1;
  min-height: 0;
  max-height: 205px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 97%;
  margin: 0 auto;
  padding: 5px;
  background-color: white;
  border: 1.25px dashed #ea85af;
  outline: 2px solid white;
  box-shadow: 3px 3px #a3736750;
  text-align: left;
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.triple-box-inner-scroll::-webkit-scrollbar {
  display: none;
}

.stacked-scrolls>.triple-box-inner-scroll:first-child {
  margin-top: 25px;
}

.center-inner-scroll:not(.neighbors-scroll):not(.guestbook-scroll) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* -----------------------------------------------------------
   PANEL TOGGLES (NEIGHBORS / GUESTBOOK / MICROBLOG / SHOP)
----------------------------------------------------------- */

#neighbors,
#guestbook,
#microblog,
#shop {
  display: none;
}

#neighbors:target,
#guestbook:target,
#microblog:target,
#shop:target {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

#neighbors:target~*,
#guestbook:target~*,
#microblog:target~*,
#shop:target~* {
  display: none !important;
}

body:has(#neighbors:target) .main,
body:has(#guestbook:target) .main,
body:has(#microblog:target) .main,
body:has(#shop:target) .main {
  height: auto;
  min-height: 100vh;
}

body:has(#neighbors:target) .main {
  height: 100vh;
}

/* -----------------------------------------------------------
   NEIGHBORS BOX
----------------------------------------------------------- */

.neighbors-wrapper {
  width: 100% !important;
  flex: 1;
  min-height: 0;
  display: flex;
  padding: 10px;
  box-sizing: border-box;
  overflow: visible;
  background: url('/media/backgrounds/pink.png');
  border: 1px solid #eecad8;
  border-radius: 8px;
  box-shadow:
    inset 3px 3px 0px 0px rgba(255, 255, 255, 0.8),
    inset -3px -3px 0px 0px rgba(0, 0, 0, 0.05),
    0 4px 6px rgba(0, 0, 0, 0.05);
}

#neighbors .neighbors-box {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

#shop {
  position: relative;
  box-sizing: border-box;
  text-align: left;
}

.neighbors-scroll {
  position: relative;
  height: auto;
  width: 98%;
  margin: 30px auto 0;
  padding: 25px 25px 30px;
}

#neighbors .center-box-wrap {
  display: flex;
  flex-direction: column;
}

#neighbors .neighbors-scroll {
  flex: 0.98;
  min-height: 0;
  height: auto;
  overflow-y: auto;
}

.neighbors-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 11px;
  letter-spacing: 1px;
  color: #a8907a !important;
}

.neighbors-subtitle {
  text-align: center;
  font-size: 12px;
  color: #a8907a;
  margin: 4px 0 25px;
}

.neighbors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  gap: 10px;
}

.neighbors-grid img {
  display: block;
  width: 88px;
  height: 31px;
  object-fit: contain;
}

/* -----------------------------------------------------------
   SHOP CARDS
----------------------------------------------------------- */

.shop-cards-wrapper {
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  padding: 10px;
  box-sizing: border-box;
  overflow: visible;
  background: url('/media/backgrounds/pink.png');
  border: 1px solid #eecad8;
  border-radius: 8px;
  box-shadow:
    inset 3px 3px 0px 0px rgba(255, 255, 255, 0.8),
    inset -3px -3px 0px 0px rgba(0, 0, 0, 0.05),
    0 4px 6px rgba(0, 0, 0, 0.05);
}

.shop-card {
  position: relative;
  flex: 0 0 calc((100% - 20px) / 3);
  max-width: calc((100% - 20px) / 3);
  height: 370px;
  overflow: hidden;
  padding: 5px;
  padding-top: 10px;
  border: 3px solid white;
  outline: 1px solid #D1B9B3;
  border-radius: 4px;
  box-sizing: border-box;
  background-image:
    radial-gradient(circle, white 19%, transparent 21%),
    radial-gradient(circle, white 19%, transparent 21%),
    linear-gradient(to bottom, #fff5fa 0%, #fff5fa 5%, #ffe4f0 100%);
  background-size: 18px 18px, 18px 18px, 100% 100%;
  background-position: 0 0, 9px 9px, 0 0;
}

.shop-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url(/media/borders/lacey.png);
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 100%;
  filter: drop-shadow(0px 1px #D1B9B3);
  pointer-events: none;
  z-index: 1;
}

.shop-card-body {
  background-color: white;
  font-size: 13px;
  scrollbar-width: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 5px 5px 5px;
  height: calc(100% - 30px);
  outline-offset: -8px;
  box-shadow: none;
  border-width: 7px;
  border-style: solid;
  border-color: currentcolor;
  border-image: url(/media/borders/brown-clouds.png) 5 fill / 1 / 2px round;
  border-radius: 8px;
  outline: rgb(255, 176, 201) dashed 1px;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
}

.shop-card-body::-webkit-scrollbar {
  display: none;
}

.shop-card-body::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-image: url(/media/graphics/pixels/bow2.png);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 10;
  background-position: center center;
}

.shop-card-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 16px;
  box-sizing: border-box;
  gap: 8px;
  overflow: hidden;
}

.shop-item-thumb {
  width: 100%;
  height: 150px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #ffeff7;
  border: 1px solid #ffd8e9;
}

.shop-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 10px;
}

.shop-item-title {
  font-family: spirits;
  font-size: 18px;
  color: #8d7c76;
}

.shop-item-price {
  font-size: 12px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 99px;
  border: 1.5px solid #f0b5cd;
  background: #fff5fa;
  color: #ea85af;
  white-space: nowrap;
  flex-shrink: 0;
}

.shop-item-desc {
  font-size: 11px;
  line-height: 1.5;
  color: #a8907a;
}

.shop-item-link {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 99px;
  background: #ffeff7;
  border: 1.5px solid #f0b5cd;
  color: #ea85af !important;
  text-decoration: none;
  margin-top: auto;
}

.shop-item-link:hover {
  background: #ffd8e9;
  color: #a0405c !important;
}

@media (max-width: 860px) {
  .shop-card {
    flex: 0 0 calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
  }
}

@media (max-width: 560px) {
  .shop-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* -----------------------------------------------------------
   QUOTE BUBBLE & WINDOW CHROME
----------------------------------------------------------- */

#bubble {
  position: absolute;
  bottom: 280px;
  right: -100px;
  width: 150px;
  z-index: 999;
  pointer-events: none;
}

#bubble img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(2px 2px #a3736790);
}

#bubble p {
  position: absolute;
  top: 50px;
  left: -20;
  width: 100%;
  color: #8d7c76;
  filter: drop-shadow(0px 0px 1px #fbfaf8) drop-shadow(0px 0px 1px #fbfaf8) drop-shadow(0px 0px 1px #fbfaf8) drop-shadow(0px 0px 0.5px #fbfaf8) drop-shadow(0px 0px 1px #fbfaf8) drop-shadow(0px 0px 1px #fbfaf8) drop-shadow(0px 0px 1px #fbfaf8) drop-shadow(1px 1px 0px #0000002d);
  font-size: 20px;
  margin: auto;
  font-family: 'spirits';
  text-align: center;
  z-index: 1000;
}

.quote-box {
  display: flex;
  flex-direction: column;
}

.win-window {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #ffffff;
  outline: 1px dashed #f0b5cd;
  overflow: hidden;
}

.shop-window {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border-left: 1px dashed #f0b5cd;
  outline: 1px dashed #f0b5cd;
  overflow: hidden;
}

.win-header {
  background: #ffeff7;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ffdaed;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  box-shadow: inset 2px 2px 0px rgba(255, 255, 255, 0.8), inset -2px -2px 2px rgba(215, 127, 171, 0.15);
  user-select: none;
  flex-shrink: 0;
}

.win-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #88685d;
  text-transform: lowercase;
  font-family: 'Nunito', sans-serif;
}

.win-title svg {
  width: 16px;
  height: 16px;
}

.win-controls {
  display: flex;
  gap: 5px;
}

.win-btn {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #f0b5cd;
}

.win-btn.close {
  background: #f4abcb;
  transition: 0.2s;
}

.win-body {
  padding: 14px 18px;
  padding-bottom: 98px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  font-weight: normal;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  color: #333333;
  flex: 1;
  min-height: 0;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  text-align: center;
}

.win-body::-webkit-scrollbar {
  display: none;
}

.quote-text {
  font-family: 'angel';
  font-size: 13px;
  line-height: 1.2;
  color: #8d7c76;
  margin: 0;
}

.win-bottom-row {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.win-body-deco {
  display: block;
}

/* -----------------------------------------------------------
   SIDEBAR BUTTONS
----------------------------------------------------------- */

.sidebar-btns {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 8px;
  border: 2px solid #ffffff;
  outline: 1px solid #eecad8;
  background: #feeef6;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.85), inset -1px -1px 0 rgba(0, 0, 0, 0.18), inset 0 -2px 3px rgba(0, 0, 0, 0.12), inset 0 2px 2px rgba(255, 255, 255, 0.4);
  transition: background .15s ease, box-shadow .15s ease;
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  color: #88685d;
  font-weight: 700;
}

.sidebar-btn a {
  text-decoration: none;
}

.sidebar-btn::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(/media/graphics/pixels/bows.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  filter: saturate(0.9);
}

.sidebar-btn:hover {
  background: #ffe7f3;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.95),
    inset -2px -2px 0 rgba(0, 0, 0, 0.2),
    inset 0 -3px 4px rgba(0, 0, 0, 0.16),
    inset 0 2px 3px rgba(255, 255, 255, 0.45);
  font-style: italic;
}

a.sidebar-btn,
a.sidebar-btn:link,
a.sidebar-btn:visited {
  background: #feeef6;
  color: #88685d;
  text-decoration: none;
}

a.sidebar-btn:hover,
a.sidebar-btn:active {
  background: #ffe7f3;
  color: #88685d;
  text-decoration: none;
  font-style: italic;
}

/* -----------------------------------------------------------
   JOURNAL PAGE DECORATION
----------------------------------------------------------- */

#journal-deco {
  position: absolute;
  top: 230px;
  right: -125px;
  width: 220px;
  z-index: 999999;
  pointer-events: none;
}

#journal-deco img {
  display: block;
  width: 100%;
  height: auto;
  transform: scaleX(-1);
  filter: drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 0.5px white) drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(1px 1px 0px #0000002d);
}

#journal-deco::after {
  content: "";
  position: absolute;
  left: 52%;
  transform: translateX(-50%);
  bottom: -2px;
  width: 20%;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  filter: blur(6px);
  z-index: 1;
}

/* -----------------------------------------------------------
   BORDER-BROWN VARIANT
----------------------------------------------------------- */

.border-brown {
  outline-offset: -8px;
  box-shadow: none;
  border-width: 7px;
  border-style: solid;
  border-color: currentcolor;
  border-image: url(/media/borders/brown-clouds.png) 5 fill / 1 / 2px round;
  border-radius: 8px;
  outline: rgb(255, 176, 201) dashed 1px;
}

.triple-box-inner-scroll.border-brown {
  position: relative;
  padding: 6px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.triple-box-inner-scroll.border-brown::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-image: url(/media/graphics/pixels/bow2.png);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 10;
  background-position: center center;
}

.triple-box-inner-scroll.border-brown img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.triple-box-inner-scroll.border-brown.quote-box {
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  justify-content: flex-start;
  padding: 3px;
  outline: 0;
}

.triple-box-inner-scroll.border-brown.quote-box .win-body-deco {
  width: 90px;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

/* -----------------------------------------------------------
   FANLIST
----------------------------------------------------------- */

.fanlist-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin-top: -2px;
}

.fanlist-grid img {
  width: 45px !important;
  height: 45px !important;
  display: block;
  object-fit: cover;
  border-radius: 3px;
}

/* -----------------------------------------------------------
   SITE MENU & DROPDOWN
----------------------------------------------------------- */

.site-menu {
  width: 100%;
  margin: 0;
  background-image:
    radial-gradient(circle, white 19%, transparent 21%),
    radial-gradient(circle, white 19%, transparent 21%),
    linear-gradient(to right, #fff5fa 0%, #fff5fa 5%, #ffe4f0 100%);
  background-size: 18px 18px, 18px 18px, 100% 100%;
  background-position: 0 0, 9px 9px, 0 0;
  border: 1px solid #eecad8;
  border-radius: 8px;
  box-shadow:
    inset 3px 3px 0px 0px rgba(255, 255, 255, 0.8),
    inset -3px -3px 0px 0px rgba(0, 0, 0, 0.05),
    0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 6px 16px;
  box-sizing: border-box;
}

.site-menu-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.menu-item {
  position: relative;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'angel', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #8d7c76;
  text-transform: uppercase;
  padding: 6px 4px;
  text-decoration: none;
  transition: color 0.15s ease;
  background: none;
  border: none;
}

.menu-link:hover {
  color: #ec4899;
  font-style: normal;
  text-decoration: none;
}

.menu-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
}

.menu-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-item.has-dropdown.open .menu-arrow {
  transform: rotate(180deg);
}

.pfp-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  width: 180px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 6px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 3px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 9999999;
}

.menu-item.has-dropdown.open .pfp-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pfp-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  color: #8d7c76;
  background: transparent;
  border: none;
  border-radius: 8px;
  text-align: left;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a0a12;
  background: #ffd8e9;
  padding: 4px 6px;
  border-radius: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 5px;
  transition: background-color 0.15s ease;
}

.pfp-dropdown-item:hover .new-badge {
  background-color: #ffffff;
}

.pfp-dropdown-item:hover {
  background-color: #feeef6;
  color: #ec4899;
  text-decoration: none;
  font-style: normal;
}

/* -----------------------------------------------------------
   PAGE WINGS
----------------------------------------------------------- */

.wing-left,
.wing-right {
  position: absolute;
  top: 180px;
  width: 130px;
  z-index: 999;
  pointer-events: none;
}

.wing-left {
  left: -90px;
  transform-origin: bottom right;
  animation: flap-left 1.2s ease-in-out infinite alternate;
}

.wing-right {
  right: -90px;
  transform-origin: bottom left;
  animation: flap-right 1.2s ease-in-out infinite alternate;
}

.wing-left img,
.wing-right img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(rgba(0, 0, 0, 0.3) 1px 2px 2px);
}

.wing-right img {
  transform: scaleX(-1);
}

@keyframes flap-left {
  0% {
    transform: rotate(-8deg);
  }

  100% {
    transform: rotate(12deg);
  }
}

@keyframes flap-right {
  0% {
    transform: rotate(8deg);
  }

  100% {
    transform: rotate(-12deg);
  }
}

/* -----------------------------------------------------------
   LOVE LETTER & CHANTI DECORATIONS
----------------------------------------------------------- */

.love-letter {
  display: none;
  position: absolute;
  top: 485px;
  left: -10px;
  z-index: 999;
  width: 75px;
  height: auto;
  animation: letter-wiggle 1.2s steps(2) infinite;
  filter: drop-shadow(rgba(0, 0, 0, 0.3) 1px 2px 2px);
}

.chanti {
  display: none;
  position: absolute;
  top: 490px;
  right: -40px;
  z-index: 999;
  width: 105px;
  height: auto;
}

body.page-home .love-letter {
  display: block;
}

body.page-home .chanti {
  display: block;
}

.love-letter:hover {
  animation-play-state: paused;
}

@keyframes letter-wiggle {
  0% {
    transform: rotate(-12deg);
  }

  50% {
    transform: rotate(8deg);
  }

  100% {
    transform: rotate(-12deg);
  }
}

/* -----------------------------------------------------------
   FEATURED FRAME (HOME PREVIEW CARD)
----------------------------------------------------------- */

.double-wrapper {
  width: 100%;
  height: 270px;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.frame-container {
  position: relative;
  flex: 1.25;
  height: 100%;
  background: transparent;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.frame-container:hover {
  transform: scale(1.04);
}

.frame-container::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 15.5%;
  right: 15.5%;
  bottom: 20%;
  background-image: url(/media/featured/microblog.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.frame-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/media/graphics/pngs/frame2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}

/* -----------------------------------------------------------
   MICROBLOG PREVIEW BOX
----------------------------------------------------------- */

.double-box-wrapper {
  flex: 2.80;
  height: 100%;
  display: flex;
  gap: 10px;
  padding: 10px;
  box-sizing: border-box;
  overflow: visible;
  background: url('/media/backgrounds/pink.png');
  border: 1px solid #eecad8;
  border-radius: 8px;
  box-shadow:
    inset 3px 3px 0px 0px rgba(255, 255, 255, 0.8),
    inset -3px -3px 0px 0px rgba(0, 0, 0, 0.05),
    0 4px 6px rgba(0, 0, 0, 0.05);
}

.two-box-pink {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  padding: 5px;
  border: 3px solid white;
  outline: 1px solid #D1B9B3;
  border-radius: 4px;
  box-sizing: border-box;
  background-image:
    radial-gradient(circle, white 19%, transparent 21%),
    radial-gradient(circle, white 19%, transparent 21%),
    linear-gradient(to bottom, #fff5fa 0%, #fff5fa 5%, #ffe4f0 100%);
  background-size: 18px 18px, 18px 18px, 100% 100%;
  background-position: 0 0, 9px 9px, 0 0;
}

.two-box-pink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url(/media/borders/lacey.png);
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 100%;
  filter: drop-shadow(0px 1px #D1B9B3);
  pointer-events: none;
  z-index: 1;
}

.two-box-content {
  display: flex;
  justify-content: center;
  gap: 3px;
  width: 100%;
  height: 100%;
}

.two-box-left,
.two-box-right {
  background-color: white;
  text-align: left;
  font-size: 13px;
  scrollbar-width: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 5px 5px 5px;
  outline-offset: -8px;
  box-shadow: none;
  border-width: 7px;
  border-style: solid;
  border-color: currentcolor;
  border-image: url(/media/borders/brown-clouds.png) 5 fill / 1 / 2px round;
  border-radius: 8px;
  outline: rgb(255, 176, 201) dashed 1px;
  box-sizing: border-box;
  padding: 2px;
}

.two-box-left::-webkit-scrollbar,
.two-box-right::-webkit-scrollbar {
  display: none;
}

.two-box-left {
  flex: 1;
  position: relative;
  overflow: visible;
}

.two-box-left::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-image: url(/media/graphics/pixels/bow2.png);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 10;
  background-position: center center;
}

.two-box-right {
  position: relative;
  flex: 2;
  flex-direction: row;
  gap: 0;
  font-size: 13px;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  line-height: 1.2;
}

.two-box-right::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-image: url(/media/graphics/pixels/bow2.png);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 10;
  background-position: center center;
}

.two-box-right span {
  font-family: spirits;
  background-color: #feeef6;
  color: #6d6d6d;
}

.two-box-right-col {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 8px;
}

.two-box-right-col::-webkit-scrollbar {
  display: none;
}

.two-box-right-col .link-me-title {
  flex-shrink: 0;
  margin-bottom: 2px;
}

.two-box-right-list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.two-box-right-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 12px;
  color: #606060;
}

.todo-item input[type="checkbox"] {
  margin-top: 1px;
  margin-right: 4px;
  flex-shrink: 0;
  accent-color: #ffc1db;
}

.two-box-right-list img.ribbon {
  margin-top: 0px;
  margin-bottom: 0;
  flex-shrink: 0;
  width: 14px; 
  height: 14px; 
  object-fit: contain; 
  margin-right: 3px;
}

.two-box-right-col .link-me-title {
  margin-bottom: 10px;
}

.pfp-frame {
  height: 100%;
  width: 150px;
  flex-shrink: 0;
  background: linear-gradient(0deg, #fff, #fef5f9);
  border: 1px solid #f2c6d8;
  position: relative;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(255, 255, 255, 0.8) 4px 4px 0px inset, rgba(215, 127, 171, 0.15) -4px -4px 4px inset;
}

.pfp {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-bg {
  width: 100%;
  height: 40px;
  background: rgba(255, 233, 242, 0.8);
  bottom: 0px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-mood-text {
  font-family: 'galmuri';
  margin-bottom: 2px;
  color: white;
  border-radius: 10px;
  text-align: center;
  padding: 5px;
  font-size: 13px;
  font-weight: bolder;
  letter-spacing: 0.5px;
  text-decoration-line: none;
  text-shadow: -1px 1px grey, 0px 1px grey, 1px 0px grey, 0px -1px grey;
  position: relative;
  z-index: 1;
}

.two-box-left {
  position: relative;
  overflow: visible;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  padding: 15px 15px 15px 15px !important;
}

.link-me-title {
  font-family: 'spirits';
  font-size: 20px;
  color: #8d7c76;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

.link-me-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.link-me-button img {
  width: 110px;
  height: 39px;
  display: block;
  image-rendering: pixelated;
}

.link-me-code {
  width: 203px;
  height: 67px;
  resize: none;
  font-family: 'pc-9800';
  font-size: 10px;
  color: #8d7c76;
  background: #fff5fa;
  border: 1px dashed #ea85af;
  border-radius: 4px;
  padding: 6px;
  box-sizing: border-box;
  text-align: left;
  scrollbar-width: none;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.link-me-code::-webkit-scrollbar {
  display: none;
}

.microblog-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  height: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.currently-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.currently-pill {
  font-family: 'galmuri';
  font-size: 9.5px;
  letter-spacing: 0.3px;
  color: #8d5f6d;
  background: #fce0ec;
  border: 1px solid #f0b5cd;
  border-radius: 999px;
  padding: 4px 8px;
  text-align: center;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: rgba(255, 255, 255, 0.8) 4px 4px 0px inset, rgba(215, 127, 171, 0.15) -4px -4px 4px inset;
}

.currently-row .currently-pill:first-child {
  margin-left: 5px;
}

.currently-value {
  font-family: 'galmuri';
  letter-spacing: 0.3px;
  font-size: 10px;
  color: #8d7c76;
  text-align: center;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.chat-bubble {
  background: #fef5f9;
  border: 1px solid #f2c6d8;
  border-radius: 12px 12px 0 12px;
  padding: 8px 12px;
  font-family: 'angel';
  font-size: 13px;
  color: #606060;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), inset 4px 4px 0px rgba(255, 255, 255, 0.8), inset -4px -4px 4px rgba(215, 127, 171, 0.15);
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  margin: 5px;
  flex: 0 1 auto;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: none;
  box-sizing: border-box;
}

.chat-bubble::-webkit-scrollbar {
  display: none;
}

/* -----------------------------------------------------------
   MOBILE RESPONSIVE
----------------------------------------------------------- */

@media (max-width: 768px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .main {
    width: 100%;
    border: 12px solid transparent;
    border-radius: 15px;
    background: transparent;
  }

  .main-header,
  .space-between,
  .triple-wrapper,
  .triple-wrapper-2,
  .journal,
  .footer {
    border: 2px solid white;
  }

  .site-menu {
    display: none;
  }

  #journal-deco {
    display: none;
  }

  .wing-left,
  .wing-right {
    display: none;
  }

  .triple-wrapper,
  .triple-wrapper-2 {
    flex-direction: column;
    height: auto;
  }

  .triple-wrapper .triple-box:nth-child(3),
  .triple-wrapper-2 .triple-box:nth-child(3) {
    display: none;
  }

  .triple-wrapper .triple-box:first-child .stacked-scrolls {
    flex-direction: row;
    align-items: stretch;
    margin: 25px 5px 10px;
  }

  .triple-wrapper .triple-box:first-child .triple-box-inner-scroll {
    flex: 1;
    max-height: none;
    height: 95px;
  }

  .stacked-scrolls>.triple-box-inner-scroll:first-child {
    margin-top: 0;
  }

  .triple-wrapper .triple-box:first-child {
    min-height: 0;
  }

  .triple-box-center {
    width: 100%;
    min-height: 0;
  }

  .center-box-wrap {
    position: relative;
    width: 100%;
  }

  .center-icon {
    display: block;
    position: absolute;
    top: -28px;
    left: -5px;
    width: 110px;
    height: auto;
    z-index: 5;
  }

  .center-inner-scroll {
    width: 73%;
    margin: 30px 5px 10px auto;
    padding: 10px 15px 5px 15px;
  }

  .neighbors-scroll {
    width: 90%;
    height: 92%;
    margin: 20px auto 0;
    padding: 25px 10px 15px;
  }

  .neighbors-grid img {
    width: 80px;
    height: 28px;
  }

  .center-text-full {
    display: none;
  }

  .main-header {
    height: auto;
    min-height: 110px;
    padding: 10px 0 10px 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    position: relative;
    overflow: visible;
  }

  #title {
    position: relative;
    inset: auto;
    font-size: 16px;
    margin: 10px;
    margin-left: 8px;
    padding-left: 0;
    justify-content: flex-start;
    align-items: center;
    white-space: normal;
    letter-spacing: -1px;
    order: 1;
  }

  #banner {
    display: block;
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 190px;
    height: 90px;
    flex-shrink: 0;
    order: 2;
    overflow: visible;
    margin-left: auto;
    margin-right: 10px;
  }

  .title-deco {
    display: block;
    position: absolute;
    left: 190px;
    bottom: 8px;
    right: auto;
    top: auto;
    transform: none;
    width: 70px;
    z-index: 3;
  }

  .clap-btn {
    top: 6px;
    left: 6px;
  }

  .clap-btn img {
    width: 60px;
  }

  #inner-space {
    margin-top: 0;
  }

  .space-between {
    margin-top: 10px;
  }

  .marquee-content p {
    font-size: 9px;
  }

  .journal {
    height: auto;
  }

  .background {
    flex-direction: column;
  }

  .background>.page {
    width: 100%;
    margin: 5px 0;
  }

  .spirals-bg,
  .spirals {
    display: none;
  }

  .journal::before {
    display: none;
  }

  .nav-row {
    grid-template-columns: 1fr;
  }

  .nav-group {
    justify-content: center;
    padding: 0;
    flex-wrap: wrap;
  }

  .nav-item {
    width: 100px;
  }

  .footer {
    width: 100%;
    padding: 10px;
  }

  .fanlist-grid,
  .mini-img-grid {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .out-journal {
    display: none;
  }

  #nav-buttons {
    display: none;
  }

  .scroll-hint {
    margin-right: 5px;
  }
}