/* ===============================
   STREAMER FLOAT BUTTON FIX
=============================== */

#streamer-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
}

/* ===============================
   STREAMER TOOLTIP HOVER EFFECT
=============================== */

.streamer-tooltip {
    background: #111;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
    white-space: nowrap;

    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Show only on hover */
#streamer-wrapper:hover .streamer-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Button */
#streamer-mode-btn {
    width: 45px;
    height: 45px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Logo inside button */
.streamer-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}