* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

body,
html {
	height: 100%;
}

.page {
	position: relative;
	width: 100%;
	height: 100dvh;
	background: url("/img/bg.png") center/cover no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(3px);
}

.content {
	position: relative;
	text-align: center;
	max-width: 480px;
	color: #fff;
	z-index: 2;
}

.main-text {
	font-size: 1.5rem;
	margin-bottom: 30px;
	line-height: 1.4;
	color: #ffffff;
}

.btn {
	display: inline-block;
	background: #ffffff;
	color: #003366;
	font-weight: bold;
	padding: 12px 28px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 1.2rem;
	margin-bottom: 25px;
	transition: 0.25s;
}

.btn:hover {
	opacity: 0.85;
}

.privacy-link {
	position: absolute;
	bottom: 1rem;
	display: inline-block;
	color: #ffffff;
	font-size: 0.95rem;
	text-decoration: underline;
	opacity: 0.8;
	transition: 0.2s;
}

.privacy-link:hover {
	opacity: 1;
	text-decoration: none;
}
