* {
	box-sizing:border-box;
	margin:0;
	padding:0
}
body {
	font-family: Inter,system-ui,sans-serif;
	background: linear-gradient(180deg,#0f1724,#07121a);
	color:#e6eef8;
	padding:24px;
}
.card {
	position:relative;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	background:rgba(255,255,255,0.03);
	border-radius:18px;
	padding:28px 22px 34px;
	text-align:center;
	box-shadow:0 10px 30px rgba(2,6,23,0.6);
	border:1px solid rgba(255,255,255,0.04);

}
.cover {
	width:100%;
	max-height:250px;
	object-fit:cover;
	border-radius:14px;
	margin-bottom:18px;
	transition:transform .3s ease;

}
.cover:hover {
	transform:scale(1.02);
}
.avatar {
	width:110px;
	height:110px;
	border-radius:18px;
	margin:0 auto 14px;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
	box-shadow:0 6px 18px rgba(7,12,25,0.6);
	transition:transform .3s ease;

}
.avatar:hover {
	transform:scale(1.05);
}
.avatar img {
	width:100%;
	height:100%;
	object-fit:cover;
}
.artist-name {
	font-weight:700;
	font-size:24px;
	margin-bottom:6px;
}
.artist-role {
	font-size:13px;
	color:rgba(230,238,248,0.7);
	margin-bottom:16px;
}
.links {
	display:flex;
	flex-direction:column;
	gap:12px;
	margin-top:8px;
}
.link-btn {
	display:flex;
	align-items:center;
	gap:12px;
	padding:14px 16px;
	border-radius:12px;
	background:rgba(255,255,255,0.02);
	border:1px solid rgba(255,255,255,0.03);
	text-decoration:none;
	color:inherit;
	font-weight:600;
	transition:transform .15s,box-shadow .15s,background .3s;
	position:relative;

}
.link-btn:hover {
	box-shadow:0 8px 28px rgba(0,0,0,0.45);
	background:rgba(255,255,255,0.05);

}
.link-btn span.ico {
	width:30px;
	height:30px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border-radius:8px;
	background:rgba(255,255,255,0.03);
	transition:background .3s;
	padding: 5px;

}
.link-btn:hover span.ico {
	background:rgba(255,255,255,0.1);
}
.social-row {
	display:flex;
	gap:10px;
	justify-content:center;
	margin-top:12px;
}
.social-row a {
	width:40px;
	height:40px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border-radius:10px;
	border:1px solid rgba(255,255,255,0.03);
	background:rgba(255,255,255,0.01);
	text-decoration:none;
	transition:transform .3s,background .3s;
}
.social-row a:hover {
	transform:scale(1.1);
	background:rgba(255,255,255,0.05);
}
.small {
	font-size:12px;
	color:rgba(230,238,248,0.65);
	margin-top:14px;
}
.blob {
	position:absolute;
	inset:0;
	pointer-events:none;
	filter:blur(48px);
	opacity:0.12;
	mix-blend-mode:screen;
	transition:transform 10s linear;

}
.blob svg {
	transform-origin:center;
	animation:rotate 20s linear infinite;
}
@keyframes rotate {
	to {
		transform:rotate(360deg);
	}
}
@media (max-width:420px) {
	.avatar {
		width:92px;
		height:92px;
	}
	.link-btn {
		padding:12px;
	}
	.card {
		padding:20px;
	}
}
