/* HaiJiao Forum Member Styles - 15999918887.com.cn 2025 */

.hjforum-member-layout {
    --hjforum-member-accent: #8b5cf6;
    --hjforum-member-highlight: #06b6d4;
}

.hjforum-profile-card {
    backdrop-filter: blur(15px);
    transition: all 0.5s ease;
}

.hjforum-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.3);
}

.hjforum-avatar {
    transition: all 0.4s ease;
}

.hjforum-avatar:hover {
    transform: scale(1.08) rotate(6deg);
}

.hjforum-status-badge {
    animation: hjforum-status-pulse 2.5s infinite;
}

.hjforum-user-stats .hjforum-stat-item {
    transition: all 0.4s ease;
}

.hjforum-user-stats .hjforum-stat-item:hover {
    transform: translateY(-3px) scale(1.08);
}

.hjforum-module-card .hjforum-card-wrapper {
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hjforum-module-card:hover .hjforum-card-wrapper {
    transform: translateY(-12px) rotateX(4deg);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.35);
}

@keyframes hjforum-status-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

@keyframes hjforum-member-fade-in {
    0% { opacity: 0; transform: translateY(35px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hjforum-module-card {
    animation: hjforum-member-fade-in 0.9s ease-out forwards;
}

.hjforum-module-card:nth-child(1) { animation-delay: 0.2s; }
.hjforum-module-card:nth-child(2) { animation-delay: 0.4s; }
.hjforum-module-card:nth-child(3) { animation-delay: 0.6s; }