body {
	margin: 0;
	font-family: "Segoe UI", sans-serif;
}

.navbar {
	display: flex;
	justify-content: space-between; /* лого слева, меню по центру, кнопка справа */
	align-items: center;
	padding: 15px 40px;
	background: #1e1e2f; /* тёмный фон */
	color: white;
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo {
	font-size: 20px;
	font-weight: bold;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 25px;
}

.nav-links a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #4cc9f0;
}

.btn {
	background: #4cc9f0;
	border: none;
	padding: 8px 16px;
	border-radius: 8px;
	color: white;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
}

.btn:hover {
	background: #3a86ff;
}

@media (max-width: 768px) {
	.nav-links {
		display: none; /* скрыть меню */
		flex-direction: column;
		background: #1e1e2f;
		position: absolute;
		top: 60px;
		right: 0;
		width: 200px;
		padding: 20px;
	}
}

* {
	-webkit-tap-highlight-color: transparent;
}

a:active, button:active {
	opacity: 0.7; /* лёгкий эффект нажатия */
	transform: scale(0.97); /* имитация нажатия */
}
