.scrollzee-wrapper {
	position: relative;
	width: 100%;
}

.scrollzee-sticky-inner {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: #000;
}

.scrollzee-video {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.scrollzee-canvas {
	display: block;
	width: 100%;
	height: 100%;
}

.scrollzee-poster {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* When sticky is disabled per-instance, fall back to a normal in-flow block */
.scrollzee-wrapper[data-sticky="0"] .scrollzee-sticky-inner {
	position: relative;
	height: 100vh;
}
