.opening-comic {
  position: absolute;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #100b08;
  touch-action: none;
}
.opening-comic[hidden] { display: none; }
.opening-comic-frame {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 16 / 9;
  image-rendering: pixelated;
}
.opening-comic-skip {
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-width: 78px;
  min-height: 44px;
  padding: 6px 14px;
  border: 3px solid #2b1b14;
  border-radius: 0;
  box-shadow: inset 0 0 0 2px #f0c27a, 3px 3px 0 #2b1b14;
  background: #67301b;
  color: #f0c27a;
  font: inherit;
  font-size: 18px;
  cursor: pointer;
}
.opening-comic-skip:active { transform: translate(2px, 2px); box-shadow: inset 0 0 0 2px #f0c27a; }
.opening-comic-skip:focus-visible { outline: 3px solid #f4a33a; outline-offset: 3px; }
