/* --- Arnie --- */
.arnia-3d-style {
    transition: none !important; 
    animation: none !important;
    filter: drop-shadow(-8px 12px 5px rgba(0,0,0,0.8));
    image-rendering: -webkit-optimize-contrast;
    pointer-events: none;
}

/* --- Movimento Api --- */
@keyframes bee-fly-around {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(14px, -10px) rotate(15deg); }
    66% { transform: translate(-10px, -14px) rotate(-15deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.bee-swarm-unit {
    width: 10px !important; 
    height: 10px !important;
    pointer-events: none;
    display: inline-block;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
    animation: bee-fly-around 0.6s linear infinite;
}

.bee-swarm-unit img {
    width: 15px !important;
    height: 15px !important;
    display: block !important;
    object-fit: contain;
}

/* Stato mute del bottone */
.is-muted { opacity: 0.5; filter: grayscale(1); }