:root {
	--bg: #000000;
	--text: #ffffff;
	--muted: #a0a0a0;
	--surface: rgba(255, 255, 255, 0.06);
	--surface-hover: rgba(255, 255, 255, 0.12);
	--border: rgba(255, 255, 255, 0.1);
}

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

html, body {
	height: 100%;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: "Segoe UI";
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 36px;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 24px;
}

.avatar {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
}

.title {
	font-size: 3rem;
	font-weight: 555;
	letter-spacing: 0.077em;
}

.description {
	color: var(--muted);
	font-size: 1.5rem;
}

.links {
	display: flex;
	gap: 18px;
	margin-top: 12px;
}

.link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 104px;
	height: 104px;
	border-radius: 20px;
	background: var(--surface);
	border: 1px solid var(--border);
	transition: background 0.2s ease;
}

.link:hover {
	background: var(--surface-hover);
}

.link img {
	width: 52px;
	height: 52px;
	object-fit: contain;
}
