/* Zeminsan — Scroll Line Animation Styles */

/* ── Canvas overlay ─────────────────────────────────── */
#zl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
  display: block;
}

/* ── Container stacking above canvas ────────────────── */
/* canvas z-index:2 → containers z-index:3 */
.container {
  position: relative;
  z-index: 3;
}

/* ── Mobile / reduced-motion: hide canvas ───────────── */
@media (max-width: 899px) {
  #zl-canvas { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  #zl-canvas { display: none !important; }
}
