.card-wrapper {
	position: relative;
	max-width: 500px;
	width: 100%;
}

.card {
	background: rgba(30, 41, 37, 0.95);
	border: 2px solid rgba(52, 211, 153, 0.3);
	border-radius: 20px;
	padding: 40px;
	padding-bottom: 40px;
	width: 100%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	transition: all 0.5s ease;
	opacity: 0;
	animation: cardFadeIn 0.8s ease forwards;
	position: relative;
	margin-bottom: 20px;
}

.profile-image {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 20px;
	display: block;
	object-fit: cover;
	border: 4px solid #34d399;
	animation: profilePulse 3s ease-in-out infinite;
}

.profile-name {
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 10px;
}

.profile-bio {
	text-align: center;
	font-size: 14px;
	color: #cbd5e0;
	margin-bottom: 30px;
	line-height: 1.5;
}

.button-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.social-button {
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
	border: none;
	border-radius: 12px;
	padding: 18px 20px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	text-decoration: none;
	color: white;
	position: relative;
	overflow: hidden;
}

.social-button {
    justify-content: center;
}

.button-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	flex: 1;
	padding: 0 20px 0 40px;
}

.social-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.social-button:hover::before {
	left: 100%;
}

.social-button:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 15px 35px rgba(52, 211, 153, 0.5);
}

.button-icon {
	position: absolute;
	left: 20px;
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
	border-radius: 12px; 
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03); 
}

.button-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px; 
}

.social-button:hover .button-icon {
	transform: scale(1.1);
}

.button-text {
	text-align: left 10px;
	font-size: 20px;
	font-weight: bold;
}

.button-note {
	text-align: center;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
}

