     .magnifier-container {
  height: 500px;
}


#mainImage {
  width: 100%;
  height: 500px !important;
  background-size: contain; /* Changed from 'cover' to 'contain' */
  background-position: center;
  background-repeat: no-repeat;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  pointer-events: auto;
}

  
  /* Ensure the container is positioned */
.image-container {
  position: relative;
  display: inline-block; /* or block — whatever fits your layout */
  max-width: 100%;
  height: auto;
}

/* Modal watermark — added via CSS only */
.image-container::before {
  content: "Star Alliance";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-family: "Comic Sans MS", cursive, sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  opacity: 0.5;
  pointer-events: none; /* Critical: doesn't block zoom/pan */
  z-index: 100;
}
