/* Social App Community Styles - haoxuekeji.cn 2025 */

.social-community-layout {
    --social-community-accent: #8b5cf6;
    --social-community-highlight: #6366f1;
}

.social-community-overview {
    backdrop-filter: blur(20px);
    transition: all 0.6s ease;
}

.social-community-overview:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.25);
}

.social-topic-card {
    transition: all 0.5s ease;
}

.social-topic-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.social-circle-item {
    transition: all 0.4s ease;
    cursor: pointer;
}

.social-circle-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.social-post-item {
    transition: all 0.5s ease;
}

.social-post-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
}

.social-action-btn {
    transition: all 0.3s ease;
}

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

@keyframes social-community-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.social-circle-icon:hover {
    animation: social-community-pulse 1s ease-in-out;
}

.social-user-avatar {
    transition: all 0.3s ease;
}

.social-user-avatar:hover {
    transform: scale(1.1) rotate(5deg);
}

.social-post-verified {
    animation: social-badge-glow 3s ease-in-out infinite;
}

@keyframes social-badge-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(59, 130, 246, 0.5); }
    50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.8); }
}