
body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	background: linear-gradient(120deg, #f5f7fa 0%, #a1b9df 100%);
	font-family: 'Montserrat', Arial, sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
}

.preview-container {
	width: 100vw;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.preview-card {
	background: #f9fafb;
	border-radius: 20px;
	box-shadow: 0 8px 36px 0 rgba(60, 80, 180, 0.13);
	padding: 2.5rem 2.5rem 2rem 2.5rem;
	text-align: center;
	margin-bottom: 0;
	max-width: 700px;
	transition: box-shadow 0.2s, background 0.2s;
	border: 1.5px solid #e3e6ee;
}
.preview-card:hover {
	box-shadow: 0 14px 48px 0 rgba(60, 80, 180, 0.18);
	background: #f5f7fa;
}


.preview-title-group {
	margin-bottom: 0.5rem;
}
.welcome-title {
	font-size: 2.1rem;
	font-weight: 700;
	color: #1a223f;
	margin-bottom: 0.1rem;
	letter-spacing: 1px;
	line-height: 1.15;
}
.preview-title-inline {
	color: #5e8fff;
	font-size: 2.1rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin-left: 0.3rem;
}


.preview-lead {
	color: #3a4668;
	font-size: 1.13rem;
	margin-bottom: 2rem;
	font-weight: 500;
}
.preview-btn {
	display: inline-block;
	background: linear-gradient(90deg, #5e8fff 0%, #7fd7ff 100%);
	color: #fff;
	font-weight: 700;
	padding: 0.7rem 2.2rem;
	border-radius: 8px;
	text-decoration: none;
	font-size: 1.08rem;
	box-shadow: 0 2px 8px 0 rgba(60, 80, 180, 0.09);
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	border: none;
}
.preview-btn:hover {
	background: linear-gradient(90deg, #1a223f 0%, #5e8fff 100%);
	color: #fff;
	box-shadow: 0 4px 16px 0 rgba(60, 80, 180, 0.13);
}
.preview-footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100vw;
	background: #1a223f;
	color: #fff;
	font-size: 1rem;
	letter-spacing: 1px;
	padding: 1rem 1.2rem 1rem 1.2rem;
	box-shadow: 0 -2px 16px 0 rgba(60, 80, 180, 0.10);
	z-index: 100;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.footer-left {
	flex: 1 1 0;
	min-width: 0;
	text-align: left;
	padding-left: 0.2rem;
}
.footer-right {
	flex: 1 1 0;
	min-width: 0;
	text-align: right;
	padding-right: 2.2rem;
}
.footer-center {
	flex: 0 1 auto;
	text-align: center;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 0 auto;
}
.footer-link {
	color: #7fd7ff;
	text-decoration: none;
	font-weight: 700;
	transition: color 0.2s;
	padding-left: 0.1rem;
}
.footer-link:hover {
	color: #5e8fff;
	text-decoration: underline;
}

@media (max-width: 600px) {
	.preview-footer {
		flex-direction: column;
		padding: 0.7rem 1rem 0.7rem 1rem;
		font-size: 0.98rem;
	}
	.footer-left, .footer-center, .footer-right {
		flex: unset;
		min-width: unset;
		text-align: center;
		margin: 0.2rem 0;
		padding-left: 0;
	}
	.footer-center {
		margin: 0.2rem 0;
	}
}
