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

body {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	position: relative;
	height: 100vh;
	z-index: 1;
	padding: 10px;
}

body::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("/img/bg.webp") no-repeat center / cover;
	z-index: -1;
	filter: blur(4px);
}

.title {
	max-width: 600px;
	font-weight: 700;
	font-size: 32px;
	color: #fff;
	text-align: center;
	margin-bottom: 20px;
}

.link {
	position: relative;
	background-color: #eb0000;
	text-align: center;
	padding: 16px 20px;
	display: block;
	font-size: 32px;
	font-weight: 700;
	border-radius: 16px;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	max-width: 400px;
	width: 100%;
	transform: scale(1);
	transition: transform 0.4s ease, background-color 0.4s ease;

	&:hover {
		transform: scale(1.02);
		background-color: rgb(206, 6, 6);
	}
}

.links {
	position: absolute;
	bottom: 20px;
	left: 50%;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	transform: translate(-50%, -20px);

	a {
		text-decoration: none;
		color: #fff;
		font-size: 20px;
		font-weight: 700;
	}
}

.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%;
	}
}

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