/* Базовый стиль кнопки переключения языка */
.lang-switcher {
	padding: 3px 5px;
	color: rgb(140, 140, 140);
	font-weight: bold;
	border-bottom: none;
	cursor: pointer;
	text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
	transition: all .3s ease-in-out; /* Добавляем плавность переходов */
}

/* Ховер эффект */
.lang-switcher:hover {
	color: rgb(175, 175, 175);
	background: linear-gradient(
		to bottom,
		rgba(35, 35, 35, .6) 0%,
		rgba(30, 30, 30, .6) 50%,
		rgba(25, 25, 25, .6) 51%,
		rgba(20, 20, 20, .6) 100%
	);
	border-radius: 4px;
}

/* Активное состояние */
.lang-switcher.active {
	z-index: 1;
	color: rgb(200, 200, 200);
	background: linear-gradient(
		to bottom,
		rgb(190, 45, 50) 0%,
		rgb(150, 35, 40) 50%,
		rgb(140, 30, 35) 51%,
		rgb(100, 20, 25) 100%
	);
	border-radius: 4px;
	box-shadow: 0 0px 10px 3px rgb(100, 20, 25);
	cursor: default;
}
