.streamers {
    position: fixed;
    z-index: 99999;
    bottom: 20px;
    right: 0;
    display: none;
    flex-direction: row-reverse;
    transition: right .5s ease-in-out;
}

.streamers.is-loaded {
    display: block;
}

.streamers-container {
    display: flex;
    align-items: stretch;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,.45));
    overflow: hidden;
    border-radius: 0 18px 18px 0;
}

.streamers-online {
    display: flex;
    gap: 10px;
    padding: 12px;

    background: transparent;

    border: 1px solid rgba(215,168,77,.18);
    border-right: 0;

    border-radius: 0;
}

.streamers-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 8px;
    min-width: 42px;

    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
    font-weight: 700;

    background:
        transparent;

    border: 1px solid rgba(145,70,255,.45);
    

    box-shadow:
        0 0 24px rgba(145,70,255,.28),
        inset 0 1px 0 rgba(255,255,255,.16);

    position: relative;
}

.streamers-title::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-bottom: 8px;

    border-radius: 50%;
    background: #ff3b3b;

    box-shadow: 0 0 12px rgba(255,59,59,.85);

    animation: streamerLivePulse 1.6s infinite;
}

@keyframes streamerLivePulse {
    0% {
        transform: scale(.8);
        opacity: 1;
    }

    70% {
        transform: scale(1.45);
        opacity: .35;
    }

    100% {
        transform: scale(.8);
        opacity: 1;
    }
}

.streamers-title:hover {
    color: #fff;
    background:
        linear-gradient(135deg, #a970ff, #9146ff);
}

.streamers-streamer {
    position: relative;
    display: block;

    margin-right: 0;

    border: 1px solid rgba(215,168,77,.30);
    border-radius: 16px;

    overflow: hidden;
    background: rgba(255,255,255,.035);

    transition: .22s ease;
}

.streamers-streamer:hover {
    transform: translateY(-3px);
    border-color: rgba(255,211,122,.55);
    box-shadow:
        0 0 24px rgba(215,168,77,.18),
        0 12px 30px rgba(0,0,0,.38);
}

.streamers-streamer-name {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.45));

    padding: 5px 6px;
    text-align: center;
    z-index: 2;

    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-shadow: 0 1px 2px rgba(0,0,0,.8);
}

.streamers-streamer-thumb {
    position: relative;
    width: 100px;
    height: 80px;
    background: #090909;
}

.streamers-streamer-thumb > img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    display: block;
    opacity: .92;
    transition: .22s ease;
}

.streamers-streamer:hover .streamers-streamer-thumb > img {
    opacity: 1;
    transform: scale(1.04);
}

.streamers-streamer-thumb::after {
    content: "LIVE";
    position: absolute;
    right: 6px;
    bottom: 6px;

    padding: 3px 6px;
    border-radius: 999px;

    color: #fff;
    background: #e4393f;

    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .06em;

    box-shadow: 0 0 12px rgba(228,57,63,.45);
}

.streamers-streamer-thumb-user {
    position: absolute;
    bottom: 5px;
    left: 5px;
    z-index: 2;
}

.streamers-streamer-thumb-user img {
    width: 34px;
    height: 34px;

    border-radius: 50%;
    object-fit: cover;

    border: 2px solid #9146ff;
    box-shadow: 0 0 14px rgba(145,70,255,.55);
}

.streamers-streamer:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .streamers {
        bottom: 12px;
    }

    .streamers-online {
        max-width: calc(100vw - 52px);
        overflow-x: auto;
    }
}