/* 头部核心优势按钮动效 */
.hover-animation {
	transition: all 0.3s ease;
	cursor: pointer;
	border-radius: 20px;
	padding: 20px;
}

.hover-animation:hover {
	transform: translateY(-10px) scale(1.05);
	background: rgba(0, 212, 255, 0.1);
	border: 1px solid rgba(0, 212, 255, 0.3);
	box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.emoji-icon {
	transition: all 0.3s ease;
	display: inline-block;
}

.hover-animation:hover .emoji-icon {
	transform: scale(1.2) rotate(5deg);
}

.hover-animation:hover h3 {
	color: #00D4FF;
}

/* 社交图标动画 */
.social-icon {
	transition: all 0.3s ease;
	position: relative;
}

.social-icon:hover {
	transform: translateY(-5px) scale(1.1);
	color: var(--primary-blue);
}

.social-icon::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--primary-blue);
	transition: width 0.3s ease;
}

.social-icon:hover::after {
	width: 100%;
}

/* 加载动画 */
@keyframes loading {
	0% {
		width: 0%;
	}

	50% {
		width: 75%;
	}

	100% {
		width: 100%;
	}
}

/* 团队卡片样式 */
.team-card {
	background: var(--card-bg);
	border: 1px solid rgba(0, 212, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.team-card:hover {
	transform: translateY(-10px);
	border-color: var(--primary-blue);
	box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

/* 时间线样式 */
.timeline-dot {
	position: relative;
	z-index: 10;
	box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
	animation: pulse 2s infinite;
}

/* 移动端时间线调整 */
@media (max-width: 768px) {
	.timeline-dot {
		position: relative;
		margin: 0 auto;
	}
}