
body {
  background: black;
  margin: 0;
  cursor: crosshair;
}

#stage {
  position: relative;
  width: 1300px;
  height: 850px;
  margin: 40px auto;
}


.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}



/* Force stage images to fit the stage */
#idleLayer,
#planetLayer,
#starLayer,
#fortuneLayer {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.hotspot {
  position: absolute;
  cursor: pointer;
  z-index: 10;
}


#landingVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 9999;
  display: none;
  pointer-events: none;
}


/* FULLSCREEN OVERLAY */
#pagePopup {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-image: url("img/space.jpg");
  background-size: cover;
  background-position: center;

  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

/* POPUP BOX */
#popupContent {
  background: rgba(0,0,0,.85);
  padding: 30px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  border-radius: 10px;
  color: rgba(250,250,250,1);

  cursor: default; 
}

/* IMAGE AT TOP */
.popup-image {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 20px;
}

