* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #000000;
	font-family: 'Noto Sans', sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	position: relative;
	z-index: 1;
}

.container {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.block {
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 20px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.social-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 60px;
	flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto;
}

.social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	min-width: 60px;
	height: 60px;
	min-height: 60px;
	background: #1a1a1a;
	border: 2px solid #333;
	border-radius: 8px;
	color: #e0e0e0;
	text-decoration: none;
	font-size: 24px;
	transition: all 0.3s ease;
	position: relative;
	flex-shrink: 0;
}

.social-btn:hover {
	background: var(--accent);
	border-color: var(--accent);
}

.copyright {
	bottom: 20px;
	font-size: 14px;
	color: #666;
	font-weight: 400;
}

@media (max-width: 768px) {
	body {
		padding: 60px 10px;
		justify-content: flex-start;
	}

	.social-buttons {
		gap: 15px;
		margin-bottom: 50px;
	}

	.social-btn {
		width: 50px;
		height: 50px;
		border-radius: 6px;
	}
}

@media (max-width: 480px) {
	.social-buttons {
		gap: 12px;
	}

	.social-btn {
		width: 45px;
		height: 45px;
		border-radius: 5px;
	}
}
