* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: #000;
}

.container {
	width: 100%;
	max-width: 600px;
	text-align: center;
	padding: 30px;
}

.profile {
	margin-bottom: 30px;
}

.profile-image {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 4px solid #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 15px;
	object-fit: cover;
}

.profile-name {
	font-size: 24px;
	color: #ffffff;
}

.profile-description {
	color: #ffffff;
	margin-bottom: 20px;
	font-size: 16px;
}

.links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.custom-icon {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.link-item {
	width: 100%;
	padding: 15px;
	border-radius: 15px;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.link-style-default {
	background: #000000b8;
	color: #ffffff;
}

.link-style-default:hover {
	background: #212121b8;
}

.link-style-modern {
	background: #2563eb;
	color: white;
	border: none;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.link-style-modern:hover {
	background: #1d4ed8;
	transform: translateY(-2px);
}

.link-style-gradient {
	background: linear-gradient(135deg, #6366f1, #a855f7);
	color: white;
	border: none;
}

.link-style-gradient:hover {
	background: linear-gradient(135deg, #4f46e5, #9333ea);
}

.link-style-outline {
	background: transparent;
	border: 2px solid #3b82f6;
	color: #3b82f6;
}

.link-style-outline:hover {
	background: #3b82f6;
	color: white;
}

.link-style-minimal {
	background: transparent;
	border-bottom: 2px solid #9ca3af;
	border-radius: 0;
	color: #4b5563;
}

.link-style-minimal:hover {
	border-bottom-color: #1f2937;
	color: #1f2937;
}

.link-item i,
.link-item .custom-icon {
	font-size: 1.25rem;
	width: 1.5rem;
	height: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.link-item .custom-icon {
	object-fit: contain;
}

@media (max-width: 480px) {
	.container {
		padding: 20px;
	}

	.profile-image {
		width: 100px;
		height: 100px;
	}

	.profile-name {
		font-size: 20px;
	}

	.profile-description {
		font-size: 14px;
	}
}

@media (prefers-color-scheme: dark) {
	body[style*="background-image"] .container {
		background-color: rgba(0, 0, 0, 0.7);
	}

	body[style*="background-image"] .profile-name {
		color: #fff;
	}

	body[style*="background-image"] .profile-description {
		color: #e5e5e5;
	}
}

.fa-instagram {
	background: -webkit-linear-gradient(#833AB4, #FD1D1D, #FCB045);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.content-bg {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transform: scale(1.1);
	z-index: -1;
	opacity: 0.5;
}

.link-item-left {
	display: flex;
	gap: 5px;
	font-size: 16px;
}

.link-item-right i {
	color: white;
}

.link-item-left i{
	width: 30px;
}

.link-item-left img{
	width: 30px !important;!i;!;
}

.fa-discord {
    color: #7289DA;
}

.fa-youtube {
    color: #FF0000;
}