
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050608;
  color: white;
  overflow: hidden;
}



.experience {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.video-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  background: black;
}

#mainVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-frame {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 8;
  width: min(260px, calc(100vw - 4rem));
  padding: 0.8rem;
  background: rgba(5, 6, 8, 0.45);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
}

.intro-toggle {
  background: transparent;
  border: 0;
  color: white;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
}

.intro-content {
  display: none;
  margin-top: 0.8rem;
}

.intro-frame.is-open .intro-content {
  display: block;
}

.eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.intro-frame h1 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.intro-frame p {
  font-size: 0.8rem;
  line-height: 1.4;
}

.hotspot-layer,
.panel-layer {
  position: absolute;
  inset: 0;
}

.hotspot-layer {
  z-index: 4;
}

.panel-layer {
  z-index: 6;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  width: 30vw;
  height: 26vh;
  padding: 0rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(2px);
  cursor: crosshair;
}

.hotspot.is-active {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}

.hotspot-content {
  display: block;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: left;
}


.hotspot-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 70%;
  mix-blend-mode: overlay;
}

.hotspot-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 70%;
  mix-blend-mode: overlay;
}

.panel {
  position: absolute;
  width: 30vw;
  height: 26vh;
  padding: 1rem;
  background: rgba(0,0,0,0.45);
  color: white;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  display: none;
}

.panel.is-open {
  display: block;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}



.panel-level {
  display: none;
}

.panel-level.active {
  display: block;
}

.close-panel {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.play-toggle {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: rgba(5, 6, 8, 0.55);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(14px);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}
.mobile-instruction {
  display: none;
}

.credits-toggle {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: rgba(5, 6, 8, 0.55);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(14px);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
   max-height: 45vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.credits-frame {
  display: none;
  position: absolute;
  left: 2rem;
  bottom: 5rem;
  z-index: 21;
  width: 260px;
  max-height: 45vh;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(5, 6, 8, 0.65);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  font-size: 0.75rem;
  line-height: 1.5;
}

.credits-frame.is-open {
  display: block;
}

@media (max-width: 768px) {
  .credits-frame {
    left: 1rem;
    right: 1rem;
    bottom: 9rem;
    width: auto;
    max-height: 42vh;
     overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 768px) {
  .credits-toggle {
    left: 1rem;
    bottom: 5.5rem;
    z-index: 30;
  }
}

@media (max-width: 768px) {
  .desktop-instruction {
    display: none;
  }

  .mobile-instruction {
    display: block;
  }
}
@media (max-width: 768px) {
  .hotspot {
    width: 48vw;
    height: 20vh;
  }

 .intro-frame {
    top: 1.5rem;
    right: 1rem;
    width: calc(100vw - 2rem);
    z-index: 30;
  }

  .hotspot-content {
    padding: 0rem;
    font-size: 0.9rem;
    overflow: hidden;
    transform: translateY(-2%);
    
  }

 .hotspot-content video,
  .hotspot-content img {
    opacity: 0.85;
    mix-blend-mode: lighten;
    overflow: hidden;
  }

  .play-toggle {
     right: 1rem;
    bottom: 5.5rem;
    z-index: 30;
  }

    .hotspot[data-panel="hotspot-1"] {
    top: 15% !important;
    left: 8% !important;
  }

  .hotspot[data-panel="hotspot-2"] {
    top: 38% !important;
    left: 44% !important;
  }

  .hotspot[data-panel="hotspot-3"] {
    top: 61% !important;
    left: 16% !important;
  }

}


