html, body {
	height: 100%;
	background: #ECEAF6;
	justify-content: center;
	align-items: flex-start;
	font-family: 'Noto Sans KR', sans-serif;
}
.phone {
	background: var(--primary);
	border: 7px solid var(--primary);
	overflow: hidden;
	box-shadow: 0 40px 80px rgba(30,27,46,0.22);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}
.bg-circle1 {
	position: absolute;
	width: 300px; height: 300px;
	background: var(--accent);
	border-radius: 50%;
	top: -80px; right: -80px;
	opacity: 0.15;
}
.bg-circle2 {
	position: absolute;
	width: 200px; height: 200px;
	background: var(--accent-mid);
	border-radius: 50%;
	bottom: -60px; left: -60px;
	opacity: 0.12;
}
.content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	position: relative;
	z-index: 1;
	animation: fadeIn 0.8s ease;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
.logo-wrap {
	width: 100px; height: 100px;
	background: rgba(108,99,214,0.2);
	border-radius: 32px;
	border: 1.5px solid rgba(108,99,214,0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 52px;
}
.app-name {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.5px;
	font-family: 'DM Sans', sans-serif;
}
.app-sub {
	font-size: 13px;
	color: #8B87A8;
	letter-spacing: 0.2px;
}

@keyframes loaderBounce {
	0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
	30% { transform: translateY(-8px); opacity: 1; }
}
.version {
	position: absolute;
	bottom: 40px;
	font-size: 11px;
	color: #4A4660;
	font-family: 'DM Sans', sans-serif;
}