* { box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #0d0d0b;
}

.stage {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
}

.kiosk {
  position: relative;
  width: min(100vw, calc(100vh * 1.4155597723));
  aspect-ratio: 1492 / 1054;
  overflow: hidden;
  background: #111;
}

.kiosk-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  cursor: pointer;
  border-radius: 2px;
}

.hotspot:focus-visible {
  outline: 3px solid #f4d35e;
  outline-offset: 2px;
}

/* Coordinates match the approved 1492 × 1054 artwork. */
.trailer {
  left: 26.7%;
  top: 30.6%;
  width: 29.1%;
  height: 21.6%;
}

.press-kit {
  left: 59.8%;
  top: 32.4%;
  width: 10.2%;
  height: 2.0%;
}

.stills {
  left: 59.8%;
  top: 34.5%;
  width: 12.3%;
  height: 2.0%;
}

.response-nav {
  left: 59.8%;
  top: 36.5%;
  width: 9.8%;
  height: 2.0%;
}

.contact {
  left: 59.8%;
  top: 38.6%;
  width: 7.0%;
  height: 2.0%;
}

.response-panel {
  left: 58.7%;
  top: 63.6%;
  width: 15.9%;
  height: 2.2%;
}

@media (max-aspect-ratio: 1492 / 1054) {
  .kiosk {
    width: 100vw;
    height: auto;
  }
}

@media (min-aspect-ratio: 1492 / 1054) {
  .kiosk {
    width: auto;
    height: 100vh;
  }
}
