.hero-container {
  width: 100%;
  min-height: 100dvh;
  background: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video, .hero-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-static {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  z-index: 2;
}

.hero-static.visible {
  opacity: 1;
}

.hero-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  max-width: 177.777dvh;
  max-height: 100dvh;
  z-index: 3;
}

.hero-hitboxes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}

.hero-hitboxes.active {
  opacity: 1;
  pointer-events: auto;
}

.hitbox {
  position: absolute;
  display: block;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hitbox:hover, .hitbox:focus {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  outline: none;
}

.hitbox-moments {
  left: 4%;
  top: 15%;
  width: 29%;
  height: 70%;
}

.hitbox-assist {
  left: 35.5%;
  top: 15%;
  width: 29%;
  height: 70%;
}

.hitbox-studio {
  left: 67%;
  top: 15%;
  width: 29%;
  height: 70%;
}

.scroll-indicator {
  position: absolute;
  bottom: 2dvh;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 4;
  text-align: center;
  font-family: sans-serif;
  letter-spacing: 0.05em;
}

.scroll-indicator::after {
  content: '↓';
  display: block;
  margin-top: 5px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(5px); }
  60% { transform: translateY(3px); }
}

.scroll-indicator.visible {
  opacity: 1;
}

/* Background filler for mobile */
.hero-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px) brightness(0.3);
  z-index: 0;
}

.hero-hotspots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  z-index: 10;
}
.hero-hotspots.active {
  opacity: 1;
  pointer-events: auto;
}
.hotspot-poly {
  fill: transparent;
  stroke: transparent;
  stroke-width: 0;
}
.hotspot-link {
  outline: none;
  cursor: pointer;
}
.panel-visual {
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease, filter 0.4s ease;
}
.link-moments:hover ~ .visual-moments,
.link-moments:focus ~ .visual-moments,
.link-sites:hover ~ .visual-sites,
.link-sites:focus ~ .visual-sites,
.link-assist:hover ~ .visual-assist,
.link-assist:focus ~ .visual-assist,
.link-studio:hover ~ .visual-studio,
.link-studio:focus ~ .visual-studio {
  opacity: 1;
  transform: scale(1.03) translateY(-4px);
  filter: brightness(1.1) drop-shadow(0 0 20px rgba(100, 150, 255, 0.4));
}
/* Mobile touch effect */
@media (max-width: 768px) {
  .link-moments:active ~ .visual-moments,
  .link-sites:active ~ .visual-sites,
  .link-assist:active ~ .visual-assist,
  .link-studio:active ~ .visual-studio {
    opacity: 1;
    transform: scale(0.98);
    filter: brightness(1.2);
    transition: transform 0.1s, opacity 0.1s, filter 0.1s;
  }
}
