body {
  cursor: url('cursornew.cur'), auto;
  background-image: url('0305dim.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #000;
  color: #fff;
  font-family: monospace;
  margin: 0;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

a:hover,
button:hover {
  cursor: url('hovercursor.cur'), pointer;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.block {
  border: 2px solid #ffffff;
  padding: 12px;
  background-color: #111;
  color: #fff;
  text-align: center;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.shop {
  width: 400px;
  height: 425px;
}

.shop-window .window-content {
  position: relative;
  padding: 0; 
}

.shop-image {
  width: 396px;
  height: 392px;
  object-fit: cover;
  display: block;
}

.window-content2 {
  padding: 5px;
}
.pin-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  display: block;
  margin: auto;
  cursor: url('hovercursor.cur'), pointer;
}

.two-columns {
  display: flex;
  justify-content: center;     /* Center columns horizontally */
  align-items: flex-start;     /* Align top edges */
  gap: 40px;                   /* Space between columns */
  margin: 0 auto;              /* Center the whole block on page */
  max-width: 1200px;           /* Limit width */
  padding: 20px;
}

.left-column,
.right-column {
  display: flex;
  flex-direction: column; /* Stack windows vertically */
  gap: 20px;
}

.left-column {
  flex: 1;
}

.right-column {
  flex: 1;
}


.satalite {
  width: 300px;
  height: 320px;
  font-size: small;
}

.question {
  width: 200px;
}

.drawing-area {
  border: 2px solid rgb(0, 0, 0);
  padding: 4px;
  display: inline-block;
  background-color: #ffffff;
}

.social-icon {
  width: 40px;
  height: 40px;
}

.social-header {
  width: 100%;
  text-align: center;
  font-weight: bold;
}

.social-header a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  margin: 0 6px;
}

.social-header a:hover {
  text-decoration: underline;
  color: #ffccff;
}

.scrolling-banner {
  overflow: hidden;
  white-space: nowrap;
  width: 600px;
}

.scrolling-text {
  display: inline-block;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.chibi-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.chibi-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}

.chibi-member img {
  width: 80px;
  height: 80px;
  border: 2px solid #ffffff;
}

.buttons {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.new-buttons {
  display: flex;
  gap: 12px;
  padding-top: 5px;
  padding-bottom: 10px;
}

.new-buttons button {
  align-items: center;
  gap: 12px;
  justify-content: flex-start;  /* 🔹 Align icon + text to the left */
  font-family: monospace;
  font-size: 1.1em;
  padding: 2px 2px;
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  cursor: pointer;
  text-align: center;
  width: 100%;                /* 🔹 Full-width buttons */
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s;
}


.new-buttons button:hover {
  background: #000;
  color: #fff;
  cursor: url('hovercursor.cur'), pointer;
}

.send-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 10px;
}

.send-buttons button {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;  /* 🔹 Align icon + text to the left */
  font-family: monospace;
  font-size: 1.1em;
  padding: 12px 24px;
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  cursor: pointer;
  text-align: center;
  width: 100%;                /* 🔹 Full-width buttons */
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s;
}


.send-buttons button:hover {
  background: #000;
  color: #fff;
  cursor: url('hovercursor.cur'), pointer;
}

.window {
  border: 2px solid #999;
  padding: 0;
  font-family: 'Courier New', monospace;
  background: #000;
  color: rgb(255, 255, 255);
}

.titlebar {
  background: #222;
  color: rgb(255, 255, 255);
  font-weight: bold;
  padding: 4px 8px;
  border-bottom: 2px solid #999;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.titlebar .icon {
  margin-right: 6px;
}

.titlebar .close-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 20px;
  height: 20px;

  background-color: #c0c0c0;
  color: #000;
  border: 2px outset #fff;
  margin-left: auto;
  font-weight: bold;
  font-family: monospace;
  cursor: default;
  font-size: 0.8rem;
  box-sizing: border-box;
}

.titlebar .close-btn:hover {
  background-color: #aaa;
}

.window-body {
  padding: 10px;
}

.draggable-window {
  cursor: default;
  cursor: inherit;
}

.titlebar {
  cursor: move;
  user-select: none;
}

@media (max-width: 768px) {
  .draggable-window {
    position: static;
  }
}

.placeholder {
  visibility: hidden;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100px;
  height: 6px;
  background: #333; /* track background */
  border-radius: 3px;
  outline: none;
}

/* Track */
input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: #ffffff;
  border-radius: 3px;
}

/* Thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #ffffff; /* <<< your custom thumb color */
  cursor: pointer;
  border-radius: 50%;
  border: none;
  margin-top: -3px; /* to center thumb on track */
}

/* For Firefox */
input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #ffccff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-moz-range-track {
  background: #666;
  height: 6px;
  border-radius: 3px;
}

.cornerbutton {
  position:fixed;
  left:15px;
  bottom: 15px;;
}

.groupchat {
  width: 300px;
  background: #000;
  color: rgb(255, 255, 255);
  font-family: 'Courier New', monospace;
}

.chat-log {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.chat-message {
  font-family: monospace;
  display: flex;
  align-items: flex-start;
  margin: 6px 0;
  text-align: left;
}

.chat-left {
  flex-direction: row;
}

.chat-right {
  flex-direction: row-reverse;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  margin: 0 8px;
  border-radius: 6px;
  object-fit: cover;
}

.chat-bubble {
  background: #111;
  padding: 6px 10px;
  border: 1px solid #aaa;
  border-radius: 8px;
  max-width: 65%;
  display: flex;
  flex-direction: column;
}

.chat-name {
  font-weight: bold;
  font-size: 0.75em;
  margin-bottom: 2px;
  text-align: left;
}

.chat-text {
  font-size: 0.9em;
}

.chat-timestamp {
  font-size: 0.6em;
  align-self: flex-end;
  opacity: 0.6;
  margin-top: 2px;
}

.socials-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.socials-buttons button {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;  /* 🔹 Align icon + text to the left */
  font-family: monospace;
  font-size: 1.1em;
  padding: 12px 24px;
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  cursor: pointer;
  text-align: left;
  width: 100%;                /* 🔹 Full-width buttons */
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s;
}


.socials-buttons button:hover {
  background: #000;
  color: #fff;
  cursor: url('hovercursor.cur'), pointer;
}

.spotify-window {
  width: 620px;
  border: 2px solid #999;
  padding: 0;
  font-family: 'Courier New', monospace;
  background: #000;
  color: rgb(255, 255, 255);
}

.playlist-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: space-between;
}

.playlist-embed {
  flex: 1 1 48%;
  min-width: 140px;
  border: 1px solid #444;
  border-radius: 4px;
  overflow: hidden;
}

.vn-window {
  width: 230px;
  height: auto;
  max-width: 90vw;
  border: 2px solid #999;
  padding: 0;
  font-family: 'Courier New', monospace;
  background: #000;
}

.vn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.vn-image-wrapper {
  position: relative;
  width: 100%;
}

.vn-character {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  image-rendering: pixelated;
  border-bottom: 2px solid #444;
  display: block;
}

.vn-name-tag {
  position: absolute;
  bottom: 4px;
  left: 6px;
  background-color: #222;
  color: #fff;
  font-family: monospace;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 2px;
  pointer-events: none;
  border: 2px solid #999;
}

.vn-dialogue {
  font-family: monospace;
  font-size: 13px;
  color: #fff;
  background-color: #111;
  padding: 6px 8px;
  text-align: left;
  width: 100%;
  min-height: 60px;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.floating-container {
  column-count: 2;            /* Adjust to 2 or 3 depending on your layout */
  column-gap: 16px;
  padding: 16px;
  width: fit-content;
  margin: 0 auto;  
}

.floating-container2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
}

.center-group {
  display: flex;
  gap: 32px; /* spacing between the two windows */
  justify-content: center;
  align-items: flex-start;
}

.wrapper {
  display: flex;
  justify-content: center;
  gap: 32px; /* space between columns and side windows */
  align-items: flex-start;
  position: relative;
  padding: 16px;
  flex-wrap: wrap;
}

.masonry {
  display: block;
  break-inside: avoid;
  margin-bottom: 16px;  
}

.about-me {
  width:313px;
}

.side-window {
  width: 200px;
  position: relative;
}

.side-window1 {
  width: 300px;
  position: relative;
}


.left {
  order: -1;
  padding-right: 15px;
}

.right {
  order: 1;
  padding-left: 15px;
}

.preview-img {
  width: 100%;
  height: auto;
  display: block;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  animation: marquee 6s linear infinite;
  background: black;
  color: white;
  padding: 5px;
  font-family: monospace;
  font-size: 14px;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.gallery-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.black-button {
  background: black;
  color: white;
  border: none;
  padding: 8px;
  width: 100%;
  cursor: pointer;
  font-family: monospace;
}

.cult-portraits {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cult-portrait {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid black;
  cursor: pointer;
  cursor: url('hovercursor.cur'), pointer;

}

.cult-info {
  background: #000000;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.cult-info img {
  max-width: 470px;
  max-height: 100%;
  object-fit: contain;
  padding: 4px;
}

.pink-link a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 6px;
}

.pink-link a:hover {
  text-decoration: underline;
  color: #ffccff;
}

.outside {
  max-width: 100%;
  overflow: hidden;
}

.inside {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: marquee 15s linear infinite;
}

.inside p {
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.return-link {
  display: block;
  margin-top: 16px;
  font-size: 0.9em;
  color: white;
  text-decoration: none;
}

.return-link:hover {
  text-decoration: underline;
}

.kore {
  width: 400px;
  height: 750px;
}

.mr {
  width: 400px;
  height: 550px;
}

.beast {
  width: 800px;
  height: 900px;
}

.commie {
  width: 500px;
  height: 1260px;
}

.pricing {
  width: 400px;
  height: 820px;
}

.background-images {
  position: relative; /* ensures children can be absolutely positioned */
  z-index: 0;
}

.bg-image {
  position: absolute;
  z-index: 1;
  width: auto;
  max-width: 200px;
  pointer-events: none; /* prevents dragging/blocking interactions */
}

.cornerbg-image {
  position: absolute;
  z-index: -1;
  width: auto;
  max-width: 200px;
  pointer-events: none;
  bottom:5px;
  left:50px;
}

/* Scrollbar container */
#scroll-character {
  position: fixed;
  right: -30px;           /* Adjust horizontal position */
  top: 0;
  height: 100vh;
  width: 290px;           /* Width of the scrollbar track */
  pointer-events: none;  /* Allow page interaction except for the head */
  z-index: 1000;
  
}

/* Neck and head image */
#scroll-neckhead {
  position: absolute;
  top: 0;
  right: -3px;
  width: 290px;
  height: auto;          /* Height of the image (long neck) */
  cursor: grab;
  pointer-events: auto;  /* Enable dragging */
  user-select: none;
  transition: transform 0.1s linear;
  cursor: url('hovercursor.cur'), pointer;
}

/* Base image */
#scroll-base {
  position: absolute;
  bottom: -35px;
  right: 0;
  width: 290px;
  height: auto;
  pointer-events: none;
}

/* Hide draggable scrollbar on small screens (mobile) */
@media only screen and (max-width: 1500px) {
  #scroll-character {
    display: none;
  }
}


.thought-window {
  position: absolute;  /* Always absolute */
  background: #000;
  border: 2px solid #999;
  min-width: 200px;
  max-width: 250px;
  font-family: 'Courier New', monospace;
  z-index: 1000;
}


.thought-window .thought-profile {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}

.thought-window .thought-text {
  overflow-wrap: break-word;
}

.thought-window .titlebar {
  background: #111;
  padding: 5px;
  cursor: move;
}

.draggable-window.minimized {
  height: auto;
  overflow: hidden;
}

.draggable-window.minimized .window-content,
.draggable-window.minimized .window-content2 {
  display: none;
}

.biocontent {
  text-align: left;
  padding: 15px;
}

.gallerywindow {
  border: 2px solid #999;
  padding: 0;
  font-family: 'Courier New', monospace;
  background: #000;
  color: rgb(255, 255, 255);
}

.gallery-preview-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px; /* small space between elements */
  margin-top: 10px;
  padding-left:16px;
  padding-right:16px;
}

.gallery-nav-button {
  height: 150px;
  font-size: 1.5rem;
  background: white;
  border: 1px solid #ccc;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.gallery-slide {
  display: none;
  height: 150px;
  object-fit: contain;
  background: white;
}

.gallery-slide.active {
  display: block;
}

.wtf-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 10px;
}

.wtf-buttons button {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;  /* 🔹 Align icon + text to the left */
  font-family: monospace;
  font-size: 1.1em;
  padding: 12px 24px;
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  cursor: pointer;
  text-align: center;
  width: 100%;                /* 🔹 Full-width buttons */
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s;
}


.wtf-buttons button:hover {
  background: #000;
  color: #fff;
  cursor: url('hovercursor.cur'), pointer;
}