/* Gano Chat - Premium Glassmorphism Interface */
:root {
    --gano-chat-gold:  var(--gano-gold);
    --gano-chat-dark:  var(--gano-dark-bg, #0f1115);
    --gano-chat-glass: rgba(15, 17, 21, 0.85);
}

#gano-chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--gano-chat-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    z-index: 10000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#gano-chat-bubble:hover {
    transform: scale(1.1) rotate(5deg);
}

#gano-chat-bubble svg {
    width: 32px;
    height: 32px;
    fill: #000;
}

#gano-chat-window {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 380px;
    height: 600px;
    background: var(--gano-chat-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    font-family: 'Inter', sans-serif;
}

#gano-chat-window.active {
    display: flex;
    animation: chatFadeUp 0.4s ease-out;
}

@keyframes chatFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.gano-chat-header {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.gano-chat-header .status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
}

.gano-chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-msg {
    max-width: 85%;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-msg.agent {
    align-self: flex-start;
    background: rgba(255,255,255,0.05);
    color: #e2e8f0;
    border-bottom-left-radius: 4px;
}

.chat-msg.user {
    align-self: flex-end;
    background: var(--gano-chat-gold);
    color: #000;
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.gano-chat-footer {
    padding: 20px;
    background: rgba(0,0,0,0.2);
    display: flex;
    gap: 10px;
}

.gano-chat-footer input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 12px 20px;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.gano-chat-footer input:focus {
    border-color: var(--gano-chat-gold);
}

.gano-chat-footer button {
    background: var(--gano-chat-gold);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
