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

body {
	font-family: 'Segoe UI', sans-serif;
	background: #0d1117; 
	color: #e0e0e0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 20px;
}

.portfolio-card {
	width: 340px;
	padding: 32px;
	background: rgba(200, 200, 200, 0.12); 
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	text-align: center;
	transition: transform 0.3s ease;
}

.avatar {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.2);
	object-fit: cover;
	margin: 0 auto 16px;
	background: #333;
}

.name {
	font-size: 24px;
	font-weight: 600;
	color: #f0f0f0;
	margin-bottom: 6px;
}

.country {
	color: #aaa;
	margin-bottom: 5px;
}

.title {
	font-size: 14px;
	color: #aaa;
	margin-bottom: 20px;
}

.bio {
	font-size: 14px;
	color: #cccccc;
	line-height: 1.6;
	margin-bottom: 24px;
}

.socials {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 20px;
}

.socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #ddd;
	font-size: 18px;
	transition: all 0.3s ease;
}

.socials a:hover {
	background: rgba(120, 90, 230, 0.3);
	color: #b0a0ff;
	transform: translateY(-3px);
}

.btn {
	display: inline-block;
	padding: 10px 22px;
	background: rgba(120, 90, 230, 0.2);
	color: #d8ccff;
	border: 1px solid rgba(120, 90, 230, 0.4);
	border-radius: 10px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn:hover {
	background: rgba(120, 90, 230, 0.35);
	box-shadow: 0 0 15px rgba(120, 90, 230, 0.4);
}