/* Floating action buttons — MultiTask Ocpus + Toronto Gainz Doge */
.fab-dock {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 3000;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    pointer-events: none;
}

.fab-bubble {
    position: relative;
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-bubble:active {
    transform: scale(0.9);
}

.fab-bubble img {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#chatbot-bubble img {
    object-fit: cover;
    mix-blend-mode: screen;
}

#ocpus-bubble {
    background: rgba(8, 12, 22, 0.92);
}

#ocpus-bubble img {
    object-fit: contain;
    width: 108.1%;
    height: 108.1%;
    max-width: none;
    flex-shrink: 0;
    transform: translate(1px, 5px) scale(0.985);
    transform-origin: center center;
}

@media (max-width: 480px) {
    .fab-dock {
        bottom: max(1rem, env(safe-area-inset-bottom, 0px));
        right: max(0.75rem, env(safe-area-inset-right, 0px));
        z-index: 3000;
    }
}
