body {
  font-family: comic;
  font-size: 14px;
  color: #4a3b6a;
  margin: 0;
  padding: 40px 20px;
  background-image: url('https://zavieracomplains.neocities.org/fizzog/graphics/babyzonthemoon.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  cursor: url('/zc/pixelgraphics/snail1-blue.gif'), auto;
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  width: 900px;
  max-width: 900px;
  margin: 0 auto;
}

.image-wrapper img {
  width: 100%;
  display: block;
}

.lilac-container {
  position: absolute;
  top: 62%;   /* Adjust to align with top of lilac box */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; /* Adjust to match lilac box width */
  height: 330px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  z-index: 2;
  /* Existing styles... */
  font-family: 'Comic Sans MS', 'Comic Sans';
}

/* Link styling */
.lilac-container a {
  color: #6c5ce7; /* Default link color — feel free to customize */
  text-decoration: none;
  transition: color 0.3s ease;
}

.lilac-container a:visited {
  color: #bddcf4; /* Soft blue for visited */
}

.lilac-container a:hover {
  color: #ffe28f; /* Pale yellow on hover */
}

.lilac-container a:active {
  color: #bcb9fb; /* Lavender when active */
}

.lilac-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 1rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 3rem auto;
  text-align: center;
}

.lilac-gallery img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.lilac-gallery img:hover {
  transform: scale(1.05);
}



/* 🌙 Scrollbar Track and Thumb */
.container::-webkit-scrollbar {
  width: 12px;
}

.container::-webkit-scrollbar-track {
  background: rgba(230, 215, 255, 0.4); /* dreamy lilac */
  border-radius: 6px;
}

.container::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #aec9ff, #d0a9ff); /* pastel blue to lavender */
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

/* Optional Hover Effect */
.container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #ffd66e, #d0a9ff); /* add starry gold */
}
