/* ─────────────────────────────────────────
   SPLASH.CSS — Splash screen styles
   ───────────────────────────────────────── */

#splash {
    position: fixed;
    inset: 0;
    max-width: 480px;
    margin: 0 auto;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
    transition: opacity 0.6s ease;
    background: url(../../assets/images/bgb.jpg);
}

#splash.hide {
	opacity: 0;
	pointer-events: none;
}

.splash-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
	padding: 40px 24px;
	position: relative;
	width: 100%;
	overflow: hidden;
}

.splash-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.8;
	pointer-events: none;
}

.splash-title {
    font-size: 26px;
    font-weight: 700;
    color: #0f0173;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
    margin-bottom: 0 !important;
}

.splash-logo {
	width: 160px;
	height: 160px;
	object-fit: contain;
	position: relative;
	z-index: 1;
}

.splash-foot {
	width: 100%;
	background: #0f0173;
	color: #fff;
	text-align: center;
	padding: 18px 0 16px;
}

.splash-foot strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 3px;
}

.splash-foot span {
	font-size: 12px;
	opacity: 0.6;
}
