html,
body {
	margin: 0;
	width: 100%;
	height: 100%;
}

#app,
.app-main {
	width: 100%;
	min-height: 100vh;
}

.timi-splash {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at 18% 18%, rgba(20, 184, 166, 0.18) 0, transparent 28%),
		radial-gradient(circle at 82% 28%, rgba(59, 130, 246, 0.18) 0, transparent 32%),
		linear-gradient(135deg, #061826 0%, #0b1f33 52%, #101827 100%);
	overflow: hidden;
}

.timi-splash::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
	pointer-events: none;
}

.timi-splash-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 260px;
	padding: 36px 42px 34px;
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 8px;
	background: rgba(8, 20, 33, 0.58);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
	backdrop-filter: blur(18px);
}

.timi-splash-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
	border: 1px solid rgba(125, 211, 252, 0.24);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.5);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.timi-splash-logo {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.timi-splash-title {
	margin: 0;
	color: #e5eefb;
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 650;
	letter-spacing: 0;
	line-height: 1.2;
	text-shadow: 0 8px 28px rgba(56, 189, 248, 0.16);
}

.timi-splash-sub {
	margin: 10px 0 0;
	color: rgba(203, 213, 225, 0.68);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.timi-splash-spinner {
	margin-top: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.timi-splash-ring {
	width: 24px;
	height: 24px;
	border: 2px solid rgba(148, 163, 184, 0.22);
	border-top-color: #38bdf8;
	border-radius: 50%;
	animation: timiSplashRotate 0.85s linear infinite;
}

@keyframes timiSplashRotate {
	to {
		transform: rotate(360deg);
	}
}
