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

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

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

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

.hjforum-status-indicator {
    animation: hjforum-status-pulse 2s infinite;
}

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

.hjforum-chat-window:hover {
    transform: scale(1.01);
}

.hjforum-chat-message {
    animation: hjforum-message-slide-in 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.hjforum-chat-message:nth-child(1) { animation-delay: 0.1s; }
.hjforum-chat-message:nth-child(2) { animation-delay: 0.3s; }
.hjforum-chat-message:nth-child(3) { animation-delay: 0.5s; }
.hjforum-chat-message:nth-child(4) { animation-delay: 0.7s; }

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

.hjforum-room-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.2); opacity: 0.8; }
}

@keyframes hjforum-message-slide-in {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes hjforum-chat-fade-in {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

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

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