#vibetheog-chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #6366f1;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 99999;
}

#vibetheog-chat-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 500px;
    background: #1e1e2e;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    z-index: 99998;
    overflow: hidden;
}

.vibetheog-chat-hidden { display: none !important; }

#vibetheog-chat-header {
    background: #6366f1;
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

#vibetheog-chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

#vibetheog-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vibetheog-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.vibetheog-msg-user {
    align-self: flex-end;
    background: #6366f1;
    color: white;
}

.vibetheog-msg-bot {
    align-self: flex-start;
    background: #2d2d3f;
    color: #e0e0e0;
}

#vibetheog-chat-input {
    display: flex;
    padding: 12px;
    gap: 8px;
    border-top: 1px solid #333;
}

#vibetheog-chat-text {
    flex: 1;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 8px;
    background: #2d2d3f;
    color: white;
    font-size: 14px;
}

#vibetheog-chat-send {
    padding: 10px 20px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 480px) {
    #vibetheog-chat-container {
        width: calc(100vw - 20px);
        right: 10px;
        bottom: 80px;
        height: 60vh;
    }
}
