:root { --navy: #071824; }
* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--navy);
}
.event-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.event-poster {
  width: min(100vw, 576px, calc(100dvh * 0.5625));
  max-width: 100%;
  position: relative;
  line-height: 0;
  box-shadow: 0 0 80px rgba(0,0,0,.35);
}
.event-poster-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100dvh;
  object-fit: contain;
  vertical-align: top;
}
.event-hotspot {
  position: absolute;
  z-index: 6;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 14px;
  pointer-events: none;
}
.event-hotspot.enabled {
  pointer-events: auto;
  cursor: pointer;
}
.event-hotspot.enabled:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  background: rgba(255,255,255,.08);
}
.event-video-player {
  position: absolute;
  z-index: 7;
  border: 0;
  background: #000;
}
