@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;700;800&family=Fredoka:wght@400;600&family=Cherry+Bomb+One&family=Reem+Kufi:wght@400..700&display=swap');

:root {
  --red: #E2021E;
  --yellow: #FFD21C;
  --green: #1CC945;
  --blue: #5D5DFF;
  --ink: #1a1a1a;
  --cream: #FFF8EC;
}

* { box-sizing: border-box; }

/* ========================================== */
/* CUSTOM RETRO CURSOR SYSTEM                 */
/* ========================================== */

/* 1. Default arrow cursor (Applied seamlessly without blanket !important blocking) */
html, body {
  margin: 0;
  font-family: "MS Gothic UI", monospace;
  background-color: var(--cream);
  background-image: url('https://file.garden/akEMLdX-mGilvTta/a610/tile-bg2.png');
  background-repeat: repeat; 
  background-attachment: fixed;
  background-size: auto;     
  animation: scrollBackground 20s linear infinite;
  color: var(--ink);
  font-size: 17px;
  cursor: url('https://file.garden/akEMLdX-mGilvTta/a610/cursors/Normal%20Select%202.png'), auto;
}

a, 
nav a, 
button, 
.badge-btn, 
.dl-card, 
.inline-dl-btn, 
.dl-close-btn, 
.close-btn, 
.main-link, 
.sub-btn {
  cursor: url('https://file.garden/akEMLdX-mGilvTta/a610/cursors/Link.png'), pointer;
}

/* ========================================== */
/* BACKGROUND SCROLLING ANIMATION             */
/* ========================================== */
@keyframes scrollBackground {
  from { background-position: 0 0; }
  to { background-position: 0 1000px; }
}

a { color: var(--red); font-weight: 600; text-decoration: none; }
a:hover { color: var(--blue); text-decoration: underline wavy; }

p { font-size: 16px; line-height: 1.5; }

.page {
  max-width: 920px;
  margin: 24px auto;
  background: #fff;
  border: 6px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 0 0 6px #fff;
  
  /* Adds a smooth entry when any site page loads */
  animation: slide-up-fade 1s cubic-bezier(0.25, 1, 0.5, 1) both;
}

/* ========================================== */
/* HEADER & MARQUEE                           */
/* ========================================== */
header {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 50%, transparent 50%), var(--red);
  text-align: center;
  padding: 26px 10px 20px;
  border-bottom: 6px solid var(--ink);
  position: relative;
  box-shadow: inset 4px 4px 0 rgba(255, 255, 255, 0.4);
}

.title {
  font-family: "Cherry Bomb One", sans-serif;
  font-weight: 800;
  font-size: 54px;
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--ink);
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 3px 3px 0 var(--ink);
  display: inline-block;
}

.title span {
  display: inline-block;
  animation: letterWiggle 1.2s ease-in-out infinite;
}

/* LETTER-BY-LETTER WAVE DELAYS */
.title span:nth-child(1)  { animation-delay: 0.0s; }
.title span:nth-child(2)  { animation-delay: 0.1s; }
.title span:nth-child(3)  { animation-delay: 0.2s; }
.title span:nth-child(4)  { animation-delay: 0.3s; }
.title span:nth-child(5)  { animation-delay: 0.4s; }
.title span:nth-child(6)  { animation-delay: 0.5s; }
.title span:nth-child(7)  { animation-delay: 0.6s; }
.title span:nth-child(8)  { animation-delay: 0.7s; }
.title span:nth-child(9)  { animation-delay: 0.8s; }
.title span:nth-child(10) { animation-delay: 0.9s; }
.title span:nth-child(11) { animation-delay: 1.0s; }
.title span:nth-child(12) { animation-delay: 1.1s; }

@keyframes letterWiggle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.subtitle {
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  margin-top: 6px;
}

.marquee-container {
  background: repeating-linear-gradient(45deg, var(--yellow), var(--yellow) 14px, #FFDA47 14px, #FFDA47 28px);
  background-size: 40px 40px;
  animation: scrollMarqueeStripes 1s linear infinite;
  border-bottom: 4px solid var(--ink);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4px 8px;
}

@keyframes scrollMarqueeStripes {
  from { background-position: 0 0; }
  to { background-position: -40px 0; }
}

marquee {
  background: transparent !important;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  flex: 1;
}

/* CLOCK CAPSULE PODS */
.clock-pods {
  display: flex;
  gap: 6px;
  margin-right: 12px;
}

.clock-pods .pod {
  background: #1a1a1a;
  color: var(--yellow);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* ========================================== */
/* NAVIGATION SYSTEM                          */
/* ========================================== */
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: var(--blue);
  border-bottom: 6px solid var(--ink);
}

nav a {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 8px 16px;
  color: var(--ink);
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 3px 3px 0 var(--ink);
}
nav a:hover {
  background: var(--yellow);
  text-decoration: none;
  transform: scale(1.03) translateY(-2px);
  box-shadow: 5px 5px 0 var(--ink);
}

/* ========================================== */
/* LAYOUT COLUMNS                             */
/* ========================================== */
.layout { display: flex; flex-wrap: wrap; }

.sidebar {
  width: 230px;
  padding: 18px;
  border-right: 6px solid var(--ink);
  background: repeating-linear-gradient(135deg, #fff, #fff 14px, #FFF0B5 14px, #FFF0B5 28px);
  background-size: 40px 40px; 
  animation: scrollSidebarStripes 1s linear infinite;
}

@keyframes scrollSidebarStripes {
  from { background-position: 0 0; }
  to { background-position: 40px 0; }
}

.avatar {
  width: 100%;
  aspect-ratio: 1;
  border: 4px solid var(--ink);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--ink);
  margin-bottom: 14px;
  overflow: hidden;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.guestbook-btn {
  display: block !important;
  width: 140px !important;  /* Change these numbers to whatever size you want */
  height: 120px !important; /* Change these numbers to whatever size you want */
  margin: 10px auto !important;
  transition: transform 0.3s ease, filter 0.3s ease !important;
  overflow: visible !important; /* Changed from hidden so the tilt doesn't clip */
  cursor: pointer !important;
  background: transparent !important;
  border: none !important;
}

.guestbook-btn img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  image-rendering: auto !important; 
}

.guestbook-btn:hover {
  transform: scale(1.05) rotate(-2deg);
  filter: brightness(1.2) contrast(1.1);
}

.stat-box {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 10px;
  font-size: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  margin-bottom: 14px;
}
.stat-box b { color: var(--red); }

.badge-row { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
  justify-content: center;
}

.badge-btn {
  width: 60px; 
  height: 48px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  overflow: visible;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.badge-btn:active {
  transform: scale(0.92) translateY(1px) !important;
}

.badge-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  display: block;
  border-radius: 0 !important;
  image-rendering: -webkit-optimize-contrast !important;
  image-rendering: -moz-crisp-edges !important;
  image-rendering: pixelated !important; 
  image-rendering: crisp-edges !important;
}

.badge-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -150%; 
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.0),
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.0) 100%,
    transparent
  );
  transform: skewX(-25deg); 
  pointer-events: none;
}

main { flex: 1; min-width: 300px; padding: 20px; }

h2 {
  font-family: "Cherry Bomb One", sans-serif;
  display: inline-block;
  color: #fff;
  text-shadow: 2px 2px 0 var(--ink);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 50%, transparent 50%), var(--green);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 6px 18px;
  font-size: 22px;
  box-shadow: inset 3px 3px 0 rgba(255, 255, 255, 0.7), 4px 4px 0 var(--ink);
  transform: rotate(-1deg);
}

section { margin-bottom: 26px; }

/* ========================================== */
/* CONTENT BLOCKS                             */
/* ========================================== */
.updates { list-style: none; padding: 0; }
.updates li {
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 10px;
  background: #fff;
  font-size: 15px;
  box-shadow: 4px 4px 0 var(--blue);
}
.updates .date { color: var(--red); font-weight: 700; margin-right: 8px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.card {
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  padding: 10px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--yellow);
}
.card:hover { transform: scale(1.03) translateY(-2px); box-shadow: 7px 7px 0 var(--yellow); }
.card .thumb {
  width: 100%; 
  height: 110px; 
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 10px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: #fff; 
  font-size: 13px; 
  font-weight: 700; 
  margin-bottom: 8px;
  overflow: hidden; 
}
.card a { font-size: 15px; }

.filebox {
  border: 3px dashed var(--ink);
  border-radius: 14px;
  background: #fffbe6;
  padding: 10px 14px;
  margin-bottom: 10px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
}
.filebox span.tag {
  background: var(--red); color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 8px; margin-right: 8px;
}

.grid .card .thumb {
  height: 110px !important;
  overflow: hidden !important;
  display: block !important;
}

.grid .card .thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* ========================================== */
/* BRANCHED LINK BUTTONS                      */
/* ========================================== */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.link-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-link {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 10px 16px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 4px 4px 0 var(--ink);
  text-align: center;
}
.main-link:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: scale(1.03) translateY(-2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.sub-links {
  display: none; 
  flex-direction: column;
  gap: 6px;
  width: 90%;
  margin-top: 8px;
  padding: 8px;
  background: #fff;
  border: 3px dashed var(--ink);
  border-radius: 12px;
}

.link-branch.active .sub-links { display: flex; }

.sub-btn {
  background: var(--cream);
  color: var(--ink) !important;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 6px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  box-shadow: 2px 2px 0 var(--ink);
}
.sub-btn:hover {
  background: var(--green) !important;
  color: #fff !important;
  transform: scale(1.05);
}

/* ========================================== */
/* REACTIVE BOUNCE & GLOSSY SHINE             */
/* ========================================== */
.main-link, nav a, .card, .close-btn, a.close-btn, button.close-btn, .dl-card {
  position: relative;
  overflow: hidden; 
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease !important;
}

.main-link:active, nav a:active, .card:active, .close-btn:active, a.close-btn:active, button.close-btn:active, .dl-card:active {
  transform: scale(0.96) translateY(1px) !important;
  box-shadow: 2px 2px 0 var(--ink) !important;
}

.main-link::after, nav a::after, .close-btn::after, a.close-btn::after, button.close-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -150%; 
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.0),
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.0) 100%,
    transparent
  );
  transform: skewX(-25deg); 
}

.main-link:hover::after, nav a:hover::after, .close-btn:hover::after, a.close-btn:hover::after, button.close-btn:hover::after {
  animation: shineSweep 0.65s ease-in-out;
}

@keyframes shineSweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* ========================================== */
/* GLOBAL LIGHTBOX MECHANICS & ENTRY          */
/* ========================================== */
.lightbox {
  position: fixed !important;         
  z-index: 99999 !important;          
  top: 0 !important;                  
  left: 0 !important;                 
  width: 100vw !important; 
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.85);
  padding: 20px;
  display: none; 
  align-items: center !important;     
  justify-content: center !important; 
}

.lightbox.active { 
  display: flex !important; 
  animation: fade-in 0.2s ease forwards;
}

.lightbox-close-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.lightbox-content {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin: 0 auto !important;
  max-width: 90%;
  max-height: 90vh; 
  background: #fff;
  padding: 16px; 
  border: 6px solid var(--ink);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto; 
  animation: pop-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both !important;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 65vh !important; 
  border-radius: 14px;
  object-fit: contain;
  display: block;
  margin-bottom: 4px;
}

a.close-btn, button.close-btn, .close-btn {
  align-self: center;
  margin-top: 14px !important;
  margin-bottom: 4px !important;
  background: var(--red) !important;
  color: white !important;
  border: 3px solid var(--ink) !important;
  border-radius: 12px !important;
  font-family: "Baloo 2", sans-serif !important;
  font-weight: 700 !important;
  box-shadow: 3px 3px 0 var(--ink) !important;
  text-decoration: none !important;
  display: inline-block !important; 
  padding: 8px 28px !important;      
  white-space: nowrap !important;     
  min-width: 130px !important;        
  text-align: center !important;
  flex-shrink: 0 !important; 
}

a.close-btn:hover, button.close-btn:hover, .close-btn:hover {
  background: var(--yellow) !important;
  color: var(--ink) !important;
  text-decoration: none !important;
}

/* ========================================== */
/* FOOTER                                     */
/* ========================================== */
footer {
  text-align: center;
  padding: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}
footer a { color: var(--yellow); }

hr.blob {
  height: 6px; border: 0; border-radius: 4px;
  background: repeating-linear-gradient(90deg, var(--red) 0 12px, var(--yellow) 12px 24px, var(--green) 24px 36px, var(--blue) 36px 48px);
  margin: 20px 0;
}

/* ========================================== */
/* FEATURED ART GALLERY POSITIONING SYSTEM    */
/* ========================================== */
.featured-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px; 
  margin: -25px auto 30px auto; 
  padding-top: 0px;            
  display: flex;
  flex-direction: column;
  align-items: center;
}

.frame-container {
  position: relative;
  width: 100%;
  display: block;
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.frame-container:hover {
  transform: scale(1.02) rotate(0.5deg);
}

.frame-border {
  width: 100%;
  display: block;
  position: relative;
  z-index: 3; 
  pointer-events: none; 
}

.frame-canvas {
  position: absolute;
  top: 10%;
  left: 2%;
  width: 90%;
  height: 80%;
  z-index: 1;
  background: #fff;
  clip-path: polygon(0% 8.5%, 100% 0%, 93.3% 100%, 6.5% 100%);
}

.frame-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%; 
  display: block;
  transform: none !important; 
}

.featured-flag-label {
  position: absolute;
  right: 15px;
  bottom: 5px;
  z-index: 4; 
  font-family: "Cherry Bomb One", sans-serif;
  font-size: 26px;
  color: #fff;
  background: var(--ink);
  padding: 0px 14px;
  border: 3px solid #fff;
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-4deg);
  letter-spacing: 0.5px;
}

/* ========================================== */
/* BACKGROUNDS & CORE KEYFRAMES               */
/* ========================================== */
.polka main {
  background-color: #22E54F !important;
  background-image: 
    radial-gradient(circle, #1DC946 5px, transparent 5px), 
    radial-gradient(circle, #22E54F 4px, transparent 4px), 
    radial-gradient(circle, #1DC946 4px, transparent 4px), 
    radial-gradient(circle, #22E54F 5px, transparent 5px) !important;
  background-size: 58px 60px !important;
  background-position: 0 0, 29px 0, 14.5px 30px, 43.5px 30px !important;
  animation: scrollMainDots 3s linear infinite;
}

.polka-i main {
  background-color: #EFEFEF !important;
  background-image: 
    radial-gradient(circle, #EFEFEF 5px, transparent 5px), 
    radial-gradient(circle, #d5d5d5 4px, transparent 4px), 
    radial-gradient(circle, #EFEFEF 4px, transparent 4px), 
    radial-gradient(circle, #d5d5d5 5px, transparent 5px) !important;
  background-size: 58px 60px !important;
  background-position: 0 0, 29px 0, 14.5px 30px, 43.5px 30px !important;
  animation: scrollMainDots 3s linear infinite;
}

.polka-a main {
  background-color: #FFD21D !important;
  background-image: 
    radial-gradient(circle, #FFD21D 5px, transparent 5px), 
    radial-gradient(circle, #e9bb00 4px, transparent 4px), 
    radial-gradient(circle, #FFD21D 4px, transparent 4px), 
    radial-gradient(circle, #e9bb00 5px, transparent 5px) !important;
  background-size: 58px 60px !important;
  background-position: 0 0, 29px 0, 14.5px 30px, 43.5px 30px !important;
  animation: scrollMainDots 3s linear infinite;
}

.polka-p main {
  background-color: #bd2eff !important;
  background-image: 
    radial-gradient(circle, #ab00fa 5px, transparent 5px), 
    radial-gradient(circle, #bd2eff 4px, transparent 4px), 
    radial-gradient(circle, #ab00fa 4px, transparent 4px), 
    radial-gradient(circle, #bd2eff 5px, transparent 5px) !important;
  background-size: 58px 60px !important;
  background-position: 0 0, 29px 0, 14.5px 30px, 43.5px 30px !important;
  animation: scrollMainDots 3s linear infinite;
}

.polka-d main {
  background-color: #32C3CB !important;
  background-image: 
    radial-gradient(circle, #35CCD5 5px, transparent 5px), 
    radial-gradient(circle, #35CCD5 4px, transparent 4px), 
    radial-gradient(circle, #35CCD5 4px, transparent 4px), 
    radial-gradient(circle, #35CCD5 5px, transparent 5px) !important;
  background-size: 58px 60px !important;
  background-position: 0 0, 29px 0, 14.5px 30px, 43.5px 30px !important;
  animation: scrollMainDots 3s linear infinite;
}

@keyframes scrollMainDots {
  from { background-position: 0 0, 29px 0, 14.5px 30px, 43.5px 30px; }
  to { background-position: 58px 60px, 87px 60px, 72.5px 90px, 101.5px 90px; }
}

@keyframes pop-in {
  0% { transform: scale(0.85); opacity: 0; }
  70% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-up-fade {
  0% { transform: translateY(24px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.delay-1 { animation-delay: 0.06s; }
.delay-2 { animation-delay: 0.12s; }
.delay-3 { animation-delay: 0.18s; }

/* ========================================== */
/* PREVIEW FILEBOX "TO DOWNLOADS" BUTTONS     */
/* ========================================== */
.go-dl-btn {
  display: inline-block !important;
  background: var(--blue);
  color: #fff !important;
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 5px 16px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  text-decoration: none !important;
  box-shadow: 3px 3px 0 var(--ink);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease !important;
}

@media (max-width: 480px) {
  .filebox { flex-direction: column; align-items: stretch; gap: 10px; }
  .go-dl-btn { width: 100%; }
}

.go-dl-btn:hover {
  background: var(--yellow);
  color: var(--ink) !important;
  transform: scale(1.03) translateY(-2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.go-dl-btn:active {
  transform: scale(0.96) translateY(1px) !important;
  box-shadow: 1px 1px 0 var(--ink) !important;
}

.go-dl-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -150%; 
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5) 50%,
    transparent
  );
  transform: skewX(-25deg); 
}

.go-dl-btn:hover::after {
  animation: shineSweep 0.65s ease-in-out;
}

/* ========================================== */
/* CUSTOM SCROLLBAR                 */
/* ========================================== */
.custom-scroll {
  scrollbar-width: thin;
  scrollbar-color: #E2021E transparent;
  overflow-y: auto;
}

.custom-scroll::-webkit-scrollbar { width: 4px; }
.custom-scroll::-webkit-scrollbar-track { background: transparent; border: none; }
.custom-scroll::-webkit-scrollbar-thumb { background: #E2021E; border-radius: 99px; border: none; }
.custom-scroll::-webkit-scrollbar-thumb:hover { background: #FFD21C; }

html {
  scrollbar-width: thin;
  scrollbar-color: #E2021E transparent;
}

html::-webkit-scrollbar { width: 4px; }
html::-webkit-scrollbar-track { background: transparent; border: none; }
html::-webkit-scrollbar-thumb { background: #E2021E; border-radius: 99px; border: none; }
html::-webkit-scrollbar-thumb:hover { background: #FFD21C; }

.guestbook-btn img, 
img[src*="Guestbook"] {
  image-rendering: auto !important;
  image-rendering: optimizeQuality !important;
  -ms-interpolation-mode: bicubic !important;
}