#topbar {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 18px;

    border-radius: 28px;

    background: rgba(20, 20, 20, 0.55);
    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);

    box-shadow: 0 20px 80px rgba(0,0,0,0.6),
                inset 0 1px 0 rgba(255,255,255,0.08);

    color: white;

    z-index: 100;

    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Arial;
}

#topbar_left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

#topbar_title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#topbar_subtitle {
    font-size: 12px;
    opacity: 0.6;
    font-weight: 600;
}

#topbar_right {
    display: flex;
    align-items: center;
    gap: 10px;
}

#live_count {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 6px 10px;
    border-radius: 999px;

    background: rgba(0, 255, 120, 0.12);
    border: 1px solid rgba(0, 255, 120, 0.25);

    color: #2dff8f;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

#live_dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2dff8f;
    box-shadow: 0 0 10px #2dff8f;
}

.icon_btn {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);

    cursor: pointer;

    font-size: 16px;

    transition: 0.2s;
}

.icon_btn:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

@media (max-width: 700px) {

    #topbar {
        top: 10px;
        left: 10px;
        right: 10px;

        padding: 10px 12px;

        border-radius: 22px;
    }

    #topbar_title {
        font-size: 14px;
    }

    #topbar_subtitle {
        font-size: 11px;
        opacity: 0.55;
    }

    #live_count {
        display: none;
    }

    #topbar_right {
        gap: 6px;
    }

    .icon_btn {
        width: 32px;
        height: 32px;
        font-size: 15px;
        border-radius: 10px;
    }
}