.maker-container {
	position: relative;
	width: 100%;
    background: #000;
}
.maker-scrolling-container {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}
.maker-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	pointer-events: none;
}
.maker-scroll-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
	pointer-events: none;
}
.maker-overlay-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	z-index: 10;
	pointer-events: none;
}
.maker-overlay-inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 900px;
	margin: auto;
	padding: 30px;
    align-items: center;
    text-align: center;
}
.maker-overlay-inner * {
	pointer-events: auto;
}
.maker-title {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 20px;
	line-height: 1.1;
	text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.maker-desc {
	font-size: clamp(1.1rem, 2vw, 1.6rem);
	color: #e0e0e0;
	margin-bottom: 30px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.maker-btn {
	display: inline-block;
	padding: 16px 40px;
	background-color: #3b82f6;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.maker-btn:hover {
	transform: translateY(-3px);
	background-color: #2563eb;
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
}
