/* ========================= IMPORTS & ROOT VARIABLES ========================= */
@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: #F8F8F8;
  --black: #2F2F2F;
  --body-text-color: #f2b6ba;
  --accent-text-color: #D05D5D;
  --link-color: #bcdea8;
  --link-hover-color: #8BA073;
  --border-color: #ffffff;
  --highlight-bg: #ffffff;
  --background-color: #ffffff;
}

/* ========================= GLOBAL STYLES ========================= */
* {
  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');
}

/* ========================= LINKS ========================= */
a {
  color: var(--link-color);
  text-decoration: underline;
  display: inline-block;
  transition: transform 0.2s ease;
}

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

/* ========================= MARQUEE ========================= */
.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%); }
}

/* ========================= LAYOUT CONTAINER ========================= */
.page-container {
  width: 100%;
  margin: 0 auto;
  padding:20px;
  background-color: white;
}
.page-wrapper {
  width: 1240px;          /* same width as your container */
  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 ========================= */
.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 ========================= */
.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(--accent-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);  /* rotate counterclockwise */
}

.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 {
  color: var(--white);
  background-color: var(--link-hover-color);
  border-color: var(--link-hover-color);
  cursor: pointer;
}
.last-updated {
  width: 210px;                /* match the width of buttons or adjust */
  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"); /* your PNG border */
  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 ========================= */
.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: #D05D5D;
  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;
  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;
}



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

.inner-box p {
  margin: 0;
  font-size: 14px;
}
.inner-box-wrapper {
  display: inline-block;        /* or 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;                   /* no extra margin tricks */
  background: transparent;      /* ensures edges stay transparent */
}
.about-side-box {
  flex-shrink: 0;
  width: calc(100% - 250px - 20px);
}
.about-content-row {
  display: flex;
  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;
  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;
}
.about-side-box .inner-box h3 {
  font-family: 'Cherish', cursive;  
  font-size: 30px;                  
  color: var(--accent-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: #D05D5D;
  margin-bottom: 0;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/* ========================= CHANGELOG ========================= */
.changelog {
  margin: -9px;
  width: 200px;
  height: 300px;
  padding: 15px;
  border: 1px solid;
  border-color: black;
  border-radius: 5px;
  background-color: white;
  font-family: 'DotGothic16';
  color: black;
}

.changelog h2 {
  font-family: 'Cherish';
  font-size: 30px;
  color: var(--accent-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;
}


.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);
}

/* TEXT OVERLAY */
.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(--accent-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;
}

.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 image box fixed size */
.hover-reveal {
  width: 250px;
  flex-shrink: 0;
}


.about-side-box {
  flex: 1;
}
.stan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 equal columns */
  gap: 20px; /* space between ults and casuals */
}

.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); /* matches your link text */
  border-radius: 10px;
  border: 2px solid transparent; /* gives it some spacing */
  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(--accent-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;  /* adjust size as needed */
  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, 100px);
  gap: 5px; 
  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;
  width: 100px;
  height: 100px;
  transition: transform 0.3s ease;
  background-color: white;
}


.gallery-item img {
  width: 100px;
  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: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;
}


