
body {
  background: black;
  margin: 0;
  cursor: crosshair;
}

#stage {
  position: relative;
  width: 1200px;
  height: 800px;
  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;
}

.arrow {
  position: absolute;
  top: 50%;
  width: 100px;      /* adjust size */
  height: 100px;
  cursor: pointer;
  user-select: none;
  transition: transform 0.1s; /* smooth press effect */
}

#rotateLeft {
  left: 10px;
}

#rotateRight {
  right: 10px;
}

#landingVideo {
  position: absolute;
  top: 0;
  left: 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;
}

