/* #monster-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    font-family: monospace;
    font-size: 24px;
    z-index: 1000;
    overflow: hidden;
}

#monster-text-container {
    overflow: hidden;
    white-space: nowrap;
    margin-left: 10px;
}

#monster-text {
    white-space: nowrap;
}

#monster-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    fill: #e3a127;
    transition: transform 0.3s ease;
} */


#monster-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    font-family: monospace;
    font-size: 24px;
    z-index: 1000;
    overflow: hidden;
}

#monster-text-container {
    overflow: hidden;
    white-space: nowrap;
    margin-left: 10px;
}

#monster-text {
    white-space: nowrap;
    color: #ff0000; /* Red text */
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

#monster-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    transition: transform 0.2s ease; /* Slower transition */
    filter: 
        brightness(0.9) 
        saturate(3) 
        hue-rotate(-5deg) /* Enhanced yellow */
        drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}


@media (max-width: 767px) {
    #monster-container {
        display: none !important;
    }
}
