.teddy-hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111111;
  cursor: pointer;
  isolation: isolate;
  display: block;
}

.teddy-hero .th-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #111111;
  z-index: 2;
}

.teddy-hero .th-hidden-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.001;
  visibility: visible;
  pointer-events: none;
  z-index: 1;
  transform: translateZ(0);
}

.teddy-hero.th-fit-cover .th-hidden-video {
  object-fit: cover;
}

.teddy-hero .th-start-audio {
  display: none;
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.75);
  color: #fff;
  cursor: pointer;
}

.teddy-hero .th-debug {
  display: none;
  position: absolute;
  z-index: 7;
  top: 10px;
  left: 10px;
  padding: 6px 9px;
  border-radius: 6px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font: 12px/1.3 monospace;
}

.teddy-hero .th-debug:not(:empty) {
  display: block;
}
