* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #f8fafc;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.4), rgba(30, 41, 59, 0.4)), 
				url('/background.jpg') no-repeat center center fixed;
	background-size: cover;
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 420px;
	text-align: center;
	background: rgba(15, 23, 42, 0.7);
	padding: 40px 30px;
	border-radius: 24px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-logo-wrapper {
	width: 96px;
	height: 96px;
	margin: 0 auto 20px;
	position: relative;
}

.profile-logo {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	display: block;
}

h1 {
	font-size: 24px;
	margin-bottom: 8px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

p {
	font-size: 15px;
	color: #cbd5e1;
	margin-bottom: 32px;
}

.links-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.link-card {
	display: flex;
	align-items: center;
	padding: 16px 24px;
	border-radius: 14px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.25s ease;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.link-card .btn-icon {
	width: 24px;
	height: 24px;
	margin-right: 16px;
	object-fit: contain;
	flex-shrink: 0;
}

.link-card:hover {
	transform: translateY(-3px);
}

.vk {
	background-color: #0077ff;
	color: #ffffff;
}
.vk:hover {
	box-shadow: 0 12px 20px rgba(0, 119, 255, 0.35);
	background-color: #1a85ff;
}

.telegram {
	background-color: #24a1de;
	color: #ffffff;
}
.telegram:hover {
	box-shadow: 0 12px 20px rgba(36, 161, 222, 0.35);
	background-color: #33a9e2;
}

.bonus {
	background: linear-gradient(135deg, #f59e0b, #ef4444);
	color: #ffffff;
}
.bonus:hover {
	box-shadow: 0 12px 20px rgba(239, 68, 68, 0.35);
	opacity: 0.95;
}