* {
	user-select: none;
}

html,
body {
	overflow: hidden;
	background-color: #000;
}

body {
	margin: 0;
	position: fixed;
	width: 100%;
	height: 100%;
}

canvas {
	width: 100%;
	height: 100%;
}
.wrap {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	color: #fff;
	pointer-events: none;
	text-align: center;
	mix-blend-mode: difference;
}
.main {
	position: absolute;
	top: 25%;
	left: 0;
	right: 0;
}
.social-links {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	pointer-events: auto;
	z-index: 2;
}

.social-btn {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-decoration: none;
	font-size: 1.8rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow:
		0 8px 24px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(8px);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}

.social-btn:hover {
	transform: translateY(-4px) scale(1.04);
	box-shadow:
		0 14px 28px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.16);
}

.social-btn:active {
	transform: translateY(-1px) scale(0.98);
}

.social-btn.telegram:hover {
	color: #2aabee;
}

.social-btn.github:hover {
	color: #ffffff;
}

.social-btn.discord:hover {
	color: #5865f2;
}

.social-btn:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 3px;
}

h1 {
	color: #fff;
	text-align: center;
	font-family: sans-serif;
	font-size: 8em;
	animation: animate 0.5s linear infinite;
	margin: 0;
}
footer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px;
}
footer a {
	pointer-events: auto;
	color: #fff;
}
footer span {
	font-size: 12px;
}
@keyframes animate {
	0%,
	100% {
		text-shadow:
			-1.5px -1.5px 0 #0ff,
			1.5px 1.5px 0 #f00;
	}

	25% {
		text-shadow:
			1.5px 1.5px 0 #0ff,
			-1.5px -1.5px 0 #f00;
	}

	50% {
		text-shadow:
			1.5px -1.5px 0 #0ff,
			1.5px -1.5px 0 #f00;
	}

	75% {
		text-shadow:
			-1.5px 1.5px 0 #0ff,
			-1.5px 1.5px 0 #f00;
	}
}
@media screen and (max-width: 767px) {
	h1 {
		font-size: 4.5rem;
	}

	.social-links {
		top: 54%;
		gap: 0.75rem;
	}

	.social-btn {
		width: 54px;
		height: 54px;
		font-size: 1.5rem;
	}
}
.site-footer {
	padding: 1.2rem 2rem;
	color: #fff;
}

.footer-content {
	display: flex;
	gap: 0.8rem;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
}

.github-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	text-decoration: none;
	transition: all 0.2s ease;
}

.github-link:hover {
	transform: translateY(-1px);
}

.github-icon {
	flex-shrink: 0;
}

.divider {
	user-select: none;
}

@media (max-width: 640px) {
	.footer-content {
		flex-wrap: wrap;
		gap: 0.8rem;
		justify-content: center;
	}

	.divider {
		display: none;
	}

	.github-text {
		display: none;
	}

	.github-icon {
		width: 20px;
		height: 20px;
	}
}
