/* 导航栏和页脚高亮样式 */
.nav-link.active,
.footer-link.active {
	color: var(--primary) !important;
	font-weight: 600;
}

.nav-link.active::after {
	width: 100% !important;
}

.dropdown-link.active {
	color: var(--primary) !important;
	background: rgba(58, 134, 255, 0.15) !important;
	padding-left: 1.5rem !important;
	font-weight: 500;
}

.footer-link.active {
	position: relative;
}

.footer-link.active::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -3px;
	left: 0;
	background: var(--primary);
}

/* Logo 高亮效果（首页与页脚） */
.logo.active,
.footer-logo.active {
	text-shadow: 0 0 15px rgba(58, 134, 255, 0.6);
	transform: scale(1.05);
} 