#mascot-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px; /* For landing animation later */
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 9999;
    transition: transform .3s ease-in-out;
}

#mascot-chatbot img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

#mascot-chatbot:hover {
    transform: scale(1.1);
}

/* Chat Window (Hidden until clicked) */
#chat-window {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 320px;
    height: 420px;
    background: #000000;
    border-radius: 16px;
    z-index: 99999;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
