
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');

@font-face {
  font-family: 'Cherish';
  src: url('fonts/Cherish.ttf') format('truetype');
}

:root {
  --white: white;
  --black: black;
  --body-text-color: #f2b6ba;
  --accent-text-color: #D05D5D;
  --link-color: #bcdea8;
  --link-hover-color: #8BA073;
  --border-color: #ffffff;
  --highlight-bg: #ffffff;
  --background-color: #ffffff;
}

* {
  box-sizing: border-box;
  image-rendering: pixelated;
  font-family: 'DotGothic16', 'MS UI Gothic', sans-serif;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

body {
  background-image: url('https://greyvenz.neocities.org/pattern/plaidback.png');
}


a {
  color: var(--link-color);
  text-decoration: underline;
  display: inline-block;
  transition: transform 0.2s ease;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000,2px 2px 3px rgba(0,0,0,0.5);
}

a:hover {
  color: var(--link-hover-color);
}


.marquee {
  font-size: 18px;
  color: var(--body-text-color);
  white-space: nowrap;
  overflow: hidden;
  width: 100vw;
  border-top: 2px solid var(--border-color);
  border-bottom: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
  border-image-outset: 0;
  padding: 0;
  background-color: var(--highlight-bg);
  margin-bottom: 20px;
  display: flex;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 3px rgba(0,0,0,0.5);
}

.marquee span {
  display: inline-block;
  padding-right: 2rem;
  animation: scroll 30s linear infinite;
  font-weight: bold;
}

.marquee span:nth-child(2) {
  animation-delay: 7.5s;
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}


.page-container {
  width: 100%;
  margin: 0 auto;
  padding:20px;
  background-color: white;
}
.page-wrapper {
  width: 1240px; 
  height: auto;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  position: relative;
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
  border-radius: 0;
}

.content-wrapper {
  display: flex;
  width: 100%;
  margin: 0 auto;
  gap: 0;
  padding: 0;
  align-items: flex-start;
}

.content-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: nowrap;
}


.header {
  background-image: url("pattern/darkreddots.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  outline: 1px solid black;

  border-radius: 5px;
  width: 1170px;
}

.header h1 {
  font-family: 'Cherish';
  font-size: 64px;
  color: var(--white);
  margin: 0;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 3px rgba(0,0,0,0.5);
}


.sidebar {
  position: relative;
  width: 250px;
  flex: 0 0 250px;
  background-color: white;
  color: var(--body-text-color);
  font-weight: bold;
  font-family: 'DotGothic16','MS UI Gothic';
  outline: 1px solid var(--black);
  outline-offset: -2px;
  border-radius: 5px;
  padding: 20px;
  margin: 10px 0px;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 3px rgba(0,0,0,0.5);
}

.sidebar h1 {
  font-family: 'Cherish';
  font-size: 30px;
  font-weight: bold;
  color: var(--body-text-color);
  
}
.sidebar::before {
  content: "";
  position: absolute;
  top: -3px;       
  right: 2px;      
  width: 65px;
  height: 65px;
  background-image: url("png/clover.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
  transform: rotate(-15deg);  
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.sidebar-btn {
  display: block;
  text-align: center;
  font-family: 'DotGothic16', 'MS UI Gothic', sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: white;
  background-color: var(--link-color);
  padding: 10px;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  text-decoration: none;
  outline: 1px solid var(--black);
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  transition: all 0.2s ease-in-out;
}

.sidebar-btn:hover {
  transform: scale(1.2);
  color: var(--white);
  background-color: var(--link-hover-color);
  border-color: var(--link-hover-color);
   cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
}
.last-updated {
  width: 210px;                
  padding: 8px;
  margin-top: 10px;
  text-align: center;
  font-family: 'DotGothic16';
  font-size: 12px;
  background-color: white;
  color: black;
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png"); 
  border-image-slice: 9;
  border-image-repeat: round;
  border-radius: 5px;
  text-shadow: none;
}
.last-updated h1 {
  font-size:18px;
  font-family: 'cherish';
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}


.main-content {
  flex: 1;
  background-color: white;
  padding: 20px;
  max-width: 2000px;
  min-height: 300px;

}


.rei-wrapper {
  display: inline-block; 
}

.rei-container {
  position: relative;
  display: inline-block;
  
  overflow: visible;
}

.rei {
  display: block;
  margin: -9px;
  width: auto;      
  height: 300px;    
  border: 1px solid black;
  border-radius: 5px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rei-container:hover .rei {
  transform: scale(1.2);  
}

.rei-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: 'Cherish', sans-serif;
  font-size: 30px;
  text-align: center;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 3px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.rei-container:hover .rei-text {
  opacity: 1;
}



#chattable {
  margin: -9px;
  width: 204px;
  height: 300px;
  border: 1px solid black;
  border-radius: 5px;
  flex-shrink: 0;
  display: block;
}

#musicPlayer {
  position: relative;
  width: 260px;
  margin: -9px;
  padding: 10px;
  background-color: white;
  font-family: 'DotGothic16';
  font-size: 12px;
  text-align: center;
  border: 1px solid black;
  border-radius: 5px;
  border-color: black;
}
#musicPlayer::before {
  content: "";
  position: absolute;
  top: -10px;      
  right: -10px;   
  width: 65px;
  height: 65px;
  background-image: url("png/IMG_4947.png"); 
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
   transform: rotate(15deg);
}

.playerTitle {
  font-family: 'Cherish';
  font-size: 20px;
  font-weight: bold;
  color: var(--body-text-color);
  margin-bottom: 5px;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
}
.bottom-box {
  margin: -9px;
  width: 908px;         
  background-image: url('https://greyvenz.neocities.org/pattern/darkreddots.jpg');
  background-size: cover;
  border: 1px solid black;
  border-radius: 5px;
    padding: 20px;                
  margin-top: 20px;     
  font-family: 'DotGothic16';
  color: black;
}
.bottom-box h3 {
  font-size: 16px;
  margin: 0 0 5px 0;   
}
.bottom-box p {
  margin: 0;
  font-size: 14px;
}
.inner-box {
  position: relative;
  background-color: white;
  padding: 10px;
  border-radius: 0;
  z-index: 0;
  overflow: visible;
}

.inner-box::before {
  content: "";
  position: absolute;
  top: -9px; 
  left: -9px;
  right: -9px;
  bottom: -9px;
  pointer-events: none;
  z-index: 1;
  background: transparent;
}



.inner-box h3 {
  font-size: 16px;
  margin: 0 0 5px 0;
}

.inner-box p {
  margin: 0;
  font-size: 14px;
}
.inner-box-wrapper {
  display: block;        
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
  border-radius: 5px;
  padding: 0;                   
  background: transparent;
}
.about-side-box {
  flex-shrink: 0;
  width: calc(100% - 250px - 20px);
}
.about-content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px; 
  flex-wrap: wrap;
}
.about-side-box.bottom-box {
  margin: -9px; 
  width: auto; 
  background-image: url('https://greyvenz.neocities.org/pattern/darkreddots.jpg');
  background-size: cover;
  border: 1px solid black;
  border-radius: 5px;
  padding: 20px;
  font-family: 'DotGothic16';
  color: black;
}

.about-side-box .inner-box {
  position: relative;
  background-color: white;
  padding: 10px;
  border-radius: 0;
   height: 190px;
  display: flex;
  flex-direction: column;
}

.about-side-box .inner-box::before {
  content: "";
  position: absolute;
  top: -9px; 
  left: -9px;
  right: -9px;
  bottom: -9px;
 
}

.about-side-box .inner-box h3 {
  font-family: 'Cherish', cursive;  
  font-size: 30px;                  
  color: var(--body-text-color);  
  margin-bottom: 10px;
 text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 3px rgba(0,0,0,0.5);
}
.profile-section {
  display: flex;
  gap: 10px; 
  margin-bottom: 6px;
  font-size: 14px;
  color: black;
}

.profile-label {
  font-weight: bold;
  color: var(--accent-text-color);
  min-width: 90px; 
}

.profile-info {
  flex: 1;
  color: #333;
}


.content-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
    display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 150px; 
}

#musicPlayer {
  width: 200px; 
  box-sizing: border-box;
}

.stamp-marquee {
  width: 200px; 
  box-sizing: border-box;
  border: 3px solid var(--border-color);
  border-radius: 6px;
  background: white;
  overflow: hidden;
  padding: 0px;
    border: 1px solid black;
  border-radius: 5px;
  border-color: black;
  margin: 0 -9px;  /*keeping aligned with music player*/

}


.stamp-marquee img {
  height: 40px;
  margin: 0 0px;
  display: inline-block;
}

.songInfo {
  font-style: italic;
  color: #555;
  margin-bottom: 8px;
}

.controls button {
  font-family: 'DotGothic16';
  font-size: 11px;
  margin: 3px;
  padding: 3px 8px;
  background-color: white;
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
  border-radius: 0;
  background-color: white;
  padding: 0px;
  cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
  transition: transform 0.2s ease;
}

.controls button:hover {
  transform: scale(1.2);
}
.currently-box {
  width: 200px; 
  padding: 5px;
  border: 1px solid black;
  border-radius: 5px;
  background-color: white;
  font-family: 'DotGothic16';
  font-size: 12px;
  text-align: left;
  margin: -9px;

}

.currently-box h3 {
  font-family: 'Cherish';
  font-size: 14px;
  color: var(--body-text-color);
  margin-bottom: 0;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}


.changelog {
  margin: -9px;
  width: 200px;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 15px;
  border: 1px solid;
  border-color: black;
  border-radius: 5px;
  background-color: white;
  font-family: 'DotGothic16';
  color: black;
   scrollbar-width: thin;
  scrollbar-color: var(--link-color) transparent;
}

.changelog h2 {
  font-family: 'Cherish';
  font-size: 30px;
  color: var(--body-text-color);
  margin-bottom: 10px;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

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

.changelog li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
  font-size: 14px;
}


.changelog li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url('https://greyvenz.neocities.org/png/pushpin.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.inner-box ul {
  list-style: none;
  padding-left: 0;
}

.inner-box li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
  font-size: 14px;
}


.inner-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url('https://greyvenz.neocities.org/png/pushpin.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.hover-reveal {
  position: relative;
  margin: -9px;
  display: inline-block;
  width: 250px;
  height: 250px;
  border: 1px solid black;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
}

.hover-reveal img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
  top: 0;
  left: 0;
}

.default-img {
  z-index: 2;
}

.hover-img {
  z-index: 1;
  opacity: 0;
}

.hover-reveal:hover .hover-img {
  opacity: 1;
}

.hover-reveal:hover .default-img {
  opacity: 0;
  transform: scale(1.2);
}


.hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cherish', sans-serif;
  color: white;
  font-size: 30px;
  text-align: center;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 3px rgba(0,0,0,0.5);
  transition: opacity 0.3s ease;
  z-index: 3;
}

.hover-text-on-hover {
  opacity: 0;
}

.hover-reveal:hover .default-text {
  opacity: 0;
}

.hover-reveal:hover .hover-text-on-hover {
  opacity: 1;
}
.stan-list-box {
  flex: 1;             
  min-height: 250px;         
  background-color: white;
  border: 1px solid black;  
  border-radius: 5px;       
  padding: 15px;
  box-sizing: border-box;
  font-family: 'DotGothic16';
  color: black;
  margin: -9px;
  width: 600px;

}

.stan-list-box h3 {
  font-family: 'Cherish', cursive;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--body-text-color);
   text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 3px rgba(0,0,0,0.5);
}

.stan-list-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.stan-list-box li {
  margin-bottom: 5px;
  font-size: 14px;
}



.footer {
  width: 1240px;
  margin: 10px auto 0 auto;
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
  border-radius: 0;
  background: transparent; 
  box-sizing: border-box;
  text-shadow: -1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000,2px 2px 3px rgba(0,0,0,0.5)
}

.footer-inner {
  background-color: white; 
  padding: 10px;
  text-align: center;
  font-family: 'DotGothic16';
  color: var(--body-text-color);
}


.footer a {
  color: var(--link-color);
  text-decoration: underline;
}
.footer a:hover {
  color: var(--link-hover-color);
  transform: scale(1.1);
}




.hover-reveal {
  width: 250px;
  flex-shrink: 0;
}


.about-side-box {
  flex: 1;
}
.stan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 20px; 
}

.stan-col h4 {
  font-family: 'Cherish', cursive;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--link-color);
  text-shadow: -1px -1px 0 #000,
               1px -1px 0 #000,
               -1px 1px 0 #000,
               1px 1px 0 #000,
               2px 2px 3px rgba(0,0,0,0.5);
}

.stan-col p {
  margin: 4px 0;
  font-size: 14px;
}

.winamp-player {
  width: 205px;
  background: linear-gradient(145deg, var(--body-text-color), var(--accent-text-color));
  border: 1px solid black;
  border-radius: 5px;
  font-family: 'DotGothic16', monospace;
  color: var(--white);
  padding: 8px;
  margin: 10px 3px;
}

.winamp-titlebar {
  background: linear-gradient(to bottom, var(--link-color), var(--accent-text-color));
  border-bottom: 1px solid black;
  padding: 5px 5px;
  text-align: center;
  font-weight: bold;
  color: var(--white);
  text-shadow: 1px 1px 0 black;
  border-radius: 4px 4px 0 0;
}

.winamp-screen {
  background: black;
  color: var(--link-color);
  font-size: 12px;
  padding: 5px;
  margin-bottom: 5px;
  height: 30px;
  overflow: hidden;
  white-space: nowrap;
    border: 1px solid white;
}

.winamp-controls {
  display: flex;
  justify-content: space-around;
  margin-bottom: 5px;
}

.winamp-controls button {
  background: var(--link-color);
  border: 1px solid black;
  color: var(--white);
  padding: 2px 5px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.winamp-controls button:hover {
  background: var(--link-hover-color);
  color: var(--white);
}

.winamp-btn {
  background: var(--highlight-bg);
  border: 1px solid black;
  border-radius: 3px;
  padding: 2px 4px;
  font-size: 10px;
  color: var(--accent-text-color);
  cursor: pointer;
  box-shadow: 1px 1px 2px rgba(0,0,0,0.4),
              inset 1px 1px 2px rgba(255,255,255,0.7);
}

.winamp-btn:hover {
  background: var(--link-hover-color);
  color: var(--white);
}

.winamp-playlist {
  background: black;
  border: 1px solid white;
  padding: 5px;
  max-height: 120px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--link-color) transparent;
}

.winamp-playlist li {
  list-style: none;
  padding: 2px;
  cursor: pointer;
  font-size: 12px;
  color: var(--white);
}

.winamp-playlist li:hover {
  background: var(--link-color);
  color: var(--body-text-color);
}

.winamp-playlist::-webkit-scrollbar {
  width: 10px; 
}

.winamp-playlist::-webkit-scrollbar-track {
  background: transparent;
}

.winamp-playlist::-webkit-scrollbar-thumb {
  background-color: var(--link-color); 
  border-radius: 10px;
  border: 2px solid transparent; 
  background-clip: content-box;
}

.winamp-playlist::-webkit-scrollbar-thumb:hover {
  background-color: var(--link-hover-color); 
}

.blinkies-section {
  width: 102%;
  background-color: white;
  border: 1px solid black;
  border-radius: 5px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  font-family: 'DotGothic16', sans-serif;
  margin: 20px -9px;
}

.blinkies-section h3 {
  font-family: 'Cherish', cursive;
  font-size: 30px;
  color: var(--body-text-color);
  margin-bottom: 15px;
  text-shadow: -1px -1px 0 #000,
               1px -1px 0 #000,
               -1px 1px 0 #000,
               1px 1px 0 #000,
               2px 2px 3px rgba(0,0,0,0.5);
}

.blinkies-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.blinkies-grid img {
  width: auto;  
  height: auto;
  border: 9px solid transparent; 
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;           
  border-image-repeat: round;
  border-radius: 5px;
  padding: 0;
  background-color: white;
  transition: transform 0.3s ease;
}

.blinkies-grid img:hover {
  transform: scale(1.2);
}

.receipt-box {
  position: relative;
  width: 150px;
  margin: -9px;
  border-radius: 5px;
  overflow: visible; 
  background-color: white;
}

.receipt-box::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
 border: 1px solid black;
 border-radius: 5px;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.receipt-box:hover::before {
  transform: scale(1.2);
}

.receipt-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.receipt-box:hover img {
  transform: scale(1.2);
}


.about-side-box.bottom-box { width: auto !important; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 170px);
  gap: 10px;
  margin: -9px; 
  justify-content: start;
  cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
}

.gallery-item  {
  border: 1px solid black;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
height: 170px;
width:170px;
  transition: transform 0.3s ease;
  background-color: white;
}
.gallery-item .cc-img {
  border-radius: 5px;
  overflow: hidden;

  transition: transform 0.3s ease;
  background-color: white;
}


.gallery-item .cc-img img {
  height: 100%; 
  object-fit: cover;
  image-rendering: pixelated; 
  transition: transform 0.3s ease;
    cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
}

.gallery-item .cc-img:hover img {
  transform: scale(1.1);
    cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
}

.gallery-item .cc-img:hover {
  transform: scale(1.05);
    cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
}
.gallery-item .cc-img {
  overflow: hidden;

  transition: transform 0.3s ease;
  background-color: white;
}


.gallery-item  img {
  width: 100%;
  height: 100%; 
  display: block;
  object-fit: cover;
  image-rendering: pixelated; 
  transition: transform 0.3s ease;
    cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
}

.gallery-item :hover img {
  transform: scale(1.1);
    cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
}

.gallery-item :hover {
  transform: scale(1.05);
    cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
}


.lightbox {
  display: none; 
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
    cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
   border: 1px solid black;
  border-radius: 5px;
  image-rendering: pixelated;
    cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
    cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
  text-shadow: 2px 2px 5px black;
}

.local-time-box {
  width: 210px;                
  padding: 8px;
  margin-top: 10px;
  text-align: center;
  font-family: 'DotGothic16';
  font-size: 12px;
  background-color: white;
  color: black;
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
  border-radius: 5px;
 text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 3px rgba(0,0,0,0.5);
}

.local-time-box h2 {
  color: var(--body-text-color);
  font-family: 'Cherish';
  font-size: 18px;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 3px rgba(0,0,0,0.5);
  margin-bottom: 5px;
}

.local-time-box p {
  font-family: 'DotGothic16';
  font-size: 14px;
 
}
.sidebar .local-time-box {
  width: 210px;               
  padding: 8px;
  margin-top: 10px;
  text-align: center;
  font-family: 'DotGothic16';
  font-size: 12px;
  background-color: white;
  color: black;
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
  border-radius: 5px;
  text-shadow: none;
}

.sidebar .local-time-box h2 {
  font-size: 18px;
  font-family: 'Cherish';
  color: var(--body-text-color);
  margin-bottom: 5px;
 text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 3px rgba(0,0,0,0.5);
}

.sidebar .local-time-box p {
  margin: 0;
  font-size: 12px;
}

.sidebar .local-time-box {
  display: block !important;
}
.tama-wrapper {
  margin-top: 50px;
  border: 2px solid #fff; 
  padding: 10px;
  display: inline-block; 
  margin-top: 10px;
  position: relative;
  background: white; 
  width: 120px;
  justify-content: center;
   text-align: center;
}

.tama-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}

.tama-wrapper::before {
  content: "";
  position: absolute;
  top: -9px; 
  left: -9px;
  right: -9px;
  bottom: -9px;
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
  border-radius: 5px;
  pointer-events: none;
  z-index: 1;
  background: transparent;
}
.tama-row {
  display: flex;
  margin-top: 20px; 
}
.tama-wrapper h2 {
  font-size: 18px;
  font-family: 'Cherish';
  color: var(--body-text-color);
  margin-bottom: 5px;
 text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 3px rgba(0,0,0,0.5);
}
.moodboard-box {
  background-color: white;
  padding: 10px;
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
  height: 373px;
  margin-top: -7px;
}

.moodboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
  gap: 5px;
}

.moodboard-grid img {
  width: 100%;
  border: 1px solid black;
  border-radius: 5px;
  transition: transform 0.3s ease;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.moodboard-grid img:hover {
  transform: scale(1.5);
}
.moodboard-box h2 {
  font-size: 40px;
  text-align: center;
  font-family: 'Cherish';
  color: var(--body-text-color);
  margin-bottom: 5px;
 text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 3px rgba(0,0,0,0.5);
}
.moodboard-grid div {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 5px;
}
.moodboard-grid div img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  transition: transform 0.3s ease;
}
.collections-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.page-info-box {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 10px;
}
.page-info-box.bottom-box {
  margin: -9px; 
  width: auto; 
  background-image: url('https://greyvenz.neocities.org/pattern/darkreddots.jpg');
  background-size: cover;
  border: 1px solid black;
  border-radius: 5px;
  padding: 20px;
  font-family: 'DotGothic16';
  color: black;
}

.page-info-box .inner-box {
  padding: 10px;
  position: relative;
  background-color: white;
  padding: 10px;
  border-radius: 0;
   height: 200px;
  display: flex;
  flex-direction: column;
   flex: 1 1 250px; 
  max-width: 400px;
}

.page-info-box .inner-box::before {
  padding: 10px;
  content: "";
  position: absolute;
  top: -9px; 
  left: -9px;
  right: -9px;
  bottom: -9px;
  border-radius: 5px;
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
  pointer-events: none;
}
.page-info-box .inner-box h3 {
  font-family: 'Cherish', cursive;  
  font-size: 30px;                  
  color: var(--body-text-color);  
  margin-bottom: 10px;
 text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 3px rgba(0,0,0,0.5);
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 10px; 
  align-items: stretch;
}

.grid-item {
  width: 200px;
  height: 200px;
  position: relative;
  overflow: hidden;
  border: 1px solid black;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.grid-item img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
  object-fit: cover;
}

.grid-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  text-align: center;
  font-family: 'DotGothic16', sans-serif;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.1);
}

.grid-item:hover .caption {
  opacity: 1;
  transform: translateY(-5px);
}

.friends-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.friends-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;

}

.friends-gallery {
  position: relative;
  max-width: 400px; 
  margin: 0;
  background-color: white;
   grid-template-columns: repeat(auto-fill, 300px);
  padding: 20px;
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
  border-radius: 5px;
  box-sizing: border-box;
  display: flex;
  grid-template-columns: 1fr;
  gap: 15px;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.friends-gallery h2 {
  font-family: 'Cherish';
  font-size: 32px;
  color: var(--body-text-color);
  margin-bottom: 15px;
  text-align: center;
  text-shadow: -1px -1px 0 #000, 
               1px -1px 0 #000, 
               -1px 1px 0 #000, 
               1px 1px 0 #000, 
               2px 2px 3px rgba(0,0,0,0.5);
}

.friends-gallery .gallery-item {
  width: 140px;         
  height: 160px;      
  border: 1px solid black;
  border-radius: 5px;
  overflow: hidden;
  background: white;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  box-sizing: border-box;
  cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
}

.friends-gallery .gallery-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform .3s ease;
  image-rendering: pixelated;
}

.friends-gallery .gallery-item:hover img {
  transform: scale(1.1);
}
.inner-box .friends-gallery {
  width: 100%;     
   display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  box-sizing: border-box;
}

.download-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 10px;
  font-family: 'DotGothic16';
  font-size: 12px;
  border: 1px solid black;
  border-radius: 5px;
  background: white;
  color: var(--accent-text-color);
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease;
}

.retro-video-block {
  width: 300px;
  background: var(--body-text-color);
  padding: 8px;
  border: 3px solid var(--accent-text-color);
  border-radius: 5px;
  box-shadow: 4px 4px 0 var(--accent-text-color);
  font-family: 'DotGothic16', monospace;
  margin-bottom: 20px;
}

.retro-video-block video {
  width: 100%;
  display: block;
  background: black;
}

.retro-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.retro-btn {
  background: var(--link-color);
  color: black;
  border: 2px solid var(--link-hover-color);
  padding: 4px 8px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--link-hover-color);
  border-radius: 4px;
}

.retro-btn:hover {
  background: #e560a9;
}

.retro-progress {
  flex-grow: 1;
  margin: 0 4px;
  height: 8px;
  background: #444;
  accent-color: var(--accent-text-color);
  border-radius: 4px;
}

.friends-playlist {
  width: 100%;
  background: white;
  border: 1px solid black;
  border-radius: 5px;
  padding: 15px;
}

.friends-playlist h2 {
  font-family: 'Cherish';
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--body-text-color);
  text-shadow: -1px -1px 0 #000,
               1px -1px 0 #000,
               -1px 1px 0 #000,
               1px 1px 0 #000,
               2px 2px 3px rgba(0,0,0,0.5);
}

.friends-playlist audio {
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid black;
  border-radius: 5px;
  background: white;
}
.site-button-box {
  display: inline-block;
  background-color: white;
  padding: 10px;
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
  border-radius: 5px;
  padding: 10px;
  position: relative;
  width: 200px;
  text-align: center;
  height: 150px;
}

.site-button-heading {
  font-family: 'Cherish', sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: var(--accent-text-color);
  background-color: white;
  text-decoration: none;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin: 0 0 8px 0;
}

.site-button-heading:hover {
  background-color: white;
  border-color: black;
  color: var(--accent-text-color);
}

.site-button-box p {
  font-family: 'DotGothic16', sans-serif;
  color: var(--link-hover-color);
  font-size: 14px;
  margin: 0;
  
}
  .sidebar .winamp-player {
  width: 210px;        
  margin: 10px 0;       
  padding: 8px;
}

.sidebar .winamp-titlebar {
  font-size: 14px;
  padding: 4px 5px;
}

.sidebar .winamp-screen {
  height: 25px;         
  font-size: 11px;
}

.sidebar .winamp-controls button {
  font-size: 12px;
  padding: 2px 4px;
}

.sidebar .winamp-playlist {
  max-height: 100px;    
  font-size: 11px;
}

.sidebar .winamp-btn {
  font-size: 9px;
  padding: 1px 3px;
}

.friends-row {
  display: flex;
  gap: 20px; 
  align-items: flex-start;
}
.winamp-player .friends-row {
 margin: -30px;
}

.friends-gallery {
  flex: 1 1 auto;          
  min-width: 300px;        
}

.friends-player-column {
  flex: 0 0 220px;        
}

.buttons-box {
  flex: 1;
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-color: white;
  box-sizing: border-box;
   height: 150px;
}

.cc-img {
  width: 100%;
  max-width: 908px;
  border: 1px solid black;
  border-radius: 5px;
}
.cc-img img {

   width: 100%;
   height: 100%;
   object-fit: cover;
   overflow: hidden;
   height: 100%;
  image-rendering: pixelated; 
  transition: transform 0.3s ease;
    cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
  }
  .doodle-wrapper {
  width: 230px;
  margin: 12px -5px;
  font-family: sans-serif;
}

.doodle-header {
  background-color: var(--accent-text-color);
  color: white;
  text-align: center;
  padding: 5px;
  border: 1px solid black;
  border-bottom: none; 
  border-radius: 5px 5px 0 0;
}

.doodle-container {
  border: 1px solid black;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  background-color: #f8f8f8;
}

.buttons {
  display: flex;
  justify-content: space-around;
  padding: 10px;
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-link {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: black;
  font-family: 'DotGothic16', sans-serif;
  font-size: 16px;
  background: white;
text-shadow: none;
  border-radius: 5px;
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;

  transition: transform 0.2s ease;
}

.blog-link:hover {
  transform: scale(1.03);
  cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
}
.tags {
  margin-top: 5px;
  position: relative;
  transform: translate(-50%, -50%);
   top: 50%;
  left: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 5px;
  text-align: center;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3 ease;
}
.gallery-item:hover .tags {
  opacity: 1;               
}
.tag {
  display: inline-block;
  background: #f2f2f2;
  color:var(--link-color);
  font-family: 'dotgothic16';
  border-radius: 2px;
  padding: 2px 8px;
  margin: 2px;
  font-size: 12px;
cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
}
.gallery-item .tags {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.gallery-item:hover .tags {
  opacity: 1;
}
.gallery-item .tag {
  background:white;
  color: var(--link-color);
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 2x;
}
.gallery-item .tag:hover{
color:var(--link-hover-color);
}
.gallery-item.hidden {
  display: none; 
}
.new {
  background: var(--link-color);
  color: white;
  font-size: 0.7em;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'dotgothic16';
}

.sidelink-row {
  display: flex;
  justify-content: center;
  align-content: flex-start;
}

  .tarot-box {
    justify-content:center;
    align-content: center;
    display: grid;
  border: 1px solid black;
  border-radius: 5px;
  } 

#tarot-card:hover {
   transform: scale(1.7) rotate(7deg);
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}
#tarot-card {
  transition: transform 0.6s ease;
   cursor: url('https://cur.cursors-4u.net/food/foo-1/foo76.cur'), auto !important;
  }
  
.greysbanners {
  border: 1px solid black;
  border-radius: 5px;
  margin: 5px;
  width: 200px;
  height: 500px;
  padding: 0;
  overflow: hidden;
  display: flex; 
  align-items: center;
  justify-content: center;
}

.greysbanners img {
  width: 200px;
  height: 500px;
  object-fit: stretch; 
  display: block;
}
.greysbanners a:hover {
  transform:none !important; 
}
.video-player-wrapper {
  display: flex;
  flex-direction: column; 
  align-items: center;    
  gap: 15px;
}

.video-player-wrapper video {
  width: 725px;
  border-radius: 5px;
  border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
}

.video-playlist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  width: 100%;
  max-width: 800px;
}

.video-playlist button {
  font-family: 'DotGothic16';
  font-size: 14px;
  background: white;
  border: 1px solid black;
  border-radius:3px;
  padding: 6px 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.video-playlist button:hover {
  background: var(--link-color);
  color: white;
  transform: scale(1.05);
}
#loonaPlaylist button.active-video {
  background: var(--link-color);
  color: white;
  font-weight: bold;
  transform: scale(1.05);
}
.members-section {
  margin-top: 24px;
}

.members-title {
  font-family: 'DotGothic16', sans-serif;
  font-size: 22px;
  margin: 0 0 12px 0;
}

.members-two-col {
  display: grid;
  grid-template-columns: 320px 1fr; 
  gap: 20px;
  align-items: start;
}


.members-column {
  display: grid;
  gap: 10px;
   border: 9px solid transparent;
  border-image-source: url("png/NJa4bp2.png");
  border-image-slice: 9;
  border-image-repeat: round;
}


.member-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  padding: 8px;
  transition: transform .15s ease;
}
.member-card:hover {
  transform: translateY(-2px);
}

.member-pic {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #000;
}

.member-info {
  line-height: 1.25;
  font-size: 14px;
}
.member-name {
  font-weight: 700;
  margin-bottom: 4px;
}
.member-line .profile-label {
  font-family: 'DotGothic16', sans-serif;
  font-weight: 700;
  margin-right: 4px;
}


.loona-column > .bottom-box {
  max-width: 100%;
}


