* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.container {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	padding: 60px 40px;
	max-width: 500px;
	width: 100%;
	text-align: center;
	animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.avatar-wrapper {
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
}

.avatar {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	border: 5px solid #667eea;
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.status-dot {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
	background: #10b981;
	border: 4px solid white;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

h1 {
	color: #2d3748;
	font-size: 2.5em;
	margin-bottom: 10px;
	font-weight: 700;
}

.subtitle {
	color: #667eea;
	font-size: 1.1em;
	margin-bottom: 30px;
	font-weight: 500;
}

.description {
	color: #718096;
	font-size: 1em;
	line-height: 1.6;
	margin-bottom: 40px;
}

.buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
}

button,
a.btn-primary,
a.btn-secondary {
	padding: 12px 30px;
	border-radius: 8px;
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
	background: white;
	color: #667eea;
	border: 2px solid #667eea;
}

.btn-secondary:hover {
	background: #f7fafc;
	transform: translateY(-2px);
}

.social {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #e2e8f0;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f0f4ff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #667eea;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background: #667eea;
	color: white;
	transform: translateY(-3px);
}