* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Raleway', sans-serif;
}

body {
	background-color: rgba(28, 27, 27, 1);
	color: #fff;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 20px;
}

.header {
	text-align: center;
	padding: 20px 0;
	margin-bottom: 40px;
}

.logo {
	max-width: 300px;
	height: auto;
}

.main-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	flex: 1;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.info-block, .links-block {
	flex: 1;
	min-width: 300px;
	background: rgba(0, 0, 0, 0.4);
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

h1 {
	font-size: 2.2rem;
	margin-bottom: 20px;
	color: #f0f0f0;
}

p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 15px;
	color: #d0d0d0;
}

.links-block h2 {
	font-size: 1.8rem;
	margin-bottom: 25px;
	text-align: center;
	color: #f0f0f0;
}

.social-links {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.social-link {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	text-decoration: none;
	color: #fff;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon {
	width: 24px;
	height: 24px;
	margin-right: 15px;
	background: #fff;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
}

.vk { background: #4a76a8; color: white; }
.dzen { background: #fff; color: #000; }
.boosty { background: #ff6b35; color: white; }
.telegram { background: #0088CC; color: white; }

a[href^="https://dzen.ru"] {
    display: inline-block !important;
}

@media (max-width: 768px) {
	.main-content {
		flex-direction: column;
	}
	
	.info-block, .links-block {
		min-width: 100%;
	}
}

.footer {
	text-align: center;
	padding: 20px;
	margin-top: 40px;
	color: #aaa;
	font-size: 0.9rem;
}