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

body {
	background: linear-gradient(135deg, #0f0c29 0%, #1a1338 50%, #24183c 100%);
	min-height: 100vh;
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
		Cantarell, sans-serif;
	color: #e0e0ff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.container {
	max-width: 600px;
	width: 100%;
}

.banner {
	width: 100%;
	height: 200px;
	border-radius: 20px;
	background-image: url("../../assets/gifs/banner.gif");
	background-size: cover;
	background-position: center;
	margin-bottom: -60px;
	position: relative;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
}

.avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-image: url("../../assets/gifs/pfp.gif");
	background-size: cover;
	background-position: center;
	margin: 0 auto 20px;
	border: 4px solid #1a1338;
	box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
}

h1 {
	font-size: 32px;
	margin-bottom: 8px;
	background: linear-gradient(135deg, #a78bfa 0%, #c084fc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.bio {
	color: #b4b4d4;
	font-size: 16px;
}

.links {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.link-card {
	background: rgba(139, 92, 246, 0.1);
	border: 1px solid rgba(167, 139, 250, 0.2);
	border-radius: 20px;
	padding: 20px 24px;
	text-decoration: none;
	color: #e0e0ff;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 16px;
	position: relative;
	overflow: hidden;
}

.link-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(167, 139, 250, 0.1) 0%,
		rgba(139, 92, 246, 0.1) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.link-card:hover {
	transform: translateY(-4px);
	border-color: rgba(167, 139, 250, 0.5);
	box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.link-card:hover::before {
	opacity: 1;
}

.link-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
	z-index: 1;
}

.link-icon svg {
	width: 24px;
	height: 24px;
	fill: white;
}

.link-content {
	flex: 1;
	z-index: 1;
}

.link-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 4px;
}

.link-description {
	font-size: 14px;
	color: #b4b4d4;
}

.link-arrow {
	font-size: 32px;
	color: #a78bfa;
	z-index: 1;
	transition:
		transform 0.3s ease,
		color 0.3s ease;
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.link-card:hover .link-arrow {
	transform: translateX(6px);
	color: #c084fc;
}

@media (max-width: 640px) {
	h1 {
		font-size: 28px;
	}

	.link-card {
		padding: 16px 20px;
	}

	.link-icon {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.link-icon svg {
		width: 20px;
		height: 20px;
	}

	.link-arrow {
		font-size: 24px;
	}
}
