/* AI Eagle Button Styles */
.ai-eagle-button {
    position: fixed !important;
    bottom: 80px !important;
    right: 20px !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #8b5cf6, #6366f1) !important;
    border: 2px solid rgba(139, 92, 246, 0.3) !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    animation: pulse-glow 2s infinite !important;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4), 0 0 0 0 rgba(139, 92, 246, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4), 0 0 0 10px rgba(139, 92, 246, 0);
    }
    100% {
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4), 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

.ai-eagle-button:hover {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6) !important;
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
}

.ai-eagle-button:active {
    transform: scale(0.95) !important;
}

.ai-eagle-button img {
    width: 32px !important;
    height: 32px !important;
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
}

.ai-eagle-button:hover img {
    transform: scale(1.1);
    filter: brightness(1.4) contrast(1.2);
}

/* AI Dropdown Menu */
.ai-dropdown {
    position: fixed;
    bottom: 150px;
    right: 20px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.ai-dropdown.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.ai-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ai-dropdown-item:hover {
    background: rgba(139, 92, 246, 0.1);
    color: white;
    transform: translateX(4px);
}

.ai-dropdown-item i {
    margin-right: 12px;
    width: 16px;
    height: 16px;
    color: #a78bfa;
}

.ai-dropdown-item:hover i {
    color: #c4b5fd;
}

.ai-dropdown-item .badge {
    margin-left: auto;
    font-size: 0.65rem;
    padding: 2px 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .ai-eagle-button {
        bottom: 140px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .ai-eagle-button img {
        width: 28px !important;
        height: 28px !important;
    }
    
    .ai-dropdown {
        right: 15px;
        bottom: 200px;
    }
}