html {
	height: 100%;
	margin: 0;
}

body {
	height: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
	font-family: 'Poppins', sans-serif;
	color: #0f3c6a;
	background: #0f3c6a;
	overflow-x: hidden;
	text-align: center;
	min-height: 100vh;
}

main {
	flex: 1;
	display: flex;
	background: #a3d9f6;
	justify-content: center;
	align-items: center;
	text-align: center;
}

	main a {
		color: #0f3c6a;
		text-decoration: none;
		font-weight: bold;
	}

header {
	position: sticky;
	top: 0;
	z-index: 9999;
	padding: 15px 5%;
	background: #0f3c6a;
	color: #a3d9f6;
	backdrop-filter: blur(4px);
	box-shadow: 0 6px 10px -3px rgba(0, 0, 0, 0.5);
	opacity: 1;
	font-weight: bold;
	text-align: center;
}

	header p {
		font-size: 1.2rem;
		color: #a3d9f6;
	}

	header a {
		font-size: 1.2rem;
		color: #a3d9f6;
		text-decoration: none;
	}

footer {
	box-shadow: 0 -6px 10px -3px rgba(0, 0, 0, 0.5);
	z-index: 9999;
	width: 100%;
	text-align: center;
	padding: 20px 0 20px 0;
	background: #0f3c6a;
	color: #a3d9f6;
	font-size: 0.9rem;
}

	footer nav a {
		padding: 0 10px;
		border-left: 1px solid #a3d9f6;
		border-right: 1px solid #a3d9f6;
	}

	footer a {
		color: rgba(230, 230, 255, 1);
		text-decoration: none;
		font-weight: bold;
	}

h1, p {
	display: block;
	margin: 0 0 1em 0;
}

.page {
	height: 100%;
	width: 60%;
	background: rgba(230, 230, 255, 1);
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
	z-index: 1;
}

@media (max-width: 600px) {
	.page {
		width: 90%;
	}
}

.content {
	margin-left: 10%;
	margin-right: 10%;
	margin-top: 50px;
	margin-bottom: 50px;
}

.eula,
.gdpr,
.about,
.infos {
	text-align: left;
}

.cta {
	text-align: center;
	align-content: center;
	display: flex;
	justify-content: center;
}

.btn,
button {
	display: inline-block;
	background: black;
	color: #a3d9f6;
	border: none;
	border-radius: 10px;
	padding: 12px 20px;
	font-size: 1rem;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

	.btn:hover,
	button:hover {
		background: #0f3c6a;
		color: rgba(230, 230, 255, 1);
		transform: translateY(-2px);
		box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
	}

	.btn:active,
	button:active {
		transform: translateY(1px);
		box-shadow: 0 3px 7px rgba(0, 0, 0, 0.18);
	}


.about-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 1.2rem 10%;
}

	.about-divider .line {
		flex: 1;
		height: 1px;
		background: rgba(15,60,106,0.18);
	}

	.about-divider .dot {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: #a3d9f6;
		border: 2px solid #0f3c6a;
		flex-shrink: 0;
	}

#skyBg {
	position: fixed;
	top: 50px;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.sky-blob {
	position: absolute;
	pointer-events: none;
}

.sky-cloud {
	position: absolute;
	pointer-events: none;
	opacity: 0.9;
}