@import url("zenvix-article-design.css");
@import url("zenvix-article-dark.css");

/*
 * REPORT MODE ambient background for real article pages. Same cinematic
 * material/lighting language as the homepage, at far lower intensity — this
 * must never compete with reading. It sits behind the theme's normal
 * header/content/sidebar, fades toward the page edges via a mask, and never
 * intercepts input. The imported article stylesheet handles the shared
 * editorial presentation for every current and future single post.
 */
.zl-report-scene {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: min(52vh, 560px);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.16;
  background: #03060c;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
}

.zl-report-scene canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .zl-report-scene {
    opacity: 0.28;
  }
}

.zl-report-scene.zl-cinematic-failed {
  opacity: 0.2;
}
