.ai-character-container {
    position: fixed;
    bottom: 30px;
    left: 40px; 
    width: 200px;
    height: 200px;
    z-index: 10000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.ai-status-indicator {
    position: absolute;
    top: -30px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 1.2px;
    border: 1px solid rgba(0, 255, 127, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 10;
    animation: pulseStatus 2s infinite;
}

.online-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff7f;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #00ff7f;
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulseStatus {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

.ai-click-prompt {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    color: #25D366;
    padding: 0;
    font-size: 10px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(37, 211, 102, 0.5);
    animation: pulsePrompt 1.5s infinite;
    pointer-events: none;
    z-index: 1000;
}

@keyframes pulsePrompt {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
    100% { transform: translateX(-50%) scale(1); }
}

@media (max-width: 768px) {
    .ai-click-prompt {
        display: none !important;
    }
}

.ai-glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

.ai-character-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 255, 127, 0.2));
    transition: transform 0.05s linear;
}

@media (max-width: 768px) {
    .ai-character-container {
        width: 140px;
        height: 140px;
        bottom: 20px;
        left: 20px;
    }
}
