/* Ana sayfa #splash: tıklama ile gezinme yok (JS ile de engellenir) */
#splash a {
	pointer-events: none;
	cursor: default;
}

/* Ana sayfa .mue-splash-slides — tam ekran kapak döngüsü */
.mue-splash-slides {
	position: relative;
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	min-height: -webkit-fill-available;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
}

.mue-splash-slide {
	position: absolute;
	inset: 0;
	display: block;
	background-color: #1a1a1a;
	overflow: hidden;
	cursor: default;
	user-select: none;
	-webkit-user-select: none;
}

.mue-splash-slide .mue-splash-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.75s ease-in-out;
}

.mue-splash-slide.mue-active {
	z-index: 1;
}

.mue-splash-slide.mue-active .mue-splash-img {
	opacity: 1;
}

.mue-splash-slides.mue-splash-no-transition .mue-splash-img {
	transition: none !important;
}

@media (max-width: 767px) {
	.mue-splash-slides {
		padding-left: env(safe-area-inset-left, 0);
		padding-right: env(safe-area-inset-right, 0);
		box-sizing: border-box;
	}
}
