/* ============ BOOT INTRO (disposable overlay) ============
   Everything boot-related lives here + boot.js.
   Disable: set enabled:false in the IID_BOOT config in index.html. */

/* Instant black cover while boot.js spins up (inline snippet adds .boot-hold) */
html.boot-hold::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #000;
}

html.boot-active {
  overflow: hidden;
}

.boot-layer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boot-layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boot-layer.boot-white {
  background: #fff;
}

.boot-skip {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  padding: 8px 18px;
  font: 500 12px/1 var(--mono, monospace);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8e6e1;
  background: rgba(11, 11, 12, 0.55);
  border: 1px solid rgba(232, 230, 225, 0.35);
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, border-color 0.2s ease;
}

.boot-skip.is-visible {
  opacity: 1;
}

.boot-skip:hover {
  border-color: #e11e24;
}

/* The floating wolf mark doubles as a replay trigger */
.boot-replay-trigger {
  cursor: pointer;
}

