@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0; 
    }
    to {
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes floatInSpace {
    0% {
        transform: translateX(-10px) translateY(0px) rotateY(0deg) scaleX(-1);
    }
    25% {
        transform: translateX(0px) translateY(-10px) rotateY(10deg) scaleX(-1);
    }
    50% {
        transform: translateX(10px) translateY(0px) rotateY(20deg) scaleX(-1);
    }
    75% {
        transform: translateX(0px) translateY(10px) rotateY(10deg) scaleX(-1);
    }
    100% {
        transform: translateX(-10px) translateY(0px) rotateY(0deg) scaleX(-1);
    }
}


.image-container {
    animation: slideIn 1s ease forwards;
    position: relative;
    text-align: center;
}

.image-container img {
    cursor: pointer;
    bottom: 200px;
    transition: opacity 0.5s ease;
    opacity: 1; 
    animation: floatInSpace 4s ease-in-out infinite;
}

.chat-btn {
    color: white; 
    background-color: transparent; 
    min-width: 160px;
    border-radius: 20px;
    position: absolute;
    right: 25px;
    bottom: 165px;
    opacity: 1; 
    pointer-events: auto;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
}

.cButton {
    position: relative;
    z-index: 10;
    transition: background-color 0.3s ease-in-out;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7), 
                 0 0 10px rgba(0, 204, 255, 0.7), 
                 0 0 15px rgba(0, 204, 255, 0.5);
}


.cButton:hover {
    background-color: rgba(0, 255, 255, 0.7);
    border-color: rgba(0, 204, 255, 0.7); 
    color: #0e0c18;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.5); 
    font-weight: bold;
}



