/* V2 Background Crossfade — full-bleed photo background behind the split card */

.bg-slideshow {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.bg-slide.is-active {
  opacity: 1;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, 0.6);
}

body.v2-bg {
  background: #14100a;
}

body.v2-bg main,
body.v2-bg footer {
  position: relative;
  z-index: 1;
}

body.v2-bg .top-strip {
  background: rgba(20, 14, 10, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  color: var(--paper);
}

body.v2-bg footer {
  color: rgba(253, 250, 243, 0.85);
}
