.navigation {
	background-color: rgb(5, 3, 5);
	border-bottom: 1px solid #1a1a1a;
	display: flex;
	height: 80px;
	left: 0;
	right: 0;
	padding: 10px 20px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 50;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.navigation-container {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
	justify-content: space-between;
}

.navigation-menu {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 1;
	justify-content: center;
}

@media screen and (max-width: 768px) {
	.navigation {
		height: auto;
		min-height: 80px;
		padding: 12px 0;
	}

	.navigation-container {
		padding: 0;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 12px;
		align-items: center;
		min-height: 60px;
	}

	.navigation-menu {
		width: 100%;
		justify-content: flex-start;
		padding: 0 15px;
		gap: 16px;
		flex: 1 1 100%;
		order: 2;
		margin-top: 0;
	}

	.navigation .nav-link {
		font-size: 12px;
		padding: 4px 0;
		white-space: nowrap;
	}

	.navigation-logo {
		order: 1;
		flex: 0 0 auto;
		padding: 0 15px;
	}

	.navigation .btn-primary {
		order: 3;
		flex: 0 0 auto;
	}
}

@media screen and (max-width: 480px) {
	.navigation {
		padding: 10px 0;
	}

	.navigation-container {
		min-height: 55px;
		gap: 10px;
	}

	.navigation-menu {
		gap: 12px;
		padding: 0 12px;
	}

	.navigation .nav-link {
		font-size: 11px;
	}

	.navigation-logo {
		padding: 0 12px;
	}
}

.navigation-logo {
	display: flex;
}

.navigation-logo-img {
	height: 60px;
	margin: auto;
	width: auto;
	margin-left: 15px;
	max-width: 100%;
	object-fit: contain;
}

@media screen and (max-width: 680px) {
	.navigation-logo-img {
		height: 50px;
		margin-left: 0;
	}
}

.navigation .nav-link {
	font-family: 'JetBrains Mono', monospace;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.3s ease;
}

.navigation .nav-link:hover {
	color: #1dff1a;
}

.navigation .btn-primary {
	transition: all 0.3s;
	background-color: transparent;
	color: #1dff1a;
	align-items: center;
	border-radius: 0;
	border: 1px solid rgba(64, 64, 64, 0.4);
	display: flex;
	font-family: 'JetBrains Mono', monospace;
	font-size: 14px;
	height: auto;
	padding: 12px 24px;
	text-decoration: none;
	white-space: nowrap;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.navigation .btn-primary:hover {
	background-color: #1dff1a;
	color: #0a0a0a;
	border-color: #1dff1a;
}

@media screen and (max-width: 920px) {
	.navigation .btn-primary {
		display: none;
	}
}