:root {
	color-scheme: light dark;
}

body {
	font-family: Arial, sans-serif;
	background-color: #f0f0f0;
	color: #222;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.container {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 400px;
	width: 100%;
}

.avatar {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
}

h1 {
	margin-bottom: 2rem;
	color: #333;
	font-size: 2rem;
}

.social-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}

.social-button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	color: #ffffff;
	font-weight: bold;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
	font-size: 1.1rem;
	width: 100%;
	border: none;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.social-button:hover {
	opacity: 0.8;
	transform: translateY(-2px);
}

.icon-container {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 2.5em;
	margin-right: 1rem;
}

.button-text {
	flex-grow: 1;
	text-align: left;
}

.twitch {
	background-color: #9146ff;
}

.youtube {
	background-color: #ff0000;
}

.twitter {
	background-color: #1da1f2;
}

.discord {
	background-color: #7289da;
}

@keyframes twinkle {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 1;
	}
}

.sparkle {
	display: inline-block;
	margin: 0 0.25rem;
	animation: twinkle 1.5s infinite;
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: #050608;
		color: #f9fafb;
	}

	.container {
		background-color: #111827;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
	}

	h1 {
		color: #f9fafb;
	}

	.social-button {
		color: #f9fafb;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
	}

	.social-button:hover {
		opacity: 0.9;
		transform: translateY(-2px);
	}

	.twitch {
		background-color: #7b3bdf;
	}

	.youtube {
		background-color: #e00000;
	}

	.twitter {
		background-color: #1a8cd8;
	}

	.discord {
		background-color: #5b6fb2;
	}
}