
* {
  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;
}

@media (max-width: 768px) {
  .hotspot {
    width: 70vw;
    height: 18vh;
  }
}

@media (max-width: 768px) {
  .hotspot-content {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .hotspot-content video,
  .hotspot-content img {
    opacity: 0.85;
    mix-blend-mode: normal;
  }
}

@media (max-width: 768px) {
  .play-toggle {
    bottom: 4rem;
    right: 1rem;
  }
}