/* 自定义样式 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* 图片悬停效果 */
.photo-card {
    transition: transform 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-5px);
}

/* 社交媒体图标悬停效果 */
.social-icon {
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .profile-section {
        text-align: center;
    }
} 