html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

body.cursor-hidden {
  cursor: none;
}

#stage {
  width: 1920px;
  height: 1080px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  background: #000;
}

#left {
  position: absolute;
  left: 0;
  top: 0;
  width: 1200px;
  height: 1080px;
  background: #000;
  overflow: hidden;
}

#right {
  position: absolute;
  left: 1200px;
  top: 0;
  width: 720px;
  height: 1080px;
  background: #000;
  overflow: hidden;
}

.panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}

.panel-img.visible {
  opacity: 1;
}

#featured {
  position: absolute;
  inset: 0;
  width: 1920px;
  height: 1080px;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease-in-out;
  z-index: 10;
}

#featured.visible {
  opacity: 1;
}

#featured-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
