* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Radio Canada", sans-serif;
}

.main {
	width: 100%;
	min-height: 100dvh;
	height: 100%;
	padding-inline: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-image: url("/img/bg-step1.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
@media screen and (max-width: 998px) {
	.main {
		background-image: url("/img/bg-step1-dec.png");
	}
}
@media screen and (max-width: 756px) {
	.main {
		background-image: url("/img/bg-step1-tablet.png");
	}
}
@media screen and (max-width: 556px) {
	.main {
		background-image: url("/img/bg-step1-mob.png");
	}
}

.hero {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hero__title {
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	color: #ffffff;
}

.hero__description {
	font-size: 24px;
	line-height: 1.2;
	text-align: center;
	color: #ffffff;
}

.flare {
	position: absolute;
	top: 0;
	height: 100%;
	width: 25px;
	transform: skewX(-45deg);
	animation: flareAnimation;
	left: 80%;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.1),
		rgba(255, 255, 255, 0.4)
	);
	animation: flareAnimation 3s infinite linear;
}

@keyframes flareAnimation {
	0% {
		left: 10%;
	}
	100% {
		left: 80%;
	}
}
.hero__button,
.hero__button:link,
.hero__button:visited,
.hero__button:hover,
.hero__button:active {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #e11229;
	color: #ffffff;
	text-align: center;
	font-weight: bold;
	padding: 14px 20px;
	font-size: 18px;
	max-width: 500px;
	width: 100%;
	text-decoration: none;
	border-radius: 8px;
	margin: 30px 0;
	text-transform: uppercase;
	box-shadow: 0 0 15px rgba(225, 18, 41, 0.7), 0 0 30px rgba(225, 18, 41, 0.4);
	transition: background-color 0.3s ease, transform 0.2s ease,
		box-shadow 0.3s ease;
	animation: pulseGlow 1.5s infinite;
}

.hero__button:hover {
	transform: scale(1.05);
	box-shadow: 0 0 25px rgba(225, 18, 41, 1), 0 0 45px rgba(225, 18, 41, 0.6);
}

@keyframes pulseGlow {
	0% {
		box-shadow: 0 0 15px rgba(225, 18, 41, 0.7), 0 0 30px rgba(225, 18, 41, 0.4);
		transform: scale(1);
	}
	50% {
		box-shadow: 0 0 25px rgba(225, 18, 41, 1), 0 0 45px rgba(225, 18, 41, 0.6);
		transform: scale(1.03);
	}
	100% {
		box-shadow: 0 0 15px rgba(225, 18, 41, 0.7), 0 0 30px rgba(225, 18, 41, 0.4);
		transform: scale(1);
	}
}

.blur-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100dvw;
	height: 100dvh;
	backdrop-filter: blur(8px);
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 1;
	pointer-events: none;
}

.legal {
	font-size: 18px;
	text-align: center;
	margin-top: 20px;
	position: absolute;
	z-index: 1;
	bottom: 5%;

	a,
	span {
		color: #fff;
		text-decoration: none;
	}

	a {
		padding: 4px;
		border-radius: 4px;
		transition: background-color 0.3s;

		&:hover {
			background-color: #e11229;
		}
	}
}

@media (max-width: 900px) {
	.hero__button {
		font-size: 25px;
		padding: 16px 16px;
	}
}
@media (max-width: 685px) {
	.hero__button {
		font-size: 20px;
	}
}
@media (min-width: 400px) {
	.hero__button {
		width: 300px;
	}
}
@media (min-width: 600px) {
	.hero__button {
		width: 400px;
	}
}
@media (min-width: 744px) {
	.hero__button {
		width: 500px;
		font-size: 28px;
	}
}
@media (min-width: 1440px) {
	.hero__button {
		width: 800px;
		font-size: 30px;
	}
}
