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

body,
html {
	height: 100%;
}

.page {
	position: relative;
	width: 100%;
	height: 100vh;
	--x-0: 13%;
	--y-0: 16%;
	--c-0: hsla(265, 73%, 45%, 1);
	--y-1: 89%;
	--x-1: 14%;
	--c-1: hsla(345, 88%, 31%, 0.91);
	--c-2: hsla(264, 73%, 3%, 1);
	--x-2: 23%;
	--y-2: 23%;
	background-color: hsla(272, 86%, 9%, 1);
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1288 1288' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
		radial-gradient(
			circle at var(--x-0) var(--y-0),
			var(--c-0) var(--s-start-0),
			transparent var(--s-end-0)
		),
		radial-gradient(
			circle at var(--x-1) var(--y-1),
			var(--c-1) var(--s-start-1),
			transparent var(--s-end-1)
		),
		radial-gradient(
			circle at var(--x-2) var(--y-2),
			var(--c-2) var(--s-start-2),
			transparent var(--s-end-2)
		);
	animation: hero-gradient-animation 2s linear infinite alternate;
	background-blend-mode: overlay, overlay, normal, normal;
	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;
	display: flex;
	flex-direction: column;
}

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

.btn {
	position: relative;
	display: inline-block;
	padding: 16px 32px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	font-size: 1.1rem;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.4s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.4),
			transparent
		);
		transition: 0.5s;
	}

	&:hover {
		background: rgba(255, 255, 255, 0.2);
		transform: translateY(-3px); /* Легкий підйом */
		box-shadow: 0 10px 25px rgba(73, 9, 82, 0.6); /* Тінь кольору фону */
		border-color: rgba(255, 255, 255, 0.4);
		text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);

		&::before {
			left: 100%;
		}
	}

	&:active {
		transform: translateY(-1px);
	}
}

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

.privacy-link:hover {
	opacity: 1;
}

.links {
	position: absolute;
	bottom: 20px;
	z-index: 2;
	font-size: 16px;
	color: #fff;

	a {
		text-decoration: none;
		margin: 0 8px;

		&:hover {
			text-decoration: underline;
		}
	}
}

@keyframes hero-gradient-animation {
	0% {
		--x-0: 13%;
		--y-0: 16%;
		--s-start-0: 9%;
		--s-end-0: 59%;
		--c-0: hsla(265, 73%, 45%, 1);
		--s-start-1: 9%;
		--s-end-1: 59%;
		--y-1: 89%;
		--x-1: 14%;
		--c-1: hsla(345, 88%, 31%, 0.91);
		--c-2: hsla(264, 73%, 3%, 1);
		--x-2: 23%;
		--y-2: 23%;
		--s-start-2: 2%;
		--s-end-2: 60%;
	}
	100% {
		--x-0: 95%;
		--y-0: 18%;
		--s-start-0: 4%;
		--s-end-0: 60%;
		--c-0: hsla(260, 85%, 32%, 1);
		--s-start-1: 4.5%;
		--s-end-1: 60%;
		--y-1: 47%;
		--x-1: 97%;
		--c-1: hsla(293, 68%, 43%, 1);
		--c-2: hsla(28, 87%, 37%, 1);
		--x-2: 92%;
		--y-2: 91%;
		--s-start-2: 4%;
		--s-end-2: 73%;
	}
}
@property --x-0 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 13%;
}
@property --y-0 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 16%;
}
@property --s-start-0 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 9%;
}
@property --s-end-0 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 59%;
}
@property --c-0 {
	syntax: "<color>";
	inherits: false;
	initial-value: hsla(265, 73%, 45%, 1);
}
@property --s-start-1 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 9%;
}
@property --s-end-1 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 59%;
}
@property --y-1 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 89%;
}
@property --x-1 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 14%;
}
@property --c-1 {
	syntax: "<color>";
	inherits: false;
	initial-value: hsla(345, 88%, 31%, 0.91);
}
@property --c-2 {
	syntax: "<color>";
	inherits: false;
	initial-value: hsla(264, 73%, 3%, 1);
}
@property --x-2 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 23%;
}
@property --y-2 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 23%;
}
@property --s-start-2 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 2%;
}
@property --s-end-2 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 60%;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
