* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Unbounded', sans-serif;
	overflow: hidden;
}

.bg {
	position: fixed;
	inset: 0;
	background-image: url('background.png');
	background-size: cover;
	background-position: center;
	filter: blur(10px) brightness(0.65) saturate(1.3);
	transform: scale(1.08);
	z-index: 0;
}

.card {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 48px 40px 44px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(24px) saturate(1.4);
	-webkit-backdrop-filter: blur(24px) saturate(1.4);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 28px;
	width: 360px;
	box-shadow: 0 8px 64px rgba(0, 0, 0, 0.35);
}

.name {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.03em;
}

.bio {
	font-size: 11px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.04em;
	text-align: center;
	margin-top: -6px;
	margin-bottom: 6px;
}

.divider {
	width: 40px;
	height: 1px;
	background: rgba(255, 255, 255, 0.2);
	margin: 2px 0 8px;
}

.btn {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 13px 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 14px;
	color: #fff;
	text-decoration: none;
	font-family: 'Unbounded', sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition:
		background 0.2s,
		border-color 0.2s,
		transform 0.15s;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0);
	transition: background 0.2s;
}

.btn:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}

.btn:active {
	transform: translateY(0px) scale(0.99);
}

.btn-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 18px;
}

.btn-label {
	flex: 1;
}

.btn-arrow {
	font-size: 14px;
	opacity: 0.4;
	transition:
		opacity 0.2s,
		transform 0.2s;
}

.btn:hover .btn-arrow {
	opacity: 0.8;
	transform: translateX(3px);
}

/* Brand colors */
.ig .btn-icon {
	background: linear-gradient(
		135deg,
		#f09433,
		#e6683c,
		#dc2743,
		#cc2366,
		#bc1888
	);
}
.tg .btn-icon {
	background: #229ed9;
}
.dc .btn-icon {
	background: #5865f2;
}
.bs .btn-icon {
	background: #18181b;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

svg.icon {
	width: 18px;
	height: 18px;
	fill: #fff;
}
