html, body {
  margin: 0; padding: 0; height: 100%; overflow: hidden; background: #fff;
  
		body,

a, a:hover, a:active, a:visited, button, input, select, textarea {
  cursor: url('https://kimb4thetape.neocities.org/pcursor.png') 0 0, auto !important;
}


	

#image_container {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

#image_wrapper {
  position: relative; /* THIS IS CRUCIAL */
  width: 100%;
  max-width: 100vw;
  height: auto;
  max-height: 100vh;
  display: block;
  flex-shrink: 0; /* prevent shrinking inside flex */
}

#mainImage {
  display: block;
  max-width: 100%;
  max-height: 100vh;
  height: auto;
  width: 100%;
  vertical-align: top;
}

/* Make .map-link positioned relative to #image_wrapper */
#image_wrapper {
  position: relative;
}

.map-link {
  position: absolute;
  display: block;
  border-radius: 0;
  z-index: 2;
  transition: background 0.4s ease, opacity 0.4s ease;
  background: transparent;
}

/* Your pink ombre hover effect */
.map-link:hover {
  background: radial-gradient(
    ellipse at center,
    rgba(255, 192, 203, 0.35) 0%,
    rgba(255, 105, 180, 0.25) 35%,
    rgba(255, 20, 147, 0.1) 60%,
    rgba(255, 20, 147, 0) 85%
  );
  opacity: 1;
  cursor: pointer;
}

.map-link.circle {
  border-radius: 50%;
}

/* Position overlays relative to #image_wrapper, so left/top are % of image size */
#image_wrapper {
  position: relative;
}

/* Responsive tweaks for mobile */
@media (max-width: 600px) {
  #image_container {
    width: 100vw;
    height: 100vh;
    padding: 0;
    overflow: hidden;
  }

  #image_wrapper {
    width: 100vw;
    max-height: 100vh;
  }

  #mainImage {
    width: 100%;
    height: auto;
  }

  .map-link {
    min-width: 44px;
    min-height: 44px;
  }

  .map-link:active,
  .map-link:focus {
    background: radial-gradient(
      ellipse at center,
      rgba(255, 192, 203, 0.35),
      rgba(255, 105, 180, 0.25),
      rgba(255, 20, 147, 0.1),
      rgba(255, 20, 147, 0)
    );
    opacity: 1;
  }
}
