body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: #fff;
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	text-align: center;
}
.container {
	max-width: 500px;
	padding: 20px;
}
.logo {
	font-size: 42px;
	font-weight: bold;
	color: #C30040;
	margin-bottom: 30px;
	letter-spacing: 2px;
}
.loader {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #C30040;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 20px auto;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
h1 {
	font-size: 22px;
}
p {
	color: #666;
	font-size: 14px;
	line-height: 1.5;
}