/* Argus AI Chat - Launcher CSS (Aşama 1 - Kritik) */
/* Sadece bubble/launcher button için gerekli stiller */

#ai-chat-wrapper {
    --argus-main: #009FA7;
    --argus-accent: #00E5FF;
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    position: relative;
    z-index: 999999;
}

#ai-chat-wrapper *,
#ai-chat-wrapper *::before,
#ai-chat-wrapper *::after {
    box-sizing: border-box;
}

/* Chat paneli varsayılan olarak gizlidir (Aşama 2 CSS gelene kadar) */
#ai-chat-container {
    display: none;
}

#ai-chat-launcher-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999999;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, visibility 0.3s;
    will-change: transform, opacity;
}

#ai-chat-launcher-container:hover {
    transform: scale(1.05) translateY(-2px);
}

#ai-chat-launcher-container:active {
    transform: scale(0.95);
}

#ai-chat-wrapper.chat-active #ai-chat-launcher-container {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(10px);
    pointer-events: none;
}

#ai-chat-wrapper .cta-button {
    position: relative;
    padding: 2px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 150px;
    height: 52px;
    box-shadow: 0 10px 30px rgba(0, 159, 167, 0.25);
}

#ai-chat-wrapper .cta-border-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, transparent 0deg, var(--argus-main) 90deg, var(--argus-accent) 180deg, var(--argus-main) 270deg, transparent 360deg);
    z-index: 1;
    animation: argusSmoothRotate 8s linear infinite;
}

#ai-chat-wrapper .cta-content {
    position: relative;
    z-index: 2;
    background: var(--argus-main);
    width: 100%;
    height: 100%;
    border-radius: 48px;
    display: flex;
    align-items: center;
    padding: 0 18px 0 6px;
    gap: 10px;
    color: white;
}

#ai-chat-wrapper .cta-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ai-chat-wrapper .cta-text {
    font-weight: 700;
    font-size: 15px;
}

@keyframes argusSmoothRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}