/* API Kolkata Cinematic Preloader — overlay styles */

.akp-overlay {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	background: #0a0a0d;
	opacity: 1;
	transition: opacity 0.7s ease;
}

.akp-overlay.akp-fade-out {
	opacity: 0;
	pointer-events: none;
}

.akp-wrap {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	width: 100dvw;
	height: 100dvh;
}

.akp-wrap canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.akp-skip {
	position: absolute;
	right: 26px;
	bottom: 26px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.85);
	font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	padding: 9px 18px;
	border-radius: 100px;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.4s ease, background 0.2s ease, transform 0.2s ease;
}

.akp-skip.akp-visible {
	opacity: 1;
}

.akp-skip:hover {
	background: rgba(255, 255, 255, 0.16);
	transform: translateY(-1px);
}

body.akp-locked {
	overflow: hidden;
}
